From e1a4b6fad3a5d499d49361ed0b83dde040daaf02 Mon Sep 17 00:00:00 2001
From: Steve Hull
Date: Tue, 3 Mar 2015 21:27:29 -0800
Subject: [PATCH] Inside of range slider should be rounded if outside is
rounded
---
scss/foundation/components/_range-slider.scss | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/scss/foundation/components/_range-slider.scss b/scss/foundation/components/_range-slider.scss
index 6e201f2d4..45f9c7b5b 100644
--- a/scss/foundation/components/_range-slider.scss
+++ b/scss/foundation/components/_range-slider.scss
@@ -140,6 +140,9 @@ $range-slider-disabled-cursor: $cursor-disabled-value !default;
position: absolute;
}
.range-slider-active-segment {
+ border-bottom-left-radius: inherit;
+ border-bottom-right-radius: inherit;
+ border-top-left-radius: initial;
bottom: 0;
height: auto;
width: $range-slider-bar-height - rem-calc((strip-unit($range-slider-bar-border-width) * 2));
@@ -160,6 +163,8 @@ $range-slider-disabled-cursor: $cursor-disabled-value !default;
}
.range-slider-active-segment {
background: $range-slider-active-segment-bg-color;
+ border-bottom-left-radius: inherit;
+ border-top-left-radius: inherit;
display: inline-block;
height: $range-slider-bar-height - rem-calc((strip-unit($range-slider-bar-border-width) * 2));
position: absolute;
--
2.47.2