@rogieking/figui3 6.39.0 → 6.40.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 +6 -2
- 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 +21 -1
- package/package.json +1 -1
package/fig-lab.css
CHANGED
|
@@ -1346,11 +1346,31 @@ propskit-slider {
|
|
|
1346
1346
|
propskit-number,
|
|
1347
1347
|
propskit-slider
|
|
1348
1348
|
) fig-field:not([direction="vertical"]) > label {
|
|
1349
|
+
position: absolute;
|
|
1350
|
+
inset: 0;
|
|
1351
|
+
z-index: 1;
|
|
1349
1352
|
display: block;
|
|
1350
|
-
|
|
1353
|
+
align-content: center;
|
|
1354
|
+
box-sizing: border-box;
|
|
1355
|
+
width: 75%;
|
|
1356
|
+
max-width: 75%;
|
|
1357
|
+
padding: 0 0 0 var(--spacer-2);
|
|
1351
1358
|
overflow: hidden;
|
|
1352
1359
|
text-overflow: ellipsis;
|
|
1353
1360
|
white-space: nowrap;
|
|
1361
|
+
pointer-events: none;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
:is(
|
|
1365
|
+
propskit-switch,
|
|
1366
|
+
propskit-color,
|
|
1367
|
+
propskit-gradient,
|
|
1368
|
+
propskit-select,
|
|
1369
|
+
propskit-text,
|
|
1370
|
+
propskit-number,
|
|
1371
|
+
propskit-slider
|
|
1372
|
+
)[size="large"] fig-field:not([direction="vertical"]) > label {
|
|
1373
|
+
padding-left: var(--spacer-2-5);
|
|
1354
1374
|
}
|
|
1355
1375
|
|
|
1356
1376
|
/* Canvas Control */
|
package/package.json
CHANGED