@rogieking/figui3 6.20.0 → 6.20.1
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/components.css +7 -10
- package/dist/components.css +1 -1
- package/dist/fig-editor.css +1 -1
- package/dist/fig-lab.css +1 -1
- package/dist/fig.css +1 -1
- package/fig-lab.css +91 -50
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -2791,6 +2791,12 @@ fig-slider {
|
|
|
2791
2791
|
min-width: 0;
|
|
2792
2792
|
height: var(--slider-field-height);
|
|
2793
2793
|
transition: var(--slider-transition);
|
|
2794
|
+
outline: none;
|
|
2795
|
+
|
|
2796
|
+
&:has(input[type="range"]:focus-visible) {
|
|
2797
|
+
outline: var(--figma-focus-outline);
|
|
2798
|
+
outline-offset: var(--figma-focus-outline-offset);
|
|
2799
|
+
}
|
|
2794
2800
|
|
|
2795
2801
|
& .slider {
|
|
2796
2802
|
flex: 1 1 0;
|
|
@@ -2896,16 +2902,7 @@ fig-slider {
|
|
|
2896
2902
|
}
|
|
2897
2903
|
|
|
2898
2904
|
&:focus-visible {
|
|
2899
|
-
|
|
2900
|
-
--figma-focus-outline-offset: 1px;
|
|
2901
|
-
outline: var(--figma-focus-outline);
|
|
2902
|
-
outline-offset: var(--figma-focus-outline-offset);
|
|
2903
|
-
}
|
|
2904
|
-
&::-moz-range-thumb {
|
|
2905
|
-
--figma-focus-outline-offset: 1px;
|
|
2906
|
-
outline: var(--figma-focus-outline);
|
|
2907
|
-
outline-offset: var(--figma-focus-outline-offset);
|
|
2908
|
-
}
|
|
2905
|
+
outline: none;
|
|
2909
2906
|
}
|
|
2910
2907
|
|
|
2911
2908
|
&:disabled {
|