@rogieking/figui3 8.9.6 → 8.9.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 +14 -1
- package/dist/components.css +1 -1
- package/dist/fig.css +1 -1
- package/dist/fig.js +3 -3
- package/fig.js +42 -4
- package/package.json +1 -1
package/components.css
CHANGED
|
@@ -3257,7 +3257,7 @@ dialog[is="fig-popup"] {
|
|
|
3257
3257
|
|
|
3258
3258
|
}
|
|
3259
3259
|
|
|
3260
|
-
/*
|
|
3260
|
+
/* Overlay portal */
|
|
3261
3261
|
[data-figui-overlay-root] {
|
|
3262
3262
|
position: fixed;
|
|
3263
3263
|
inset: 0;
|
|
@@ -3270,6 +3270,10 @@ dialog[is="fig-popup"] {
|
|
|
3270
3270
|
border: 0;
|
|
3271
3271
|
}
|
|
3272
3272
|
|
|
3273
|
+
[data-figui-overlay-root] > dialog.fig-menu-popup {
|
|
3274
|
+
pointer-events: auto;
|
|
3275
|
+
}
|
|
3276
|
+
|
|
3273
3277
|
fig-tooltip {
|
|
3274
3278
|
display: contents;
|
|
3275
3279
|
}
|
|
@@ -5563,6 +5567,15 @@ fig-menu-item {
|
|
|
5563
5567
|
}
|
|
5564
5568
|
}
|
|
5565
5569
|
|
|
5570
|
+
&[subtle]:not([subtle="false"]) {
|
|
5571
|
+
&:hover,
|
|
5572
|
+
&:focus-visible {
|
|
5573
|
+
&::before {
|
|
5574
|
+
background-color: var(--figma-color-bg-secondary);
|
|
5575
|
+
}
|
|
5576
|
+
}
|
|
5577
|
+
}
|
|
5578
|
+
|
|
5566
5579
|
&[disabled]:not([disabled="false"]),
|
|
5567
5580
|
&[aria-disabled="true"] {
|
|
5568
5581
|
opacity: 0.4;
|