24 lines
314 B
SCSS
24 lines
314 B
SCSS
|
|
// Sider color variations
|
|
@mixin slider-color-variant($color) {
|
|
.noUi-base {
|
|
.noUi-connect {
|
|
background: $color;
|
|
}
|
|
|
|
.noUi-origin {
|
|
background: $color;
|
|
|
|
.noUi-handle {
|
|
&:after {
|
|
background: $color;
|
|
}
|
|
|
|
.noUi-tooltip {
|
|
background: $color;
|
|
color: $white;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |