@rogieking/figui3 1.7.5 → 1.7.6
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 +5 -3
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -1842,7 +1842,7 @@ fig-slider {
|
|
|
1842
1842
|
--handle-transition: none;
|
|
1843
1843
|
--slider-transition: none;
|
|
1844
1844
|
--slider-handle-shadow: inset 0 0 0 calc(6px + 0.5rem * var(--unchanged))
|
|
1845
|
-
var(--
|
|
1845
|
+
var(--slider-handle-color),
|
|
1846
1846
|
0 0 0 0.75px rgba(0, 0, 0, 0.075), inset 0 0 0 5px rgba(0, 0, 0, 0.1),
|
|
1847
1847
|
var(--figma-elevation-200);
|
|
1848
1848
|
|
|
@@ -2391,6 +2391,7 @@ fig-segmented-control {
|
|
|
2391
2391
|
|
|
2392
2392
|
fig-input-joystick {
|
|
2393
2393
|
--size: 1.5rem;
|
|
2394
|
+
--joystick-handle-color: #fff;
|
|
2394
2395
|
display: inline-flex;
|
|
2395
2396
|
gap: var(--spacer-2);
|
|
2396
2397
|
user-select: none;
|
|
@@ -2480,7 +2481,7 @@ fig-input-joystick {
|
|
|
2480
2481
|
z-index: 1;
|
|
2481
2482
|
width: 0.5rem;
|
|
2482
2483
|
height: 0.5rem;
|
|
2483
|
-
background: var(--
|
|
2484
|
+
background: var(--joystick-handle-color);
|
|
2484
2485
|
box-shadow: var(--handle-shadow);
|
|
2485
2486
|
border-radius: 50%;
|
|
2486
2487
|
transform: translate(-50%, -50%);
|
|
@@ -2489,6 +2490,7 @@ fig-input-joystick {
|
|
|
2489
2490
|
|
|
2490
2491
|
fig-input-angle {
|
|
2491
2492
|
--size: 1.5rem;
|
|
2493
|
+
--handle-color: #fff;
|
|
2492
2494
|
display: inline-flex;
|
|
2493
2495
|
gap: var(--spacer-2);
|
|
2494
2496
|
user-select: none;
|
|
@@ -2520,7 +2522,7 @@ fig-input-angle {
|
|
|
2520
2522
|
display: block;
|
|
2521
2523
|
width: 0.5rem;
|
|
2522
2524
|
height: 0.5rem;
|
|
2523
|
-
background: var(--
|
|
2525
|
+
background: var(--handle-color);
|
|
2524
2526
|
box-shadow: var(--handle-shadow);
|
|
2525
2527
|
border-radius: 50%;
|
|
2526
2528
|
}
|