@rogieking/figui3 1.7.1 → 1.7.2
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 +8 -0
- package/example.html +3 -0
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -2262,6 +2262,14 @@ fig-input-text {
|
|
|
2262
2262
|
box-shadow: inset 0 0 0 1px var(--figma-color-border-selected);
|
|
2263
2263
|
outline: 0;
|
|
2264
2264
|
}
|
|
2265
|
+
/* Disabled */
|
|
2266
|
+
&[disabled]:not([disabled="false"]) {
|
|
2267
|
+
background-color: var(--figma-color-bg);
|
|
2268
|
+
pointer-events: none;
|
|
2269
|
+
cursor: not-allowed;
|
|
2270
|
+
color: var(--figma-color-text-disabled);
|
|
2271
|
+
box-shadow: inset 0 0 0 1px var(--figma-color-border-disabled);
|
|
2272
|
+
}
|
|
2265
2273
|
}
|
|
2266
2274
|
|
|
2267
2275
|
fig-input-color {
|
package/example.html
CHANGED