@measured/puck 0.20.0-canary.755737e8 → 0.20.0-canary.7ccbeece

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