@measured/puck 0.19.4-canary.fde74e8a → 0.20.0-canary.274fe3d9

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.
@@ -0,0 +1,1895 @@
1
+ /* styles/color.css */
2
+ :root {
3
+ --puck-color-rose-01: #4a001c;
4
+ --puck-color-rose-02: #670833;
5
+ --puck-color-rose-03: #87114c;
6
+ --puck-color-rose-04: #a81a66;
7
+ --puck-color-rose-05: #bc5089;
8
+ --puck-color-rose-06: #cc7ca5;
9
+ --puck-color-rose-07: #d89aba;
10
+ --puck-color-rose-08: #e3b8cf;
11
+ --puck-color-rose-09: #efd6e3;
12
+ --puck-color-rose-10: #f6eaf1;
13
+ --puck-color-rose-11: #faf4f8;
14
+ --puck-color-rose-12: #fef8fc;
15
+ --puck-color-azure-01: #00175d;
16
+ --puck-color-azure-02: #002c77;
17
+ --puck-color-azure-03: #014292;
18
+ --puck-color-azure-04: #0158ad;
19
+ --puck-color-azure-05: #3479be;
20
+ --puck-color-azure-06: #6499cf;
21
+ --puck-color-azure-07: #88b0da;
22
+ --puck-color-azure-08: #abc7e5;
23
+ --puck-color-azure-09: #cfdff0;
24
+ --puck-color-azure-10: #e7eef7;
25
+ --puck-color-azure-11: #f3f6fb;
26
+ --puck-color-azure-12: #f7faff;
27
+ --puck-color-green-01: #002000;
28
+ --puck-color-green-02: #043604;
29
+ --puck-color-green-03: #084e08;
30
+ --puck-color-green-04: #0c680c;
31
+ --puck-color-green-05: #1d882f;
32
+ --puck-color-green-06: #2faa53;
33
+ --puck-color-green-07: #56c16f;
34
+ --puck-color-green-08: #7dd78b;
35
+ --puck-color-green-09: #b8e8bf;
36
+ --puck-color-green-10: #ddf3e0;
37
+ --puck-color-green-11: #eff8f0;
38
+ --puck-color-green-12: #f3fcf4;
39
+ --puck-color-yellow-01: #211000;
40
+ --puck-color-yellow-02: #362700;
41
+ --puck-color-yellow-03: #4c4000;
42
+ --puck-color-yellow-04: #645a00;
43
+ --puck-color-yellow-05: #877614;
44
+ --puck-color-yellow-06: #ab9429;
45
+ --puck-color-yellow-07: #bfac4e;
46
+ --puck-color-yellow-08: #d4c474;
47
+ --puck-color-yellow-09: #e6deb1;
48
+ --puck-color-yellow-10: #f3efd9;
49
+ --puck-color-yellow-11: #f9f7ed;
50
+ --puck-color-yellow-12: #fcfaf0;
51
+ --puck-color-red-01: #4c0000;
52
+ --puck-color-red-02: #6a0a10;
53
+ --puck-color-red-03: #8a1422;
54
+ --puck-color-red-04: #ac1f35;
55
+ --puck-color-red-05: #bf5366;
56
+ --puck-color-red-06: #ce7e8e;
57
+ --puck-color-red-07: #d99ca8;
58
+ --puck-color-red-08: #e4b9c2;
59
+ --puck-color-red-09: #efd7db;
60
+ --puck-color-red-10: #f6eaec;
61
+ --puck-color-red-11: #faf4f5;
62
+ --puck-color-red-12: #fff9fa;
63
+ --puck-color-grey-01: #181818;
64
+ --puck-color-grey-02: #292929;
65
+ --puck-color-grey-03: #404040;
66
+ --puck-color-grey-04: #5a5a5a;
67
+ --puck-color-grey-05: #767676;
68
+ --puck-color-grey-06: #949494;
69
+ --puck-color-grey-07: #ababab;
70
+ --puck-color-grey-08: #c3c3c3;
71
+ --puck-color-grey-09: #dcdcdc;
72
+ --puck-color-grey-10: #efefef;
73
+ --puck-color-grey-11: #f5f5f5;
74
+ --puck-color-grey-12: #fafafa;
75
+ --puck-color-black: #000000;
76
+ --puck-color-white: #ffffff;
77
+ }
78
+
79
+ /* styles/typography.css */
80
+ :root {
81
+ --puck-font-size-scale-base-unitless: 12;
82
+ --puck-font-size-xxxs-unitless: 12;
83
+ --puck-font-size-xxs-unitless: 14;
84
+ --puck-font-size-xs-unitless: 16;
85
+ --puck-font-size-s-unitless: 18;
86
+ --puck-font-size-m-unitless: 21;
87
+ --puck-font-size-l-unitless: 24;
88
+ --puck-font-size-xl-unitless: 28;
89
+ --puck-font-size-xxl-unitless: 36;
90
+ --puck-font-size-xxxl-unitless: 48;
91
+ --puck-font-size-xxxxl-unitless: 56;
92
+ --puck-font-size-xxxs: calc(1rem * var(--puck-font-size-xxxs-unitless) / 16);
93
+ --puck-font-size-xxs: calc(1rem * var(--puck-font-size-xxs-unitless) / 16);
94
+ --puck-font-size-xs: calc(1rem * var(--puck-font-size-xs-unitless) / 16);
95
+ --puck-font-size-s: calc(1rem * var(--puck-font-size-s-unitless) / 16);
96
+ --puck-font-size-m: calc(1rem * var(--puck-font-size-m-unitless) / 16);
97
+ --puck-font-size-l: calc(1rem * var(--puck-font-size-l-unitless) / 16);
98
+ --puck-font-size-xl: calc(1rem * var(--puck-font-size-xl-unitless) / 16);
99
+ --puck-font-size-xxl: calc(1rem * var(--puck-font-size-xxl-unitless) / 16);
100
+ --puck-font-size-xxxl: calc(1rem * var(--puck-font-size-xxxl-unitless) / 16);
101
+ --puck-font-size-xxxxl: calc( 1rem * var(--puck-font-size-xxxxl-unitless) / 16 );
102
+ --puck-font-size-base: var(--puck-font-size-xs);
103
+ --line-height-reset: 1;
104
+ --line-height-xs: calc( var(--space-m-unitless) / var(--puck-font-size-m-unitless) );
105
+ --line-height-s: calc( var(--space-m-unitless) / var(--puck-font-size-s-unitless) );
106
+ --line-height-m: calc( var(--space-m-unitless) / var(--puck-font-size-xs-unitless) );
107
+ --line-height-l: calc( var(--space-m-unitless) / var(--puck-font-size-xxs-unitless) );
108
+ --line-height-xl: calc( var(--space-m-unitless) / var(--puck-font-size-scale-base-unitless) );
109
+ --line-height-base: var(--line-height-m);
110
+ --fallback-font-stack:
111
+ -apple-system,
112
+ BlinkMacSystemFont,
113
+ Segoe UI,
114
+ Helvetica Neue,
115
+ sans-serif,
116
+ Apple Color Emoji,
117
+ Segoe UI Emoji,
118
+ Segoe UI Symbol;
119
+ --puck-font-family: Inter, var(--fallback-font-stack);
120
+ --puck-font-family-monospaced:
121
+ ui-monospace,
122
+ "Cascadia Code",
123
+ "Source Code Pro",
124
+ Menlo,
125
+ Consolas,
126
+ "DejaVu Sans Mono",
127
+ monospace;
128
+ }
129
+ @supports (font-variation-settings: normal) {
130
+ :root {
131
+ --puck-font-family: InterVariable, var(--fallback-font-stack);
132
+ }
133
+ }
134
+
135
+ /* bundle/core.css */
136
+ #frame-root {
137
+ height: 1px;
138
+ min-height: 100vh;
139
+ }
140
+ [data-puck-entry] {
141
+ position: relative;
142
+ z-index: 0;
143
+ }
144
+
145
+ /* bundle/no-external.css */
146
+
147
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/ActionBar/styles.module.css/#css-module-data */
148
+ ._ActionBar_rvadt_1 {
149
+ align-items: center;
150
+ cursor: default;
151
+ display: flex;
152
+ width: auto;
153
+ padding: 4px;
154
+ padding-inline-start: 0;
155
+ padding-inline-end: 0;
156
+ border-top-left-radius: 8px;
157
+ border-top-right-radius: 8px;
158
+ border-radius: 8px;
159
+ background: var(--puck-color-grey-01);
160
+ color: var(--puck-color-white);
161
+ font-family: var(--puck-font-family);
162
+ min-height: 26px;
163
+ }
164
+ ._ActionBar-label_rvadt_18 {
165
+ color: var(--puck-color-grey-08);
166
+ font-size: var(--puck-font-size-xxxs);
167
+ font-weight: 500;
168
+ padding-inline-start: 8px;
169
+ padding-inline-end: 8px;
170
+ margin-inline-start: 4px;
171
+ margin-inline-end: 4px;
172
+ text-overflow: ellipsis;
173
+ white-space: nowrap;
174
+ }
175
+ ._ActionBar-action_rvadt_30 + ._ActionBar-label_rvadt_18 {
176
+ padding-inline-start: 0;
177
+ }
178
+ ._ActionBar-label_rvadt_18 + ._ActionBar-action_rvadt_30 {
179
+ margin-inline-start: -4px;
180
+ }
181
+ ._ActionBar-group_rvadt_38 {
182
+ align-items: center;
183
+ border-inline-start: 0.5px solid var(--puck-color-grey-05);
184
+ display: flex;
185
+ height: 100%;
186
+ padding-inline-start: 4px;
187
+ padding-inline-end: 4px;
188
+ }
189
+ ._ActionBar-group_rvadt_38:first-of-type {
190
+ border-inline-start: 0;
191
+ }
192
+ ._ActionBar-group_rvadt_38:empty {
193
+ display: none;
194
+ }
195
+ ._ActionBar-action_rvadt_30 {
196
+ background: transparent;
197
+ border: none;
198
+ color: var(--puck-color-grey-08);
199
+ cursor: pointer;
200
+ padding: 6px 8px;
201
+ margin-inline-start: 4px;
202
+ margin-inline-end: 4px;
203
+ border-radius: 4px;
204
+ overflow: hidden;
205
+ display: flex;
206
+ align-items: center;
207
+ justify-content: center;
208
+ transition: color 50ms ease-in;
209
+ }
210
+ ._ActionBar-action_rvadt_30 svg {
211
+ max-width: none !important;
212
+ }
213
+ ._ActionBar-action_rvadt_30:focus-visible {
214
+ outline: 2px solid var(--puck-color-azure-05);
215
+ outline-offset: -2px;
216
+ }
217
+ @media (hover: hover) and (pointer: fine) {
218
+ ._ActionBar-action_rvadt_30:hover {
219
+ color: var(--puck-color-azure-06);
220
+ transition: none;
221
+ }
222
+ }
223
+ ._ActionBar-action_rvadt_30:active {
224
+ color: var(--puck-color-azure-07);
225
+ transition: none;
226
+ }
227
+ ._ActionBar-group_rvadt_38 * {
228
+ margin: 0;
229
+ }
230
+
231
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/AutoField/styles.module.css/#css-module-data */
232
+ ._InputWrapper_py9hf_1 + ._InputWrapper_py9hf_1 {
233
+ margin-top: 12px;
234
+ }
235
+ ._Input-label_py9hf_5 {
236
+ align-items: center;
237
+ color: var(--puck-color-grey-04);
238
+ display: flex;
239
+ padding-bottom: 12px;
240
+ font-size: var(--puck-font-size-xxs);
241
+ font-weight: 600;
242
+ }
243
+ ._Input-labelIcon_py9hf_14 {
244
+ color: var(--puck-color-grey-07);
245
+ display: flex;
246
+ margin-inline-end: 4px;
247
+ padding-inline-start: 4px;
248
+ }
249
+ ._Input-disabledIcon_py9hf_21 {
250
+ color: var(--puck-color-grey-05);
251
+ margin-inline-start: auto;
252
+ }
253
+ ._Input-input_py9hf_26 {
254
+ background: var(--puck-color-white);
255
+ border-width: 1px;
256
+ border-style: solid;
257
+ border-color: var(--puck-color-grey-09);
258
+ border-radius: 4px;
259
+ box-sizing: border-box;
260
+ font-family: inherit;
261
+ font-size: 14px;
262
+ padding: 12px 15px;
263
+ transition: border-color 50ms ease-in;
264
+ width: 100%;
265
+ max-width: 100%;
266
+ }
267
+ select._Input-input_py9hf_26 {
268
+ appearance: none;
269
+ background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23c3c3c3'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
270
+ background-size: 12px;
271
+ background-position: calc(100% - 12px) calc(50% + 3px);
272
+ background-repeat: no-repeat;
273
+ background-color: var(--puck-color-white);
274
+ cursor: pointer;
275
+ }
276
+ select._Input-input_py9hf_26:dir(rtl) {
277
+ background-position: 12px calc(50% + 3px);
278
+ }
279
+ @media (hover: hover) and (pointer: fine) {
280
+ ._Input_py9hf_1:has(> input):hover ._Input-input_py9hf_26:not([readonly]),
281
+ ._Input_py9hf_1:has(> textarea):hover ._Input-input_py9hf_26:not([readonly]) {
282
+ border-color: var(--puck-color-grey-05);
283
+ transition: none;
284
+ }
285
+ ._Input_py9hf_1:has(> select):hover ._Input-input_py9hf_26:not([disabled]) {
286
+ background-color: var(--puck-color-azure-12);
287
+ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%235a5a5a'><polygon points='0,0 100,0 50,50'/></svg>");
288
+ border-color: var(--puck-color-grey-05);
289
+ transition: none;
290
+ }
291
+ }
292
+ ._Input-input_py9hf_26:focus {
293
+ border-color: var(--puck-color-grey-05);
294
+ outline: 2px solid var(--puck-color-azure-05);
295
+ transition: none;
296
+ }
297
+ ._Input--readOnly_py9hf_76 > ._Input-input_py9hf_26,
298
+ ._Input--readOnly_py9hf_76 > select._Input-input_py9hf_26 {
299
+ background-color: var(--puck-color-grey-11);
300
+ border-color: var(--puck-color-grey-09);
301
+ color: var(--puck-color-grey-04);
302
+ cursor: default;
303
+ opacity: 1;
304
+ outline: 0;
305
+ transition: none;
306
+ }
307
+ ._Input-radioGroupItems_py9hf_87 {
308
+ display: flex;
309
+ border: 1px solid var(--puck-color-grey-09);
310
+ border-radius: 4px;
311
+ flex-wrap: wrap;
312
+ }
313
+ ._Input-radio_py9hf_87 {
314
+ border-inline-end: 1px solid var(--puck-color-grey-09);
315
+ flex-grow: 1;
316
+ }
317
+ ._Input-radio_py9hf_87:first-of-type {
318
+ border-bottom-left-radius: 4px;
319
+ border-top-left-radius: 4px;
320
+ }
321
+ ._Input-radio_py9hf_87:first-of-type ._Input-radioInner_py9hf_104 {
322
+ border-bottom-left-radius: 3px;
323
+ border-top-left-radius: 3px;
324
+ }
325
+ ._Input-radio_py9hf_87:last-of-type {
326
+ border-bottom-right-radius: 4px;
327
+ border-inline-end: 0;
328
+ border-top-right-radius: 4px;
329
+ }
330
+ ._Input-radio_py9hf_87:last-of-type ._Input-radioInner_py9hf_104 {
331
+ border-bottom-right-radius: 3px;
332
+ border-top-right-radius: 3px;
333
+ }
334
+ ._Input-radioInner_py9hf_104 {
335
+ background-color: var(--puck-color-white);
336
+ color: var(--puck-color-grey-04);
337
+ cursor: pointer;
338
+ font-size: var(--puck-font-size-xxxs);
339
+ padding: 8px 12px;
340
+ text-align: center;
341
+ transition: background-color 50ms ease-in;
342
+ }
343
+ ._Input-radio_py9hf_87:has(:focus-visible) {
344
+ outline: 2px solid var(--puck-color-azure-05);
345
+ outline-offset: 2px;
346
+ position: relative;
347
+ }
348
+ @media (hover: hover) and (pointer: fine) {
349
+ ._Input-radioInner_py9hf_104:hover {
350
+ background-color: var(--puck-color-azure-12);
351
+ transition: none;
352
+ }
353
+ }
354
+ ._Input--readOnly_py9hf_76 ._Input-radioInner_py9hf_104 {
355
+ background-color: var(--puck-color-white);
356
+ color: var(--puck-color-grey-04);
357
+ cursor: default;
358
+ }
359
+ ._Input-radio_py9hf_87 ._Input-radioInput_py9hf_149:checked ~ ._Input-radioInner_py9hf_104 {
360
+ background-color: var(--puck-color-azure-11);
361
+ color: var(--puck-color-azure-04);
362
+ font-weight: 500;
363
+ }
364
+ ._Input--readOnly_py9hf_76 ._Input-radioInput_py9hf_149:checked ~ ._Input-radioInner_py9hf_104 {
365
+ background-color: var(--puck-color-grey-11);
366
+ color: var(--puck-color-grey-04);
367
+ }
368
+ ._Input-radio_py9hf_87 ._Input-radioInput_py9hf_149 {
369
+ clip: rect(0 0 0 0);
370
+ clip-path: inset(100%);
371
+ height: 1px;
372
+ overflow: hidden;
373
+ position: absolute;
374
+ white-space: nowrap;
375
+ width: 1px;
376
+ }
377
+ textarea._Input-input_py9hf_26 {
378
+ margin-bottom: -4px;
379
+ }
380
+
381
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/AutoField/fields/ArrayField/styles.module.css/#css-module-data */
382
+ ._ArrayField_14u8o_5 {
383
+ display: flex;
384
+ flex-direction: column;
385
+ background: var(--puck-color-azure-11);
386
+ border: 1px solid var(--puck-color-grey-09);
387
+ border-radius: 4px;
388
+ }
389
+ ._ArrayField--isDraggingFrom_14u8o_13 {
390
+ background-color: var(--puck-color-azure-11);
391
+ overflow: hidden;
392
+ }
393
+ ._ArrayField-addButton_14u8o_18 {
394
+ background-color: var(--puck-color-white);
395
+ border: none;
396
+ border-radius: 3px;
397
+ display: flex;
398
+ color: var(--puck-color-azure-05);
399
+ justify-content: center;
400
+ cursor: pointer;
401
+ width: 100%;
402
+ margin: 0;
403
+ padding: 14px;
404
+ text-align: left;
405
+ transition: background-color 50ms ease-in;
406
+ }
407
+ ._ArrayField--hasItems_14u8o_33 > ._ArrayField-addButton_14u8o_18 {
408
+ border-top: 1px solid var(--puck-color-grey-09);
409
+ border-top-left-radius: 0;
410
+ border-top-right-radius: 0;
411
+ }
412
+ ._ArrayField-addButton_14u8o_18:focus-visible {
413
+ outline: 2px solid var(--puck-color-azure-05);
414
+ outline-offset: 2px;
415
+ position: relative;
416
+ }
417
+ @media (hover: hover) and (pointer: fine) {
418
+ ._ArrayField_14u8o_5:not(._ArrayField--isDraggingFrom_14u8o_13) > ._ArrayField-addButton_14u8o_18:hover {
419
+ background: var(--puck-color-azure-12);
420
+ color: var(--puck-color-azure-04);
421
+ transition: none;
422
+ }
423
+ }
424
+ ._ArrayField_14u8o_5:not(._ArrayField--isDraggingFrom_14u8o_13) > ._ArrayField-addButton_14u8o_18:active {
425
+ background: var(--puck-color-azure-11);
426
+ color: var(--puck-color-azure-04);
427
+ transition: none;
428
+ }
429
+ ._ArrayField-inner_14u8o_59 {
430
+ margin-top: -1px;
431
+ }
432
+ ._ArrayFieldItem_14u8o_67 {
433
+ border-top-left-radius: 3px;
434
+ border-top-right-radius: 3px;
435
+ display: block;
436
+ position: relative;
437
+ }
438
+ ._ArrayFieldItem_14u8o_67 {
439
+ border-top: 1px solid var(--puck-color-grey-09);
440
+ }
441
+ ._ArrayFieldItem--isDragging_14u8o_78 {
442
+ border-top: transparent;
443
+ }
444
+ ._ArrayFieldItem--isExpanded_14u8o_82::before {
445
+ display: none;
446
+ }
447
+ ._ArrayFieldItem--isExpanded_14u8o_82 {
448
+ border-bottom: 0;
449
+ outline-offset: 0px !important;
450
+ outline: 1px solid var(--puck-color-azure-07) !important;
451
+ z-index: 2;
452
+ }
453
+ ._ArrayFieldItem--isDragging_14u8o_78 {
454
+ outline: 2px var(--puck-color-azure-09) solid !important;
455
+ }
456
+ ._ArrayFieldItem--isDragging_14u8o_78 ._ArrayFieldItem-summary_14u8o_97:active {
457
+ background-color: var(--puck-color-white);
458
+ }
459
+ ._ArrayFieldItem_14u8o_67 + ._ArrayFieldItem_14u8o_67 {
460
+ border-top-left-radius: 0;
461
+ border-top-right-radius: 0;
462
+ }
463
+ ._ArrayFieldItem-summary_14u8o_97 {
464
+ background: var(--puck-color-white);
465
+ color: var(--puck-color-grey-04);
466
+ cursor: pointer;
467
+ display: flex;
468
+ align-items: center;
469
+ gap: 2px;
470
+ justify-content: space-between;
471
+ font-size: var(--puck-font-size-xxs);
472
+ list-style: none;
473
+ padding: 12px 15px;
474
+ position: relative;
475
+ overflow: hidden;
476
+ transition: background-color 50ms ease-in;
477
+ }
478
+ ._ArrayFieldItem_14u8o_67:first-of-type > ._ArrayFieldItem-summary_14u8o_97 {
479
+ border-top-left-radius: 3px;
480
+ border-top-right-radius: 3px;
481
+ }
482
+ ._ArrayField--addDisabled_14u8o_127 > ._ArrayField-inner_14u8o_59 > ._ArrayFieldItem_14u8o_67:last-of-type:not(._ArrayFieldItem--isExpanded_14u8o_82) > ._ArrayFieldItem-summary_14u8o_97 {
483
+ border-bottom-left-radius: 3px;
484
+ border-bottom-right-radius: 3px;
485
+ }
486
+ ._ArrayField--addDisabled_14u8o_127 > ._ArrayField-inner_14u8o_59 > ._ArrayFieldItem--isExpanded_14u8o_82:last-of-type {
487
+ border-bottom-left-radius: 3px;
488
+ border-bottom-right-radius: 3px;
489
+ }
490
+ ._ArrayFieldItem-summary_14u8o_97:focus-visible {
491
+ outline: 2px solid var(--puck-color-azure-05);
492
+ outline-offset: 2px;
493
+ }
494
+ @media (hover: hover) and (pointer: fine) {
495
+ ._ArrayFieldItem-summary_14u8o_97:hover {
496
+ background-color: var(--puck-color-azure-12);
497
+ transition: none;
498
+ }
499
+ }
500
+ ._ArrayFieldItem-summary_14u8o_97:active {
501
+ background-color: var(--puck-color-azure-11);
502
+ transition: none;
503
+ }
504
+ ._ArrayFieldItem--isExpanded_14u8o_82 > ._ArrayFieldItem-summary_14u8o_97 {
505
+ background: var(--puck-color-azure-11);
506
+ color: var(--puck-color-azure-04);
507
+ font-weight: 600;
508
+ transition: none;
509
+ }
510
+ ._ArrayFieldItem-body_14u8o_166 {
511
+ background: var(--puck-color-white);
512
+ display: none;
513
+ }
514
+ ._ArrayFieldItem--isExpanded_14u8o_82 > ._ArrayFieldItem-body_14u8o_166 {
515
+ display: block;
516
+ }
517
+ ._ArrayFieldItem-fieldset_14u8o_175 {
518
+ border: none;
519
+ border-top: 1px solid var(--puck-color-grey-09);
520
+ margin: 0;
521
+ min-width: 0;
522
+ padding: 16px 15px;
523
+ }
524
+ ._ArrayFieldItem-rhs_14u8o_183 {
525
+ display: flex;
526
+ gap: 4px;
527
+ align-items: center;
528
+ }
529
+ ._ArrayFieldItem-actions_14u8o_189 {
530
+ color: var(--puck-color-grey-04);
531
+ display: flex;
532
+ gap: 4px;
533
+ opacity: 0;
534
+ }
535
+ ._ArrayFieldItem-summary_14u8o_97:focus-within > ._ArrayFieldItem-rhs_14u8o_183 > ._ArrayFieldItem-actions_14u8o_189,
536
+ ._ArrayFieldItem-summary_14u8o_97:hover > ._ArrayFieldItem-rhs_14u8o_183 > ._ArrayFieldItem-actions_14u8o_189 {
537
+ opacity: 1;
538
+ }
539
+
540
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/IconButton/IconButton.module.css/#css-module-data */
541
+ ._IconButton_swpni_1 {
542
+ align-items: center;
543
+ background: transparent;
544
+ border: none;
545
+ border-radius: 4px;
546
+ color: currentColor;
547
+ display: flex;
548
+ font-family: var(--puck-font-family);
549
+ justify-content: center;
550
+ padding: 4px;
551
+ transition: background-color 50ms ease-in, color 50ms ease-in;
552
+ }
553
+ ._IconButton_swpni_1:focus-visible {
554
+ outline: 2px solid var(--puck-color-azure-05);
555
+ outline-offset: -2px;
556
+ }
557
+ @media (hover: hover) and (pointer: fine) {
558
+ ._IconButton_swpni_1:hover:not(._IconButton--disabled_swpni_20) {
559
+ background: var(--puck-color-azure-12);
560
+ color: var(--puck-color-azure-04);
561
+ cursor: pointer;
562
+ transition: none;
563
+ }
564
+ }
565
+ ._IconButton_swpni_1:active {
566
+ background: var(--puck-color-azure-11);
567
+ transition: none;
568
+ }
569
+ ._IconButton-title_swpni_33 {
570
+ clip: rect(0 0 0 0);
571
+ clip-path: inset(100%);
572
+ height: 1px;
573
+ overflow: hidden;
574
+ position: absolute;
575
+ white-space: nowrap;
576
+ width: 1px;
577
+ }
578
+ ._IconButton--disabled_swpni_20 {
579
+ color: var(--puck-color-grey-07);
580
+ }
581
+
582
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Loader/styles.module.css/#css-module-data */
583
+ @keyframes _loader-animation_nacdm_1 {
584
+ 0% {
585
+ transform: rotate(0deg) scale(1);
586
+ }
587
+ 50% {
588
+ transform: rotate(180deg) scale(0.8);
589
+ }
590
+ 100% {
591
+ transform: rotate(360deg) scale(1);
592
+ }
593
+ }
594
+ ._Loader_nacdm_13 {
595
+ background: transparent;
596
+ border-radius: 100%;
597
+ border: 2px solid currentColor;
598
+ border-bottom-color: transparent;
599
+ display: inline-block;
600
+ animation: _loader-animation_nacdm_1 1s 0s infinite linear;
601
+ animation-fill-mode: both;
602
+ }
603
+
604
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/DragIcon/styles.module.css/#css-module-data */
605
+ ._DragIcon_17p8x_1 {
606
+ color: var(--puck-color-grey-05);
607
+ cursor: grab;
608
+ padding: 4px;
609
+ border-radius: 4px;
610
+ }
611
+ ._DragIcon--disabled_17p8x_8 {
612
+ cursor: no-drop;
613
+ }
614
+ @media (hover: hover) and (pointer: fine) {
615
+ ._DragIcon_17p8x_1:not(._DragIcon--disabled_17p8x_8):hover {
616
+ color: var(--puck-color-azure-05);
617
+ background-color: var(--puck-color-azure-12);
618
+ }
619
+ }
620
+
621
+ /* components/Sortable/styles.css */
622
+ [data-dnd-placeholder] * {
623
+ opacity: 0 !important;
624
+ }
625
+ [data-dnd-placeholder] {
626
+ background: var(--puck-color-azure-09) !important;
627
+ border: none !important;
628
+ color: #00000000 !important;
629
+ opacity: 0.3 !important;
630
+ outline: none !important;
631
+ transition: none !important;
632
+ }
633
+
634
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/ExternalInput/styles.module.css/#css-module-data */
635
+ ._ExternalInput-actions_91ls0_1 {
636
+ display: flex;
637
+ }
638
+ ._ExternalInput-button_91ls0_5 {
639
+ display: flex;
640
+ gap: 8px;
641
+ align-items: center;
642
+ justify-content: center;
643
+ background-color: var(--puck-color-white);
644
+ border: 1px solid var(--puck-color-grey-09);
645
+ border-radius: 4px;
646
+ color: var(--puck-color-azure-04);
647
+ padding: 12px 16px;
648
+ font-weight: 500;
649
+ white-space: nowrap;
650
+ text-overflow: ellipsis;
651
+ transition: background-color 50ms ease-in;
652
+ position: relative;
653
+ overflow: hidden;
654
+ flex-grow: 1;
655
+ }
656
+ ._ExternalInput--dataSelected_91ls0_24 ._ExternalInput-button_91ls0_5 {
657
+ color: var(--puck-color-grey-03);
658
+ display: block;
659
+ border-top-right-radius: 0px;
660
+ border-bottom-right-radius: 0px;
661
+ }
662
+ ._ExternalInput--readOnly_91ls0_31 ._ExternalInput-button_91ls0_5 {
663
+ background-color: var(--puck-color-grey-11);
664
+ }
665
+ ._ExternalInput-detachButton_91ls0_35 {
666
+ border: 1px solid var(--puck-color-grey-09);
667
+ border-top-right-radius: 4px;
668
+ border-bottom-right-radius: 4px;
669
+ background-color: var(--puck-color-grey-12);
670
+ color: var(--puck-color-grey-05);
671
+ display: flex;
672
+ gap: 8px;
673
+ align-items: center;
674
+ justify-content: center;
675
+ padding: 8px 12px;
676
+ position: relative;
677
+ transition: background-color 50ms ease-in, color 50ms ease-in;
678
+ margin-inline-start: -1px;
679
+ }
680
+ ._ExternalInput-button_91ls0_5:focus-visible,
681
+ ._ExternalInput-detachButton_91ls0_35:focus-visible {
682
+ outline: 2px solid var(--puck-color-azure-05);
683
+ outline-offset: 2px;
684
+ z-index: 1;
685
+ }
686
+ @media (hover: hover) and (pointer: fine) {
687
+ ._ExternalInput_91ls0_1:not(._ExternalInput--readOnly_91ls0_31) ._ExternalInput-button_91ls0_5:hover,
688
+ ._ExternalInput_91ls0_1:not(._ExternalInput--readOnly_91ls0_31) ._ExternalInput-detachButton_91ls0_35:hover {
689
+ background: var(--puck-color-azure-12);
690
+ transition: none;
691
+ }
692
+ ._ExternalInput_91ls0_1:not(._ExternalInput--readOnly_91ls0_31) ._ExternalInput-detachButton_91ls0_35:hover {
693
+ color: var(--puck-color-azure-04);
694
+ }
695
+ }
696
+ ._ExternalInput_91ls0_1:not(._ExternalInput--readOnly_91ls0_31) ._ExternalInput-button_91ls0_5:active,
697
+ ._ExternalInput_91ls0_1:not(._ExternalInput--readOnly_91ls0_31) ._ExternalInput-detachButton_91ls0_35:active {
698
+ background: var(--puck-color-azure-11);
699
+ transition: none;
700
+ }
701
+ ._ExternalInputModal_91ls0_79 {
702
+ color: var(--puck-color-black);
703
+ display: grid;
704
+ grid-template-rows: min-content minmax(128px, 100%) min-content;
705
+ grid-template-columns: 100%;
706
+ position: relative;
707
+ min-height: 50dvh;
708
+ max-height: 90dvh;
709
+ }
710
+ ._ExternalInputModal-grid_91ls0_89 {
711
+ display: flex;
712
+ flex-direction: column;
713
+ }
714
+ @media (min-width: 458px) {
715
+ ._ExternalInputModal-grid_91ls0_89 {
716
+ display: grid;
717
+ grid-template-columns: 100%;
718
+ }
719
+ ._ExternalInputModal--filtersToggled_91ls0_100 ._ExternalInputModal-grid_91ls0_89 {
720
+ grid-template-columns: 25% 75%;
721
+ }
722
+ }
723
+ ._ExternalInputModal-filters_91ls0_105 {
724
+ border-bottom: 1px solid var(--puck-color-grey-09);
725
+ }
726
+ ._ExternalInputModal--filtersToggled_91ls0_100 ._ExternalInputModal-filters_91ls0_105 {
727
+ display: none;
728
+ }
729
+ @media (min-width: 458px) {
730
+ ._ExternalInputModal-filters_91ls0_105 {
731
+ border-inline-end: 1px solid var(--puck-color-grey-09);
732
+ display: none;
733
+ }
734
+ ._ExternalInputModal--filtersToggled_91ls0_100 ._ExternalInputModal-filters_91ls0_105 {
735
+ display: block;
736
+ }
737
+ }
738
+ ._ExternalInputModal-masthead_91ls0_124 {
739
+ background-color: var(--puck-color-grey-12);
740
+ border-bottom: 1px solid var(--puck-color-grey-09);
741
+ display: flex;
742
+ flex-wrap: wrap;
743
+ gap: 24px;
744
+ padding: 24px;
745
+ }
746
+ ._ExternalInputModal-tableWrapper_91ls0_133 {
747
+ position: relative;
748
+ overflow-x: auto;
749
+ overflow-y: auto;
750
+ flex-grow: 1;
751
+ }
752
+ ._ExternalInputModal-table_91ls0_133 {
753
+ border-collapse: unset;
754
+ border-spacing: 0px;
755
+ color: var(--puck-color-grey-02);
756
+ position: relative;
757
+ z-index: 0;
758
+ min-width: 100%;
759
+ }
760
+ ._ExternalInputModal-thead_91ls0_149 {
761
+ background-color: var(--puck-color-white);
762
+ position: sticky;
763
+ top: 0;
764
+ z-index: 1;
765
+ }
766
+ ._ExternalInputModal-th_91ls0_149 {
767
+ border-bottom: 1px solid var(--puck-color-grey-09);
768
+ color: var(--puck-color-grey-04);
769
+ font-weight: 500;
770
+ font-size: 14px;
771
+ padding: 16px 24px;
772
+ }
773
+ ._ExternalInputModal-td_91ls0_164 {
774
+ border-bottom: 1px solid var(--puck-color-grey-10);
775
+ padding: 16px 24px;
776
+ }
777
+ ._ExternalInputModal-tr_91ls0_169 ._ExternalInputModal-td_91ls0_164:first-of-type {
778
+ font-weight: 500;
779
+ width: 1%;
780
+ white-space: nowrap;
781
+ }
782
+ @media (hover: hover) and (pointer: fine) {
783
+ ._ExternalInputModal-tbody_91ls0_176 ._ExternalInputModal-tr_91ls0_169:hover {
784
+ background: var(--puck-color-azure-12);
785
+ color: var(--puck-color-azure-04);
786
+ cursor: pointer;
787
+ position: relative;
788
+ margin-inline-start: -5px;
789
+ }
790
+ ._ExternalInputModal-tbody_91ls0_176 ._ExternalInputModal-tr_91ls0_169:hover ._ExternalInputModal-td_91ls0_164:first-of-type {
791
+ border-inline-start: 4px solid var(--puck-color-azure-04);
792
+ padding-inline-start: 20px;
793
+ }
794
+ }
795
+ ._ExternalInputModal-tbody_91ls0_176 ._ExternalInputModal-tr_91ls0_169:last-of-type ._ExternalInputModal-td_91ls0_164 {
796
+ border-bottom: none;
797
+ }
798
+ ._ExternalInputModal-tableWrapper_91ls0_133 {
799
+ display: none;
800
+ }
801
+ ._ExternalInputModal--hasData_91ls0_202 ._ExternalInputModal-tableWrapper_91ls0_133 {
802
+ display: block;
803
+ }
804
+ ._ExternalInputModal-loadingBanner_91ls0_206 {
805
+ display: none;
806
+ background-color: color-mix(in srgb, var(--puck-color-white) 90%, transparent);
807
+ padding: 64px;
808
+ align-items: center;
809
+ justify-content: center;
810
+ position: absolute;
811
+ top: 0;
812
+ left: 0;
813
+ right: 0;
814
+ bottom: 0;
815
+ }
816
+ ._ExternalInputModal--isLoading_91ls0_223 ._ExternalInputModal-loadingBanner_91ls0_206 {
817
+ display: flex;
818
+ }
819
+ ._ExternalInputModal-searchForm_91ls0_227 {
820
+ display: flex;
821
+ flex-wrap: wrap;
822
+ gap: 12px;
823
+ flex-grow: 1;
824
+ }
825
+ @media (min-width: 458px) {
826
+ ._ExternalInputModal-searchForm_91ls0_227 {
827
+ flex-wrap: nowrap;
828
+ }
829
+ }
830
+ ._ExternalInputModal-search_91ls0_227 {
831
+ display: flex;
832
+ background: var(--puck-color-white);
833
+ border-width: 1px;
834
+ border-style: solid;
835
+ border-color: var(--puck-color-grey-09);
836
+ border-radius: 4px;
837
+ flex-grow: 1;
838
+ transition: border-color 50ms ease-in;
839
+ }
840
+ ._ExternalInputModal-search_91ls0_227:focus-within {
841
+ border-color: var(--puck-color-grey-05);
842
+ outline: 2px solid var(--puck-color-azure-05);
843
+ transition: none;
844
+ }
845
+ @media (hover: hover) and (pointer: fine) {
846
+ ._ExternalInputModal-search_91ls0_227:hover {
847
+ border-color: var(--puck-color-grey-05);
848
+ transition: none;
849
+ }
850
+ }
851
+ ._ExternalInputModal-searchIcon_91ls0_264 {
852
+ align-items: center;
853
+ background: var(--puck-color-grey-12);
854
+ border-bottom-left-radius: 4px;
855
+ border-top-left-radius: 4px;
856
+ border-inline-end: 1px solid var(--puck-color-grey-09);
857
+ color: var(--puck-color-grey-07);
858
+ display: flex;
859
+ justify-content: center;
860
+ padding: 12px 15px;
861
+ transition: color 50ms ease-in;
862
+ }
863
+ ._ExternalInputModal-search_91ls0_227:focus-within ._ExternalInputModal-searchIcon_91ls0_264 {
864
+ color: var(--puck-color-grey-04);
865
+ transition: none;
866
+ }
867
+ @media (hover: hover) and (pointer: fine) {
868
+ ._ExternalInputModal-search_91ls0_227:hover ._ExternalInputModal-searchIcon_91ls0_264 {
869
+ color: var(--puck-color-grey-04);
870
+ transition: none;
871
+ }
872
+ }
873
+ ._ExternalInputModal-searchIconText_91ls0_289 {
874
+ clip: rect(0 0 0 0);
875
+ clip-path: inset(100%);
876
+ height: 1px;
877
+ overflow: hidden;
878
+ position: absolute;
879
+ white-space: nowrap;
880
+ width: 1px;
881
+ }
882
+ ._ExternalInputModal-searchInput_91ls0_299 {
883
+ border: none;
884
+ border-radius: 4px;
885
+ background: var(--puck-color-white);
886
+ font-family: inherit;
887
+ font-size: 14px;
888
+ padding: 12px 15px;
889
+ width: 100%;
890
+ }
891
+ ._ExternalInputModal-searchInput_91ls0_299:focus {
892
+ outline: 0;
893
+ }
894
+ ._ExternalInputModal-searchActions_91ls0_313 {
895
+ display: flex;
896
+ gap: 8px;
897
+ height: 44px;
898
+ width: 100%;
899
+ }
900
+ @media (min-width: 458px) {
901
+ ._ExternalInputModal-searchActions_91ls0_313 {
902
+ width: auto;
903
+ }
904
+ }
905
+ ._ExternalInputModal-searchActionIcon_91ls0_326 {
906
+ align-self: center;
907
+ }
908
+ ._ExternalInputModal-footerContainer_91ls0_330 {
909
+ background-color: var(--puck-color-grey-12);
910
+ border-top: 1px solid var(--puck-color-grey-09);
911
+ color: var(--puck-color-grey-04);
912
+ padding: 16px;
913
+ }
914
+ ._ExternalInputModal-footer_91ls0_330 {
915
+ font-weight: 500;
916
+ font-size: 14px;
917
+ text-align: right;
918
+ }
919
+ ._ExternalInputModal-field_91ls0_343 {
920
+ color: var(--puck-color-grey-04);
921
+ margin: 16px;
922
+ margin-bottom: 12px;
923
+ display: block;
924
+ }
925
+
926
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Modal/styles.module.css/#css-module-data */
927
+ ._Modal_ikbaj_1 {
928
+ background: color-mix(in srgb, var(--puck-color-black) 75%, transparent);
929
+ display: none;
930
+ justify-content: center;
931
+ align-items: center;
932
+ position: fixed;
933
+ top: 0;
934
+ left: 0;
935
+ bottom: 0;
936
+ right: 0;
937
+ z-index: 1;
938
+ padding: 32px;
939
+ }
940
+ ._Modal--isOpen_ikbaj_15 {
941
+ display: flex;
942
+ }
943
+ ._Modal-inner_ikbaj_19 {
944
+ width: 100%;
945
+ max-width: 1024px;
946
+ border-radius: 8px;
947
+ overflow: hidden;
948
+ background: var(--puck-color-white);
949
+ display: flex;
950
+ flex-direction: column;
951
+ max-height: 90dvh;
952
+ }
953
+
954
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Heading/styles.module.css/#css-module-data */
955
+ ._Heading_qxrry_1 {
956
+ display: block;
957
+ color: var(--puck-color-black);
958
+ font-weight: 700;
959
+ margin: 0;
960
+ }
961
+ ._Heading_qxrry_1 b {
962
+ font-weight: 700;
963
+ }
964
+ ._Heading--xxxxl_qxrry_12 {
965
+ font-size: var(--puck-font-size-xxxxl);
966
+ letter-spacing: 0.08ch;
967
+ font-weight: 800;
968
+ }
969
+ ._Heading--xxxl_qxrry_18 {
970
+ font-size: var(--puck-font-size-xxxl);
971
+ }
972
+ ._Heading--xxl_qxrry_22 {
973
+ font-size: var(--puck-font-size-xxl);
974
+ }
975
+ ._Heading--xl_qxrry_26 {
976
+ font-size: var(--puck-font-size-xl);
977
+ }
978
+ ._Heading--l_qxrry_30 {
979
+ font-size: var(--puck-font-size-l);
980
+ }
981
+ ._Heading--m_qxrry_34 {
982
+ font-size: var(--puck-font-size-m);
983
+ }
984
+ ._Heading--s_qxrry_38 {
985
+ font-size: var(--puck-font-size-s);
986
+ }
987
+ ._Heading--xs_qxrry_42 {
988
+ font-size: var(--puck-font-size-xs);
989
+ }
990
+
991
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Button/Button.module.css/#css-module-data */
992
+ ._Button_10byl_1 {
993
+ appearance: none;
994
+ background: none;
995
+ border: 1px solid transparent;
996
+ border-radius: 4px;
997
+ color: var(--puck-color-white);
998
+ display: inline-flex;
999
+ align-items: center;
1000
+ gap: 8px;
1001
+ letter-spacing: 0.05ch;
1002
+ font-family: var(--puck-font-family);
1003
+ font-size: 14px;
1004
+ font-weight: 400;
1005
+ box-sizing: border-box;
1006
+ line-height: 1;
1007
+ text-align: center;
1008
+ text-decoration: none;
1009
+ transition: background-color 50ms ease-in;
1010
+ cursor: pointer;
1011
+ white-space: nowrap;
1012
+ margin: 0;
1013
+ }
1014
+ ._Button_10byl_1:hover,
1015
+ ._Button_10byl_1:active {
1016
+ transition: none;
1017
+ }
1018
+ ._Button--medium_10byl_29 {
1019
+ min-height: 34px;
1020
+ padding-bottom: 7px;
1021
+ padding-inline-start: 19px;
1022
+ padding-inline-end: 19px;
1023
+ padding-top: 7px;
1024
+ }
1025
+ ._Button--large_10byl_37 {
1026
+ padding-bottom: 11px;
1027
+ padding-inline-start: 19px;
1028
+ padding-inline-end: 19px;
1029
+ padding-top: 11px;
1030
+ }
1031
+ ._Button-icon_10byl_44 {
1032
+ margin-top: 2px;
1033
+ }
1034
+ ._Button--primary_10byl_48 {
1035
+ background: var(--puck-color-azure-04);
1036
+ }
1037
+ ._Button_10byl_1:focus-visible {
1038
+ outline: 2px solid var(--puck-color-azure-05);
1039
+ outline-offset: 2px;
1040
+ }
1041
+ @media (hover: hover) and (pointer: fine) {
1042
+ ._Button--primary_10byl_48:hover {
1043
+ background-color: var(--puck-color-azure-03);
1044
+ }
1045
+ }
1046
+ ._Button--primary_10byl_48:active {
1047
+ background-color: var(--puck-color-azure-02);
1048
+ }
1049
+ ._Button--secondary_10byl_67 {
1050
+ border: 1px solid currentColor;
1051
+ color: currentColor;
1052
+ }
1053
+ @media (hover: hover) and (pointer: fine) {
1054
+ ._Button--secondary_10byl_67:hover {
1055
+ background-color: var(--puck-color-azure-12);
1056
+ color: var(--puck-color-black);
1057
+ }
1058
+ }
1059
+ ._Button--secondary_10byl_67:active {
1060
+ background-color: var(--puck-color-azure-11);
1061
+ color: var(--puck-color-black);
1062
+ }
1063
+ ._Button--flush_10byl_84 {
1064
+ border-radius: 0;
1065
+ }
1066
+ ._Button--disabled_10byl_88,
1067
+ ._Button--disabled_10byl_88:hover {
1068
+ background-color: var(--puck-color-grey-07);
1069
+ color: var(--puck-color-grey-03);
1070
+ cursor: not-allowed;
1071
+ }
1072
+ ._Button--fullWidth_10byl_95 {
1073
+ justify-content: center;
1074
+ width: 100%;
1075
+ }
1076
+ ._Button-spinner_10byl_100 {
1077
+ padding-inline-start: 8px;
1078
+ }
1079
+
1080
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/AutoField/fields/ObjectField/styles.module.css/#css-module-data */
1081
+ ._ObjectField_1ua3y_5 {
1082
+ display: flex;
1083
+ flex-direction: column;
1084
+ background-color: var(--puck-color-white);
1085
+ border: 1px solid var(--puck-color-grey-09);
1086
+ border-radius: 4px;
1087
+ }
1088
+ ._ObjectField-fieldset_1ua3y_13 {
1089
+ border: none;
1090
+ margin: 0;
1091
+ min-width: 0;
1092
+ padding: 16px 15px;
1093
+ }
1094
+
1095
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Drawer/styles.module.css/#css-module-data */
1096
+ ._Drawer_pl7z0_1 {
1097
+ display: flex;
1098
+ flex-direction: column;
1099
+ font-family: var(--puck-font-family);
1100
+ gap: 12px;
1101
+ }
1102
+ ._Drawer-draggable_pl7z0_8 {
1103
+ position: relative;
1104
+ }
1105
+ ._Drawer-draggableBg_pl7z0_12 {
1106
+ position: absolute;
1107
+ top: 0;
1108
+ right: 0;
1109
+ bottom: 0;
1110
+ left: 0;
1111
+ pointer-events: none;
1112
+ z-index: -1;
1113
+ }
1114
+ ._DrawerItem-draggable_pl7z0_22 {
1115
+ background: var(--puck-color-white);
1116
+ cursor: grab;
1117
+ padding: 12px;
1118
+ display: flex;
1119
+ border: 1px var(--puck-color-grey-09) solid;
1120
+ border-radius: 4px;
1121
+ font-size: var(--puck-font-size-xxs);
1122
+ justify-content: space-between;
1123
+ align-items: center;
1124
+ transition: background-color 50ms ease-in, color 50ms ease-in;
1125
+ }
1126
+ ._DrawerItem--disabled_pl7z0_35 ._DrawerItem-draggable_pl7z0_22 {
1127
+ background: var(--puck-color-grey-11);
1128
+ color: var(--puck-color-grey-05);
1129
+ cursor: not-allowed;
1130
+ }
1131
+ ._DrawerItem_pl7z0_22:focus-visible {
1132
+ outline: 0;
1133
+ }
1134
+ ._Drawer_pl7z0_1:not(._Drawer--isDraggingFrom_pl7z0_45) ._DrawerItem_pl7z0_22:focus-visible ._DrawerItem-draggable_pl7z0_22 {
1135
+ border-radius: 4px;
1136
+ outline: 2px solid var(--puck-color-azure-05);
1137
+ outline-offset: 2px;
1138
+ }
1139
+ @media (hover: hover) and (pointer: fine) {
1140
+ ._Drawer_pl7z0_1:not(._Drawer--isDraggingFrom_pl7z0_45) ._DrawerItem_pl7z0_22:not(._DrawerItem--disabled_pl7z0_35) ._DrawerItem-draggable_pl7z0_22:hover {
1141
+ background-color: var(--puck-color-azure-12);
1142
+ color: var(--puck-color-azure-04);
1143
+ transition: none;
1144
+ }
1145
+ }
1146
+ ._DrawerItem-name_pl7z0_63 {
1147
+ overflow-x: hidden;
1148
+ text-overflow: ellipsis;
1149
+ white-space: nowrap;
1150
+ }
1151
+
1152
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/DraggableComponent/styles.module.css/#css-module-data */
1153
+ ._DraggableComponent_qzbgx_1 {
1154
+ position: absolute;
1155
+ pointer-events: none;
1156
+ --overlay-background: color-mix( in srgb, var(--puck-color-azure-08) 30%, transparent );
1157
+ }
1158
+ ._DraggableComponent-overlay_qzbgx_12 {
1159
+ cursor: pointer;
1160
+ height: 100%;
1161
+ width: 100%;
1162
+ top: 0;
1163
+ outline: 2px var(--puck-color-azure-09) solid;
1164
+ outline-offset: -2px;
1165
+ position: absolute;
1166
+ pointer-events: none;
1167
+ box-sizing: border-box;
1168
+ z-index: 1;
1169
+ }
1170
+ ._DraggableComponent_qzbgx_1:focus-visible > ._DraggableComponent-overlay_qzbgx_12 {
1171
+ outline: 1px solid var(--puck-color-azure-05);
1172
+ }
1173
+ ._DraggableComponent-loadingOverlay_qzbgx_29 {
1174
+ background: var(--puck-color-white);
1175
+ color: var(--puck-color-grey-03);
1176
+ border-radius: 4px;
1177
+ display: flex;
1178
+ padding: 8px;
1179
+ top: 8px;
1180
+ right: 8px;
1181
+ position: absolute;
1182
+ z-index: 1;
1183
+ pointer-events: all;
1184
+ box-sizing: border-box;
1185
+ opacity: 0.8;
1186
+ z-index: 1;
1187
+ }
1188
+ ._DraggableComponent--hover_qzbgx_45:not(._DraggableComponent--isLocked_qzbgx_45) > ._DraggableComponent-overlay_qzbgx_12 {
1189
+ background: var(--overlay-background);
1190
+ }
1191
+ ._DraggableComponent--hover_qzbgx_45 > ._DraggableComponent-overlay_qzbgx_12 {
1192
+ outline: 2px var(--puck-color-azure-09) solid;
1193
+ }
1194
+ ._DraggableComponent--isSelected_qzbgx_54 > ._DraggableComponent-overlay_qzbgx_12 {
1195
+ outline-color: var(--puck-color-azure-07);
1196
+ }
1197
+ ._DraggableComponent_qzbgx_1:has(._DraggableComponent--hover_qzbgx_45 > ._DraggableComponent-overlay_qzbgx_12) > ._DraggableComponent-overlay_qzbgx_12 {
1198
+ display: none;
1199
+ }
1200
+ ._DraggableComponent-actionsOverlay_qzbgx_66 {
1201
+ position: sticky;
1202
+ opacity: 0;
1203
+ pointer-events: none;
1204
+ z-index: 2;
1205
+ }
1206
+ ._DraggableComponent--isSelected_qzbgx_54 ._DraggableComponent-actionsOverlay_qzbgx_66 {
1207
+ opacity: 1;
1208
+ pointer-events: auto;
1209
+ }
1210
+ ._DraggableComponent-actions_qzbgx_66 {
1211
+ position: absolute;
1212
+ width: auto;
1213
+ cursor: grab;
1214
+ display: flex;
1215
+ box-sizing: border-box;
1216
+ transform-origin: right top;
1217
+ min-height: 36px;
1218
+ }
1219
+
1220
+ /* components/DraggableComponent/styles.css */
1221
+ [data-puck-component] * {
1222
+ pointer-events: none;
1223
+ user-select: none;
1224
+ -webkit-user-select: none;
1225
+ }
1226
+ [data-puck-component] {
1227
+ cursor: grab;
1228
+ pointer-events: auto !important;
1229
+ user-select: none;
1230
+ -webkit-user-select: none;
1231
+ }
1232
+ [data-puck-dropzone] {
1233
+ pointer-events: auto !important;
1234
+ }
1235
+ [data-puck-disabled] {
1236
+ cursor: pointer;
1237
+ }
1238
+ [data-dnd-placeholder] {
1239
+ background: var(--puck-color-azure-06) !important;
1240
+ border: none !important;
1241
+ color: #00000000 !important;
1242
+ opacity: 0.3 !important;
1243
+ outline: none !important;
1244
+ transition: none !important;
1245
+ }
1246
+ [data-dnd-placeholder] *,
1247
+ [data-dnd-placeholder]::after,
1248
+ [data-dnd-placeholder]::before {
1249
+ opacity: 0 !important;
1250
+ }
1251
+ [data-dnd-dragging][data-puck-component] {
1252
+ pointer-events: none !important;
1253
+ outline: 2px var(--puck-color-azure-09) solid !important;
1254
+ outline-offset: -2px !important;
1255
+ }
1256
+
1257
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/DropZone/styles.module.css/#css-module-data */
1258
+ ._DropZone_1i2sv_1 {
1259
+ --resize-animation-ms: 150ms;
1260
+ position: relative;
1261
+ height: 100%;
1262
+ min-height: var(--min-empty-height);
1263
+ outline-offset: -2px;
1264
+ width: 100%;
1265
+ }
1266
+ ._DropZone--hasChildren_1i2sv_11 {
1267
+ min-height: 0;
1268
+ }
1269
+ ._DropZone_1i2sv_1:empty {
1270
+ min-height: var(--min-empty-height);
1271
+ }
1272
+ [data-puck-entry]:not([data-puck-dragging]) ._DropZone_1i2sv_1 {
1273
+ transition: min-height var(--resize-animation-ms) ease-in;
1274
+ }
1275
+ ._DropZone--isAreaSelected_1i2sv_24,
1276
+ ._DropZone--hoveringOverArea_1i2sv_25:not(._DropZone--isRootZone_1i2sv_25) {
1277
+ background: color-mix(in srgb, var(--puck-color-azure-09) 30%, transparent);
1278
+ outline: 2px dashed var(--puck-color-azure-08);
1279
+ }
1280
+ ._DropZone_1i2sv_1:empty {
1281
+ background: color-mix(in srgb, var(--puck-color-azure-09) 30%, transparent);
1282
+ outline: 2px dashed var(--puck-color-azure-08);
1283
+ }
1284
+ ._DropZone--isDestination_1i2sv_35 {
1285
+ outline: 2px dashed var(--puck-color-azure-04) !important;
1286
+ }
1287
+ ._DropZone--isDestination_1i2sv_35:not(._DropZone--isRootZone_1i2sv_25) {
1288
+ background: color-mix(in srgb, var(--puck-color-azure-09) 30%, transparent) !important;
1289
+ }
1290
+ ._DropZone-item_1i2sv_47 {
1291
+ position: relative;
1292
+ }
1293
+ ._DropZone-hitbox_1i2sv_51 {
1294
+ position: absolute;
1295
+ bottom: -12px;
1296
+ height: 24px;
1297
+ width: 100%;
1298
+ z-index: 1;
1299
+ }
1300
+ [data-puck-dragging] ._DropZone--isEnabled_1i2sv_59 {
1301
+ outline: 2px dashed var(--puck-color-azure-06);
1302
+ }
1303
+ ._DropZone_1i2sv_1 > *:not([data-puck-component]) {
1304
+ opacity: 0;
1305
+ }
1306
+ body:has(._DropZone--isAnimating_1i2sv_68:empty) [data-puck-overlay] {
1307
+ opacity: 0 !important;
1308
+ }
1309
+
1310
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/SidebarSection/styles.module.css/#css-module-data */
1311
+ ._SidebarSection_8boj8_1 {
1312
+ display: flex;
1313
+ position: relative;
1314
+ flex-direction: column;
1315
+ color: var(--puck-color-black);
1316
+ }
1317
+ ._SidebarSection_8boj8_1:last-of-type {
1318
+ flex-grow: 1;
1319
+ }
1320
+ ._SidebarSection-title_8boj8_12 {
1321
+ background: var(--puck-color-white);
1322
+ padding: 16px;
1323
+ border-bottom: 1px solid var(--puck-color-grey-09);
1324
+ border-top: 1px solid var(--puck-color-grey-09);
1325
+ overflow-x: auto;
1326
+ }
1327
+ ._SidebarSection--noBorderTop_8boj8_20 > ._SidebarSection-title_8boj8_12 {
1328
+ border-top: 0px;
1329
+ }
1330
+ ._SidebarSection-content_8boj8_24 {
1331
+ padding: 16px;
1332
+ }
1333
+ ._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24 {
1334
+ padding: 0px;
1335
+ }
1336
+ ._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24:last-child {
1337
+ padding-bottom: 4px;
1338
+ }
1339
+ ._SidebarSection_8boj8_1:last-of-type ._SidebarSection-content_8boj8_24 {
1340
+ border-bottom: none;
1341
+ flex-grow: 1;
1342
+ }
1343
+ ._SidebarSection-breadcrumbLabel_8boj8_41 {
1344
+ background: none;
1345
+ border: 0;
1346
+ border-radius: 2px;
1347
+ color: var(--puck-color-azure-04);
1348
+ cursor: pointer;
1349
+ font: inherit;
1350
+ flex-shrink: 0;
1351
+ padding: 0;
1352
+ transition: color 50ms ease-in;
1353
+ }
1354
+ ._SidebarSection-breadcrumbLabel_8boj8_41:focus-visible {
1355
+ outline: 2px solid var(--puck-color-azure-05);
1356
+ outline-offset: 2px;
1357
+ }
1358
+ @media (hover: hover) and (pointer: fine) {
1359
+ ._SidebarSection-breadcrumbLabel_8boj8_41:hover {
1360
+ color: var(--puck-color-azure-03);
1361
+ transition: none;
1362
+ }
1363
+ }
1364
+ ._SidebarSection-breadcrumbLabel_8boj8_41:active {
1365
+ color: var(--puck-color-azure-02);
1366
+ transition: none;
1367
+ }
1368
+ ._SidebarSection-breadcrumbs_8boj8_70 {
1369
+ align-items: center;
1370
+ display: flex;
1371
+ gap: 4px;
1372
+ }
1373
+ ._SidebarSection-breadcrumb_8boj8_41 {
1374
+ align-items: center;
1375
+ display: flex;
1376
+ gap: 4px;
1377
+ }
1378
+ ._SidebarSection-heading_8boj8_82 {
1379
+ padding-inline-end: 16px;
1380
+ }
1381
+ ._SidebarSection-loadingOverlay_8boj8_86 {
1382
+ background: var(--puck-color-white);
1383
+ display: flex;
1384
+ justify-content: center;
1385
+ align-items: center;
1386
+ height: 100%;
1387
+ width: 100%;
1388
+ top: 0;
1389
+ position: absolute;
1390
+ z-index: 1;
1391
+ pointer-events: all;
1392
+ box-sizing: border-box;
1393
+ opacity: 0.8;
1394
+ }
1395
+
1396
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/styles.module.css/#css-module-data */
1397
+ ._Puck_dnlfp_19 {
1398
+ --puck-space-px: 16px;
1399
+ font-family: var(--puck-font-family);
1400
+ overflow-x: hidden;
1401
+ }
1402
+ @media (min-width: 766px) {
1403
+ ._Puck_dnlfp_19 {
1404
+ overflow-x: auto;
1405
+ }
1406
+ }
1407
+ ._Puck-portal_dnlfp_31 {
1408
+ position: relative;
1409
+ z-index: 2;
1410
+ }
1411
+ ._PuckLayout-inner_dnlfp_38 {
1412
+ --puck-frame-width: auto;
1413
+ --puck-side-bar-width: 0px;
1414
+ display: grid;
1415
+ grid-template-areas: "header header header" "left editor right";
1416
+ grid-template-columns: 0 var(--puck-frame-width) 0;
1417
+ grid-template-rows: min-content auto;
1418
+ height: 100dvh;
1419
+ position: relative;
1420
+ z-index: 0;
1421
+ }
1422
+ ._PuckLayout--mounted_dnlfp_50 ._PuckLayout-inner_dnlfp_38 {
1423
+ --puck-side-bar-width: 186px;
1424
+ }
1425
+ ._PuckLayout--leftSideBarVisible_dnlfp_54 ._PuckLayout-inner_dnlfp_38 {
1426
+ grid-template-columns: var(--puck-side-bar-width) var(--puck-frame-width) 0;
1427
+ }
1428
+ ._PuckLayout--rightSideBarVisible_dnlfp_60 ._PuckLayout-inner_dnlfp_38 {
1429
+ grid-template-columns: 0 var(--puck-frame-width) var(--puck-side-bar-width);
1430
+ }
1431
+ ._PuckLayout--leftSideBarVisible_dnlfp_54._PuckLayout--rightSideBarVisible_dnlfp_60 ._PuckLayout-inner_dnlfp_38 {
1432
+ grid-template-columns: var(--puck-side-bar-width) var(--puck-frame-width) var(--puck-side-bar-width);
1433
+ }
1434
+ @media (min-width: 458px) {
1435
+ ._PuckLayout-mounted_dnlfp_74 ._PuckLayout-inner_dnlfp_38 {
1436
+ --puck-frame-width: minmax(266px, auto);
1437
+ }
1438
+ }
1439
+ @media (min-width: 638px) {
1440
+ ._PuckLayout_dnlfp_38 ._PuckLayout-inner_dnlfp_38 {
1441
+ --puck-side-bar-width: minmax(186px, 250px);
1442
+ }
1443
+ }
1444
+ @media (min-width: 766px) {
1445
+ ._PuckLayout_dnlfp_38 ._PuckLayout-inner_dnlfp_38 {
1446
+ --puck-frame-width: auto;
1447
+ }
1448
+ }
1449
+ @media (min-width: 990px) {
1450
+ ._PuckLayout_dnlfp_38 ._PuckLayout-inner_dnlfp_38 {
1451
+ --puck-side-bar-width: 256px;
1452
+ }
1453
+ }
1454
+ @media (min-width: 1198px) {
1455
+ ._PuckLayout_dnlfp_38 ._PuckLayout-inner_dnlfp_38 {
1456
+ --puck-side-bar-width: 274px;
1457
+ }
1458
+ }
1459
+ @media (min-width: 1398px) {
1460
+ ._PuckLayout_dnlfp_38 ._PuckLayout-inner_dnlfp_38 {
1461
+ --puck-side-bar-width: 290px;
1462
+ }
1463
+ }
1464
+ @media (min-width: 1598px) {
1465
+ ._PuckLayout_dnlfp_38 ._PuckLayout-inner_dnlfp_38 {
1466
+ --puck-side-bar-width: 320px;
1467
+ }
1468
+ }
1469
+ ._PuckLayout-leftSideBar_dnlfp_115 {
1470
+ background: var(--puck-color-grey-12);
1471
+ border-inline-end: 1px solid var(--puck-color-grey-09);
1472
+ display: flex;
1473
+ flex-direction: column;
1474
+ grid-area: left;
1475
+ overflow-y: auto;
1476
+ }
1477
+ ._PuckLayout-rightSideBar_dnlfp_124 {
1478
+ background: var(--puck-color-white);
1479
+ border-inline-start: 1px solid var(--puck-color-grey-09);
1480
+ display: flex;
1481
+ flex-direction: column;
1482
+ grid-area: right;
1483
+ overflow-y: auto;
1484
+ }
1485
+
1486
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Fields/styles.module.css/#css-module-data */
1487
+ ._PuckFields_10bh7_1 {
1488
+ position: relative;
1489
+ font-family: var(--puck-font-family);
1490
+ }
1491
+ ._PuckFields--isLoading_10bh7_6 {
1492
+ min-height: 48px;
1493
+ }
1494
+ ._PuckFields-loadingOverlay_10bh7_10 {
1495
+ background: var(--puck-color-white);
1496
+ display: flex;
1497
+ justify-content: flex-end;
1498
+ align-items: flex-start;
1499
+ height: 100%;
1500
+ width: 100%;
1501
+ top: 0px;
1502
+ position: absolute;
1503
+ z-index: 1;
1504
+ pointer-events: all;
1505
+ box-sizing: border-box;
1506
+ opacity: 0.8;
1507
+ }
1508
+ ._PuckFields-loadingOverlayInner_10bh7_25 {
1509
+ display: flex;
1510
+ padding: 16px;
1511
+ position: sticky;
1512
+ top: 0;
1513
+ }
1514
+ ._PuckFields-field_10bh7_32 * {
1515
+ box-sizing: border-box;
1516
+ }
1517
+ ._PuckFields--wrapFields_10bh7_36 ._PuckFields-field_10bh7_32 {
1518
+ color: var(--puck-color-grey-04);
1519
+ padding: 16px;
1520
+ padding-bottom: 12px;
1521
+ display: block;
1522
+ }
1523
+ ._PuckFields--wrapFields_10bh7_36 ._PuckFields-field_10bh7_32 + ._PuckFields-field_10bh7_32 {
1524
+ border-top: 1px solid var(--puck-color-grey-09);
1525
+ margin-top: 8px;
1526
+ }
1527
+
1528
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/ComponentList/styles.module.css/#css-module-data */
1529
+ ._ComponentList_1rrlt_1 {
1530
+ max-width: 100%;
1531
+ }
1532
+ ._ComponentList--isExpanded_1rrlt_5 + ._ComponentList_1rrlt_1 {
1533
+ margin-top: 12px;
1534
+ }
1535
+ ._ComponentList-content_1rrlt_9 {
1536
+ display: none;
1537
+ }
1538
+ ._ComponentList--isExpanded_1rrlt_5 > ._ComponentList-content_1rrlt_9 {
1539
+ display: block;
1540
+ }
1541
+ ._ComponentList-title_1rrlt_17 {
1542
+ background-color: transparent;
1543
+ border: 0;
1544
+ color: var(--puck-color-grey-05);
1545
+ cursor: pointer;
1546
+ display: flex;
1547
+ font: inherit;
1548
+ font-size: var(--puck-font-size-xxxs);
1549
+ list-style: none;
1550
+ margin-bottom: 6px;
1551
+ padding: 8px;
1552
+ text-transform: uppercase;
1553
+ transition: background-color 50ms ease-in, color 50ms ease-in;
1554
+ gap: 4px;
1555
+ border-radius: 4px;
1556
+ width: 100%;
1557
+ }
1558
+ ._ComponentList-title_1rrlt_17:focus-visible {
1559
+ outline: 2px solid var(--puck-color-azure-05);
1560
+ outline-offset: 2px;
1561
+ }
1562
+ @media (hover: hover) and (pointer: fine) {
1563
+ ._ComponentList-title_1rrlt_17:hover {
1564
+ background-color: var(--puck-color-azure-11);
1565
+ color: var(--puck-color-azure-04);
1566
+ transition: none;
1567
+ }
1568
+ }
1569
+ ._ComponentList-title_1rrlt_17:active {
1570
+ background-color: var(--puck-color-azure-10);
1571
+ transition: none;
1572
+ }
1573
+ ._ComponentList-titleIcon_1rrlt_53 {
1574
+ margin-inline-start: auto;
1575
+ }
1576
+
1577
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Preview/styles.module.css/#css-module-data */
1578
+ ._PuckPreview_z2rgu_1 {
1579
+ position: relative;
1580
+ height: 100%;
1581
+ }
1582
+ ._PuckPreview-frame_z2rgu_6 {
1583
+ border: none;
1584
+ height: 100%;
1585
+ width: 100%;
1586
+ }
1587
+
1588
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/LayerTree/styles.module.css/#css-module-data */
1589
+ ._LayerTree_7rx04_1 {
1590
+ color: var(--puck-color-grey-03);
1591
+ font-family: var(--puck-font-family);
1592
+ font-size: var(--puck-font-size-xxs);
1593
+ margin: 0;
1594
+ position: relative;
1595
+ list-style: none;
1596
+ padding: 0;
1597
+ }
1598
+ ._LayerTree-zoneTitle_7rx04_11 {
1599
+ color: var(--puck-color-grey-05);
1600
+ font-size: var(--puck-font-size-xxxs);
1601
+ text-transform: uppercase;
1602
+ }
1603
+ ._LayerTree-helper_7rx04_17 {
1604
+ text-align: center;
1605
+ color: var(--puck-color-grey-07);
1606
+ margin: 8px 4px;
1607
+ }
1608
+ ._Layer_7rx04_1 {
1609
+ position: relative;
1610
+ border: 1px solid transparent;
1611
+ border-radius: 4px;
1612
+ }
1613
+ ._Layer-inner_7rx04_29 {
1614
+ border: 1px solid transparent;
1615
+ border-radius: 4px;
1616
+ transition: color 50ms ease-in;
1617
+ }
1618
+ ._Layer--containsZone_7rx04_35 > ._Layer-inner_7rx04_29 {
1619
+ padding-inline-start: 0;
1620
+ }
1621
+ ._Layer-clickable_7rx04_39 {
1622
+ align-items: center;
1623
+ background: none;
1624
+ border: 0;
1625
+ border-radius: 4px;
1626
+ color: inherit;
1627
+ cursor: pointer;
1628
+ display: flex;
1629
+ font: inherit;
1630
+ padding-inline-start: 12px;
1631
+ padding-inline-end: 4px;
1632
+ width: 100%;
1633
+ }
1634
+ ._Layer-clickable_7rx04_39:focus-visible {
1635
+ outline: 2px solid var(--puck-color-azure-05);
1636
+ outline-offset: 2px;
1637
+ position: relative;
1638
+ z-index: 1;
1639
+ }
1640
+ @media (hover: hover) and (pointer: fine) {
1641
+ ._Layer_7rx04_1:not(._Layer--isSelected_7rx04_61) > ._Layer-inner_7rx04_29:hover {
1642
+ border-color: var(--puck-color-azure-10);
1643
+ background: var(--puck-color-azure-11);
1644
+ color: var(--puck-color-azure-04);
1645
+ transition: none;
1646
+ }
1647
+ }
1648
+ ._Layer--isSelected_7rx04_61 {
1649
+ border-color: var(--puck-color-azure-08);
1650
+ }
1651
+ ._Layer--isSelected_7rx04_61 > ._Layer-inner_7rx04_29 {
1652
+ background: var(--puck-color-azure-10);
1653
+ }
1654
+ ._Layer--isSelected_7rx04_61 > ._Layer-inner_7rx04_29 > ._Layer-clickable_7rx04_39 > ._Layer-chevron_7rx04_77,
1655
+ ._Layer--childIsSelected_7rx04_78 > ._Layer-inner_7rx04_29 > ._Layer-clickable_7rx04_39 > ._Layer-chevron_7rx04_77 {
1656
+ transform: scaleY(-1);
1657
+ }
1658
+ ._Layer-zones_7rx04_82 {
1659
+ display: none;
1660
+ margin-inline-start: 12px;
1661
+ }
1662
+ ._Layer--isSelected_7rx04_61 > ._Layer-zones_7rx04_82,
1663
+ ._Layer--childIsSelected_7rx04_78 > ._Layer-zones_7rx04_82 {
1664
+ display: block;
1665
+ }
1666
+ ._Layer-zones_7rx04_82 > ._LayerTree_7rx04_1 {
1667
+ margin-inline-start: 12px;
1668
+ }
1669
+ ._Layer-title_7rx04_96,
1670
+ ._LayerTree-zoneTitle_7rx04_11 {
1671
+ display: flex;
1672
+ gap: 8px;
1673
+ align-items: center;
1674
+ margin: 8px 4px;
1675
+ overflow-x: hidden;
1676
+ }
1677
+ ._Layer-name_7rx04_105 {
1678
+ overflow-x: hidden;
1679
+ text-overflow: ellipsis;
1680
+ white-space: nowrap;
1681
+ }
1682
+ ._Layer-icon_7rx04_111 {
1683
+ color: var(--puck-color-rose-07);
1684
+ margin-top: 4px;
1685
+ }
1686
+ ._Layer-zoneIcon_7rx04_116 {
1687
+ color: var(--puck-color-grey-08);
1688
+ margin-top: 4px;
1689
+ }
1690
+
1691
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/ViewportControls/styles.module.css/#css-module-data */
1692
+ ._ViewportControls_gejzr_1 {
1693
+ display: flex;
1694
+ background: var(--puck-color-grey-11);
1695
+ box-sizing: border-box;
1696
+ border-inline-start: 2px solid var(--puck-color-grey-11);
1697
+ justify-content: center;
1698
+ gap: 8px;
1699
+ min-width: 358px;
1700
+ padding-bottom: 16px;
1701
+ padding-inline-start: var(--puck-space-px);
1702
+ padding-inline-end: var(--puck-space-px);
1703
+ z-index: 1;
1704
+ }
1705
+ ._ViewportControls-divider_gejzr_15 {
1706
+ border-inline-end: 1px solid var(--puck-color-grey-09);
1707
+ margin-inline-start: 8px;
1708
+ margin-inline-end: 8px;
1709
+ }
1710
+ ._ViewportControls-zoomSelect_gejzr_21 {
1711
+ appearance: none;
1712
+ background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23c3c3c3'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
1713
+ background-size: 10px;
1714
+ background-position: calc(100% - 12px) calc(50% + 3px);
1715
+ background-repeat: no-repeat;
1716
+ border: 0;
1717
+ font-size: var(--puck-font-size-xxxs);
1718
+ padding: 0;
1719
+ width: 96px;
1720
+ }
1721
+ ._ViewportControls-zoomSelect_gejzr_21:dir(rtl) {
1722
+ background-position: 12px calc(50% + 3px);
1723
+ }
1724
+ ._ViewportButton--isActive_gejzr_38 ._ViewportButton-inner_gejzr_38 {
1725
+ color: var(--puck-color-azure-04);
1726
+ }
1727
+
1728
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Canvas/styles.module.css/#css-module-data */
1729
+ ._PuckCanvas_18jay_1 {
1730
+ background: var(--puck-color-grey-11);
1731
+ display: flex;
1732
+ grid-area: editor;
1733
+ flex-direction: column;
1734
+ padding: var(--puck-space-px);
1735
+ overflow: auto;
1736
+ }
1737
+ @media (min-width: 1198px) {
1738
+ ._PuckCanvas_18jay_1 {
1739
+ padding: calc(var(--puck-space-px) * 1.5);
1740
+ padding-top: var(--puck-space-px);
1741
+ }
1742
+ ._PuckCanvas_18jay_1:not(._PuckCanvas_18jay_1:has(._PuckCanvas-controls_18jay_16)) {
1743
+ padding-top: calc(var(--puck-space-px) * 1.5);
1744
+ }
1745
+ }
1746
+ ._PuckCanvas-inner_18jay_21 {
1747
+ display: flex;
1748
+ height: 100%;
1749
+ justify-content: center;
1750
+ min-width: 358px;
1751
+ position: relative;
1752
+ width: 100%;
1753
+ }
1754
+ ._PuckCanvas-root_18jay_30 {
1755
+ background: white;
1756
+ border: 1px solid var(--puck-color-grey-09);
1757
+ box-sizing: content-box;
1758
+ min-width: 321px;
1759
+ position: absolute;
1760
+ pointer-events: none;
1761
+ transform-origin: top;
1762
+ top: 0;
1763
+ bottom: 0;
1764
+ opacity: 0;
1765
+ }
1766
+ @media (min-width: 1198px) {
1767
+ ._PuckCanvas-root_18jay_30 {
1768
+ min-width: unset;
1769
+ }
1770
+ }
1771
+ @media (prefers-reduced-motion: reduce) {
1772
+ ._PuckCanvas-root_18jay_30 {
1773
+ transition: none !important;
1774
+ }
1775
+ }
1776
+ ._PuckCanvas--ready_18jay_55 ._PuckCanvas-root_18jay_30 {
1777
+ pointer-events: unset;
1778
+ opacity: 1;
1779
+ }
1780
+ ._PuckCanvas-loader_18jay_60 {
1781
+ align-items: center;
1782
+ color: var(--puck-color-grey-06);
1783
+ display: flex;
1784
+ height: 100%;
1785
+ justify-content: center;
1786
+ transition: opacity 250ms ease-out;
1787
+ opacity: 0;
1788
+ }
1789
+ ._PuckCanvas--showLoader_18jay_70 ._PuckCanvas-loader_18jay_60 {
1790
+ opacity: 1;
1791
+ }
1792
+ ._PuckCanvas--showLoader_18jay_70._PuckCanvas--ready_18jay_55 ._PuckCanvas-loader_18jay_60 {
1793
+ opacity: 0;
1794
+ height: 0;
1795
+ transition: none;
1796
+ }
1797
+
1798
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/MenuBar/styles.module.css/#css-module-data */
1799
+ ._MenuBar_8pf8c_1 {
1800
+ background-color: var(--puck-color-white);
1801
+ border-bottom: 1px solid var(--puck-color-grey-09);
1802
+ display: none;
1803
+ left: 0;
1804
+ margin-top: 1px;
1805
+ padding: 8px 16px;
1806
+ position: absolute;
1807
+ right: 0;
1808
+ top: 100%;
1809
+ z-index: 2;
1810
+ }
1811
+ ._MenuBar--menuOpen_8pf8c_14 {
1812
+ display: block;
1813
+ }
1814
+ @media (min-width: 638px) {
1815
+ ._MenuBar_8pf8c_1 {
1816
+ border: none;
1817
+ display: block;
1818
+ margin-top: 0;
1819
+ overflow-y: visible;
1820
+ padding: 0;
1821
+ position: static;
1822
+ }
1823
+ }
1824
+ ._MenuBar-inner_8pf8c_29 {
1825
+ align-items: center;
1826
+ display: flex;
1827
+ flex-wrap: wrap;
1828
+ gap: 8px 16px;
1829
+ justify-content: flex-end;
1830
+ }
1831
+ @media (min-width: 638px) {
1832
+ ._MenuBar-inner_8pf8c_29 {
1833
+ display: flex;
1834
+ flex-direction: row;
1835
+ flex-wrap: nowrap;
1836
+ }
1837
+ }
1838
+ ._MenuBar-history_8pf8c_45 {
1839
+ display: flex;
1840
+ }
1841
+
1842
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Header/styles.module.css/#css-module-data */
1843
+ ._PuckHeader_15xnq_1 {
1844
+ background: var(--puck-color-white);
1845
+ border-bottom: 1px solid var(--puck-color-grey-09);
1846
+ color: var(--puck-color-black);
1847
+ grid-area: header;
1848
+ position: relative;
1849
+ max-width: 100vw;
1850
+ }
1851
+ ._PuckHeader-inner_15xnq_10 {
1852
+ align-items: end;
1853
+ display: grid;
1854
+ gap: var(--puck-space-px);
1855
+ grid-template-areas: "left middle right";
1856
+ grid-template-columns: 1fr auto 1fr;
1857
+ grid-template-rows: auto;
1858
+ padding: var(--puck-space-px);
1859
+ }
1860
+ ._PuckHeader-toggle_15xnq_20 {
1861
+ color: var(--puck-color-grey-05);
1862
+ display: flex;
1863
+ margin-inline-start: -4px;
1864
+ padding-top: 2px;
1865
+ }
1866
+ ._PuckHeader--rightSideBarVisible_15xnq_27 ._PuckHeader-rightSideBarToggle_15xnq_27,
1867
+ ._PuckHeader--leftSideBarVisible_15xnq_28 ._PuckHeader-leftSideBarToggle_15xnq_28 {
1868
+ color: var(--puck-color-black);
1869
+ }
1870
+ ._PuckHeader-title_15xnq_32 {
1871
+ align-self: center;
1872
+ }
1873
+ ._PuckHeader-path_15xnq_36 {
1874
+ font-family: var(--puck-font-family-monospaced);
1875
+ font-size: var(--puck-font-size-xxs);
1876
+ font-weight: normal;
1877
+ word-break: break-all;
1878
+ }
1879
+ ._PuckHeader-tools_15xnq_43 {
1880
+ display: flex;
1881
+ gap: 16px;
1882
+ justify-content: flex-end;
1883
+ }
1884
+ ._PuckHeader-menuButton_15xnq_49 {
1885
+ color: var(--puck-color-grey-05);
1886
+ margin-inline-start: -4px;
1887
+ }
1888
+ ._PuckHeader--menuOpen_15xnq_54 ._PuckHeader-menuButton_15xnq_49 {
1889
+ color: var(--puck-color-black);
1890
+ }
1891
+ @media (min-width: 638px) {
1892
+ ._PuckHeader-menuButton_15xnq_49 {
1893
+ display: none;
1894
+ }
1895
+ }