@rogieking/figui3 1.8.6 → 1.8.8
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 -1
- package/example.html +1 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -1912,6 +1912,7 @@ fig-slider {
|
|
|
1912
1912
|
fig-input-text {
|
|
1913
1913
|
border-top-left-radius: 0;
|
|
1914
1914
|
border-bottom-left-radius: 0;
|
|
1915
|
+
border-left: 1px solid var(--figma-color-bg);
|
|
1915
1916
|
}
|
|
1916
1917
|
|
|
1917
1918
|
&:hover,
|
|
@@ -2296,6 +2297,9 @@ fig-input-text {
|
|
|
2296
2297
|
box-shadow: inset 0 0 0 1px var(--figma-color-border-selected);
|
|
2297
2298
|
outline: 0;
|
|
2298
2299
|
}
|
|
2300
|
+
&:hover {
|
|
2301
|
+
box-shadow: inset 0 0 0 1px var(--figma-color-border);
|
|
2302
|
+
}
|
|
2299
2303
|
/* Disabled */
|
|
2300
2304
|
&[disabled]:not([disabled="false"]) {
|
|
2301
2305
|
background-color: var(--figma-color-bg);
|
|
@@ -2380,7 +2384,7 @@ fig-spinner {
|
|
|
2380
2384
|
width: 1rem;
|
|
2381
2385
|
height: 1rem;
|
|
2382
2386
|
display: inline-flex;
|
|
2383
|
-
background-color: var(--figma-color-icon-
|
|
2387
|
+
background-color: var(--figma-color-icon-tertiary);
|
|
2384
2388
|
clip-path: path(
|
|
2385
2389
|
"M15.9995 7.86066C16.0271 9.44267 15.585 10.9973 14.729 12.3281C13.8731 13.6588 12.6417 14.7058 11.1907 15.3368C9.73968 15.9677 8.13415 16.1542 6.57716 15.8726C5.02016 15.591 3.58161 14.8541 2.44344 13.755C1.30526 12.6559 0.518574 11.2439 0.182856 9.69769C-0.152862 8.15147 -0.0225313 6.54042 0.557366 5.06826C1.13726 3.59611 2.14068 2.32898 3.44073 1.4271C4.74079 0.525221 6.27908 0.0291073 7.86109 0.00149397L7.87922 1.04037C6.50268 1.06439 5.16418 1.49607 4.03298 2.28081C2.90177 3.06556 2.02868 4.16812 1.5241 5.44907C1.01952 6.73002 0.906114 8.13183 1.19823 9.47724C1.49034 10.8226 2.17486 12.0512 3.16521 13.0076C4.15556 13.9639 5.40727 14.6052 6.76204 14.8502C8.11682 15.0951 9.51382 14.9329 10.7764 14.3839C12.0389 13.8349 13.1104 12.9239 13.8552 11.766C14.5999 10.6081 14.9846 9.25533 14.9606 7.87879L15.9995 7.86066Z"
|
|
2386
2390
|
);
|
package/example.html
CHANGED