@rogieking/figui3 8.9.16 → 8.9.18
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/.cursor/skills/fig-editor/SKILL.md +9 -5
- package/.cursor/skills/figui3/SKILL.md +1 -1
- package/README.md +15 -5
- package/components.css +17 -2
- package/dist/components.css +1 -1
- package/dist/fig-editor.css +1 -1
- package/dist/fig-editor.js +3 -3
- package/dist/fig.css +1 -1
- package/dist/fig.js +7 -7
- package/fig-editor.css +10 -5
- package/fig-editor.js +363 -153
- package/fig.js +127 -28
- package/package.json +1 -1
package/fig-editor.css
CHANGED
|
@@ -153,13 +153,15 @@ fig-fill-picker {
|
|
|
153
153
|
width: 240px;
|
|
154
154
|
padding: 0;
|
|
155
155
|
|
|
156
|
+
& > fig-content {
|
|
157
|
+
padding-bottom: var(--spacer-2-5);
|
|
158
|
+
padding-top: var(--spacer-2);
|
|
159
|
+
}
|
|
160
|
+
|
|
156
161
|
fig-tab {
|
|
157
162
|
font-size: 0.6875rem;
|
|
158
163
|
padding: var(--spacer-1) var(--spacer-1);
|
|
159
164
|
}
|
|
160
|
-
& > fig-content {
|
|
161
|
-
padding-bottom: var(--spacer-2-5);
|
|
162
|
-
}
|
|
163
165
|
|
|
164
166
|
.fig-fill-picker-close {
|
|
165
167
|
margin-left: auto;
|
|
@@ -518,11 +520,14 @@ fig-fill-picker {
|
|
|
518
520
|
}
|
|
519
521
|
|
|
520
522
|
&.has-media {
|
|
521
|
-
fig-
|
|
523
|
+
/* Replace/upload only — not fig-media-controls play. */
|
|
524
|
+
fig-preview fig-button,
|
|
525
|
+
fig-input-file fig-button {
|
|
522
526
|
visibility: hidden;
|
|
523
527
|
}
|
|
524
528
|
&:hover {
|
|
525
|
-
fig-button
|
|
529
|
+
fig-preview fig-button,
|
|
530
|
+
fig-input-file fig-button {
|
|
526
531
|
visibility: visible;
|
|
527
532
|
}
|
|
528
533
|
}
|