blixify-ui-web 0.4.231 → 0.4.232
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/tail.css +4 -4
- package/package.json +1 -1
package/lib/tail.css
CHANGED
|
@@ -2528,7 +2528,7 @@ body[data-color-mode*="light"] {
|
|
|
2528
2528
|
.rangeContainer .rangeInput::-webkit-slider-thumb {
|
|
2529
2529
|
-webkit-appearance: none;
|
|
2530
2530
|
appearance: none;
|
|
2531
|
-
background-color:
|
|
2531
|
+
background-color: theme("colors.primary.500");
|
|
2532
2532
|
height: var(--slider-thumb-size);
|
|
2533
2533
|
width: var(--slider-thumb-size);
|
|
2534
2534
|
border-radius: 50%;
|
|
@@ -2539,7 +2539,7 @@ body[data-color-mode*="light"] {
|
|
|
2539
2539
|
}
|
|
2540
2540
|
|
|
2541
2541
|
.rangeContainer .rangeInput::-moz-range-thumb {
|
|
2542
|
-
background-color:
|
|
2542
|
+
background-color: theme("colors.primary.500");
|
|
2543
2543
|
height: var(--slider-thumb-size);
|
|
2544
2544
|
width: var(--slider-thumb-size);
|
|
2545
2545
|
border-radius: 50%;
|
|
@@ -2553,9 +2553,9 @@ body[data-color-mode*="light"] {
|
|
|
2553
2553
|
}
|
|
2554
2554
|
|
|
2555
2555
|
.rangeContainer .rangeInput:focus::-webkit-slider-thumb {
|
|
2556
|
-
box-shadow: 0 0 0 3px
|
|
2556
|
+
box-shadow: 0 0 0 3px theme("colors.primary.200");
|
|
2557
2557
|
}
|
|
2558
2558
|
|
|
2559
2559
|
.rangeContainer .rangeInput:focus::-moz-range-thumb {
|
|
2560
|
-
box-shadow: 0 0 0 3px
|
|
2560
|
+
box-shadow: 0 0 0 3px theme("colors.primary.200");
|
|
2561
2561
|
}
|