@measured/puck 0.20.0-canary.68dd73b8 → 0.20.0-canary.6aefde61

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,2231 @@
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/Puck/components/Fields/styles.module.css/#css-module-data */
1345
+ ._PuckFields_10bh7_1 {
1346
+ position: relative;
1347
+ font-family: var(--puck-font-family);
1348
+ }
1349
+ ._PuckFields--isLoading_10bh7_6 {
1350
+ min-height: 48px;
1351
+ }
1352
+ ._PuckFields-loadingOverlay_10bh7_10 {
1353
+ background: var(--puck-color-white);
1354
+ display: flex;
1355
+ justify-content: flex-end;
1356
+ align-items: flex-start;
1357
+ height: 100%;
1358
+ width: 100%;
1359
+ top: 0px;
1360
+ position: absolute;
1361
+ z-index: 1;
1362
+ pointer-events: all;
1363
+ box-sizing: border-box;
1364
+ opacity: 0.8;
1365
+ }
1366
+ ._PuckFields-loadingOverlayInner_10bh7_25 {
1367
+ display: flex;
1368
+ padding: 16px;
1369
+ position: sticky;
1370
+ top: 0;
1371
+ }
1372
+ ._PuckFields-field_10bh7_32 * {
1373
+ box-sizing: border-box;
1374
+ }
1375
+ ._PuckFields--wrapFields_10bh7_36 ._PuckFields-field_10bh7_32 {
1376
+ color: var(--puck-color-grey-04);
1377
+ padding: 16px;
1378
+ padding-bottom: 12px;
1379
+ display: block;
1380
+ }
1381
+ ._PuckFields--wrapFields_10bh7_36 ._PuckFields-field_10bh7_32 + ._PuckFields-field_10bh7_32 {
1382
+ border-top: 1px solid var(--puck-color-grey-09);
1383
+ margin-top: 8px;
1384
+ }
1385
+
1386
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/ComponentList/styles.module.css/#css-module-data */
1387
+ ._ComponentList_1rrlt_1 {
1388
+ max-width: 100%;
1389
+ }
1390
+ ._ComponentList--isExpanded_1rrlt_5 + ._ComponentList_1rrlt_1 {
1391
+ margin-top: 12px;
1392
+ }
1393
+ ._ComponentList-content_1rrlt_9 {
1394
+ display: none;
1395
+ }
1396
+ ._ComponentList--isExpanded_1rrlt_5 > ._ComponentList-content_1rrlt_9 {
1397
+ display: block;
1398
+ }
1399
+ ._ComponentList-title_1rrlt_17 {
1400
+ background-color: transparent;
1401
+ border: 0;
1402
+ color: var(--puck-color-grey-05);
1403
+ cursor: pointer;
1404
+ display: flex;
1405
+ font: inherit;
1406
+ font-size: var(--puck-font-size-xxxs);
1407
+ list-style: none;
1408
+ margin-bottom: 6px;
1409
+ padding: 8px;
1410
+ text-transform: uppercase;
1411
+ transition: background-color 50ms ease-in, color 50ms ease-in;
1412
+ gap: 4px;
1413
+ border-radius: 4px;
1414
+ width: 100%;
1415
+ }
1416
+ ._ComponentList-title_1rrlt_17:focus-visible {
1417
+ outline: 2px solid var(--puck-color-azure-05);
1418
+ outline-offset: 2px;
1419
+ }
1420
+ @media (hover: hover) and (pointer: fine) {
1421
+ ._ComponentList-title_1rrlt_17:hover {
1422
+ background-color: var(--puck-color-azure-11);
1423
+ color: var(--puck-color-azure-04);
1424
+ transition: none;
1425
+ }
1426
+ }
1427
+ ._ComponentList-title_1rrlt_17:active {
1428
+ background-color: var(--puck-color-azure-10);
1429
+ transition: none;
1430
+ }
1431
+ ._ComponentList-titleIcon_1rrlt_53 {
1432
+ margin-inline-start: auto;
1433
+ }
1434
+
1435
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Components/styles.module.css/#css-module-data */
1436
+ ._Components_uwdh8_1 {
1437
+ padding: 16px;
1438
+ }
1439
+
1440
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Preview/styles.module.css/#css-module-data */
1441
+ ._PuckPreview_z2rgu_1 {
1442
+ position: relative;
1443
+ height: 100%;
1444
+ }
1445
+ ._PuckPreview-frame_z2rgu_6 {
1446
+ border: none;
1447
+ height: 100%;
1448
+ width: 100%;
1449
+ }
1450
+
1451
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/LayerTree/styles.module.css/#css-module-data */
1452
+ ._LayerTree_7rx04_1 {
1453
+ color: var(--puck-color-grey-03);
1454
+ font-family: var(--puck-font-family);
1455
+ font-size: var(--puck-font-size-xxs);
1456
+ margin: 0;
1457
+ position: relative;
1458
+ list-style: none;
1459
+ padding: 0;
1460
+ }
1461
+ ._LayerTree-zoneTitle_7rx04_11 {
1462
+ color: var(--puck-color-grey-05);
1463
+ font-size: var(--puck-font-size-xxxs);
1464
+ text-transform: uppercase;
1465
+ }
1466
+ ._LayerTree-helper_7rx04_17 {
1467
+ text-align: center;
1468
+ color: var(--puck-color-grey-07);
1469
+ margin: 8px 4px;
1470
+ }
1471
+ ._Layer_7rx04_1 {
1472
+ position: relative;
1473
+ border: 1px solid transparent;
1474
+ border-radius: 4px;
1475
+ }
1476
+ ._Layer-inner_7rx04_29 {
1477
+ border: 1px solid transparent;
1478
+ border-radius: 4px;
1479
+ transition: color 50ms ease-in;
1480
+ }
1481
+ ._Layer--containsZone_7rx04_35 > ._Layer-inner_7rx04_29 {
1482
+ padding-inline-start: 0;
1483
+ }
1484
+ ._Layer-clickable_7rx04_39 {
1485
+ align-items: center;
1486
+ background: none;
1487
+ border: 0;
1488
+ border-radius: 4px;
1489
+ color: inherit;
1490
+ cursor: pointer;
1491
+ display: flex;
1492
+ font: inherit;
1493
+ padding-inline-start: 12px;
1494
+ padding-inline-end: 4px;
1495
+ width: 100%;
1496
+ }
1497
+ ._Layer-clickable_7rx04_39:focus-visible {
1498
+ outline: 2px solid var(--puck-color-azure-05);
1499
+ outline-offset: 2px;
1500
+ position: relative;
1501
+ z-index: 1;
1502
+ }
1503
+ @media (hover: hover) and (pointer: fine) {
1504
+ ._Layer_7rx04_1:not(._Layer--isSelected_7rx04_61) > ._Layer-inner_7rx04_29:hover {
1505
+ border-color: var(--puck-color-azure-10);
1506
+ background: var(--puck-color-azure-11);
1507
+ color: var(--puck-color-azure-04);
1508
+ transition: none;
1509
+ }
1510
+ }
1511
+ ._Layer--isSelected_7rx04_61 {
1512
+ border-color: var(--puck-color-azure-08);
1513
+ }
1514
+ ._Layer--isSelected_7rx04_61 > ._Layer-inner_7rx04_29 {
1515
+ background: var(--puck-color-azure-10);
1516
+ }
1517
+ ._Layer--isSelected_7rx04_61 > ._Layer-inner_7rx04_29 > ._Layer-clickable_7rx04_39 > ._Layer-chevron_7rx04_77,
1518
+ ._Layer--childIsSelected_7rx04_78 > ._Layer-inner_7rx04_29 > ._Layer-clickable_7rx04_39 > ._Layer-chevron_7rx04_77 {
1519
+ transform: scaleY(-1);
1520
+ }
1521
+ ._Layer-zones_7rx04_82 {
1522
+ display: none;
1523
+ margin-inline-start: 12px;
1524
+ }
1525
+ ._Layer--isSelected_7rx04_61 > ._Layer-zones_7rx04_82,
1526
+ ._Layer--childIsSelected_7rx04_78 > ._Layer-zones_7rx04_82 {
1527
+ display: block;
1528
+ }
1529
+ ._Layer-zones_7rx04_82 > ._LayerTree_7rx04_1 {
1530
+ margin-inline-start: 12px;
1531
+ }
1532
+ ._Layer-title_7rx04_96,
1533
+ ._LayerTree-zoneTitle_7rx04_11 {
1534
+ display: flex;
1535
+ gap: 8px;
1536
+ align-items: center;
1537
+ margin: 8px 4px;
1538
+ overflow-x: hidden;
1539
+ }
1540
+ ._Layer-name_7rx04_105 {
1541
+ overflow-x: hidden;
1542
+ text-overflow: ellipsis;
1543
+ white-space: nowrap;
1544
+ }
1545
+ ._Layer-icon_7rx04_111 {
1546
+ color: var(--puck-color-rose-07);
1547
+ margin-top: 4px;
1548
+ }
1549
+ ._Layer-zoneIcon_7rx04_116 {
1550
+ color: var(--puck-color-grey-08);
1551
+ margin-top: 4px;
1552
+ }
1553
+
1554
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Outline/styles.module.css/#css-module-data */
1555
+ ._Outline_1rrni_1 {
1556
+ padding: 16px;
1557
+ }
1558
+
1559
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Layout/styles.module.css/#css-module-data */
1560
+ ._Puck_15wj5_19 {
1561
+ --puck-space-px: 16px;
1562
+ font-family: var(--puck-font-family);
1563
+ overflow-x: hidden;
1564
+ }
1565
+ @media (min-width: 766px) {
1566
+ ._Puck_15wj5_19 {
1567
+ overflow-x: auto;
1568
+ }
1569
+ }
1570
+ ._Puck-portal_15wj5_31 {
1571
+ position: relative;
1572
+ z-index: 2;
1573
+ }
1574
+ ._PuckLayout-inner_15wj5_36 {
1575
+ --puck-frame-width: auto;
1576
+ --puck-side-nav-width: min-content;
1577
+ --puck-side-bar-width: 0px;
1578
+ --puck-left-side-bar-width: var( --puck-user-left-side-bar-width, var(--puck-side-bar-width) );
1579
+ --puck-right-side-bar-width: var( --puck-user-right-side-bar-width, var(--puck-side-bar-width) );
1580
+ display: grid;
1581
+ grid-template-areas: "header" "editor" "left" "right" "sidenav";
1582
+ grid-template-columns: var(--puck-frame-width);
1583
+ grid-template-rows: min-content auto 0 0 var(--puck-side-nav-width);
1584
+ height: 100dvh;
1585
+ position: relative;
1586
+ transition: grid-template-rows 150ms ease-in;
1587
+ z-index: 0;
1588
+ overflow: hidden;
1589
+ }
1590
+ @media (min-width: 638px) {
1591
+ ._PuckLayout-inner_15wj5_36 {
1592
+ --puck-side-nav-width: 67.5px;
1593
+ grid-template-areas: "header header header header" "sidenav left editor right";
1594
+ grid-template-columns: var(--puck-side-nav-width) 0 var(--puck-frame-width) 0;
1595
+ grid-template-rows: min-content auto;
1596
+ }
1597
+ }
1598
+ ._PuckLayout--mounted_15wj5_68 ._PuckLayout-inner_15wj5_36 {
1599
+ --puck-side-bar-width: 186px;
1600
+ }
1601
+ ._PuckLayout--leftSideBarVisible_15wj5_72 ._PuckLayout-inner_15wj5_36 {
1602
+ grid-template-rows: 0 auto 30% 0 var(--puck-side-nav-width);
1603
+ }
1604
+ ._PuckLayout--leftSideBarVisible_15wj5_72._PuckLayout--isExpanded_15wj5_77 ._PuckLayout-inner_15wj5_36 {
1605
+ grid-template-rows: 0 auto 55% 0 var(--puck-side-nav-width);
1606
+ }
1607
+ @media (min-width: 638px) {
1608
+ ._PuckLayout--leftSideBarVisible_15wj5_72 ._PuckLayout-inner_15wj5_36 {
1609
+ grid-template-columns: var(--puck-side-nav-width) var(--puck-left-side-bar-width) var( --puck-frame-width ) 0;
1610
+ grid-template-rows: min-content auto;
1611
+ }
1612
+ }
1613
+ @media (min-width: 638px) {
1614
+ ._PuckLayout--rightSideBarVisible_15wj5_94 ._PuckLayout-inner_15wj5_36 {
1615
+ grid-template-columns: var(--puck-side-nav-width) 0 var(--puck-frame-width) var(--puck-right-side-bar-width);
1616
+ }
1617
+ }
1618
+ @media (min-width: 638px) {
1619
+ ._PuckLayout--leftSideBarVisible_15wj5_72._PuckLayout--rightSideBarVisible_15wj5_94 ._PuckLayout-inner_15wj5_36 {
1620
+ grid-template-columns: var(--puck-side-nav-width) var(--puck-left-side-bar-width) var( --puck-frame-width ) var(--puck-right-side-bar-width);
1621
+ }
1622
+ }
1623
+ @media (min-width: 458px) {
1624
+ ._PuckLayout-mounted_15wj5_113 ._PuckLayout-inner_15wj5_36 {
1625
+ --puck-frame-width: minmax(266px, auto);
1626
+ }
1627
+ }
1628
+ @media (min-width: 638px) {
1629
+ ._PuckLayout_15wj5_36 ._PuckLayout-inner_15wj5_36 {
1630
+ --puck-side-bar-width: minmax(186px, 250px);
1631
+ }
1632
+ }
1633
+ @media (min-width: 766px) {
1634
+ ._PuckLayout_15wj5_36 ._PuckLayout-inner_15wj5_36 {
1635
+ --puck-frame-width: auto;
1636
+ }
1637
+ }
1638
+ @media (min-width: 990px) {
1639
+ ._PuckLayout_15wj5_36 ._PuckLayout-inner_15wj5_36 {
1640
+ --puck-side-bar-width: 256px;
1641
+ }
1642
+ }
1643
+ @media (min-width: 1198px) {
1644
+ ._PuckLayout_15wj5_36 ._PuckLayout-inner_15wj5_36 {
1645
+ --puck-side-bar-width: 274px;
1646
+ }
1647
+ }
1648
+ @media (min-width: 1398px) {
1649
+ ._PuckLayout_15wj5_36 ._PuckLayout-inner_15wj5_36 {
1650
+ --puck-side-bar-width: 290px;
1651
+ }
1652
+ }
1653
+ @media (min-width: 1598px) {
1654
+ ._PuckLayout_15wj5_36 ._PuckLayout-inner_15wj5_36 {
1655
+ --puck-side-bar-width: 320px;
1656
+ }
1657
+ }
1658
+ ._PuckLayout-nav_15wj5_154 {
1659
+ border-top: 1px solid var(--puck-color-grey-09);
1660
+ background-color: var(--puck-color-grey-12);
1661
+ grid-area: sidenav;
1662
+ }
1663
+ @media (min-width: 638px) {
1664
+ ._PuckLayout-nav_15wj5_154 {
1665
+ border-top: 0;
1666
+ border-right: 1px solid var(--puck-color-grey-09);
1667
+ }
1668
+ }
1669
+ ._PuckLayout-header_15wj5_167 {
1670
+ grid-area: header;
1671
+ }
1672
+ ._PuckLayout--leftSideBarVisible_15wj5_72 ._PuckLayout-header_15wj5_167 {
1673
+ overflow: hidden;
1674
+ }
1675
+ @media (min-width: 638px) {
1676
+ ._PuckLayout--leftSideBarVisible_15wj5_72 ._PuckLayout-header_15wj5_167 {
1677
+ overflow: auto;
1678
+ }
1679
+ }
1680
+ ._PuckPluginTab_15wj5_181 {
1681
+ display: none;
1682
+ flex-grow: 1;
1683
+ }
1684
+ ._PuckPluginTab--visible_15wj5_186 {
1685
+ display: flex;
1686
+ flex-direction: column;
1687
+ }
1688
+ ._PuckPluginTab-body_15wj5_191 {
1689
+ flex-grow: 1;
1690
+ }
1691
+
1692
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/MenuBar/styles.module.css/#css-module-data */
1693
+ ._MenuBar_8pf8c_1 {
1694
+ background-color: var(--puck-color-white);
1695
+ border-bottom: 1px solid var(--puck-color-grey-09);
1696
+ display: none;
1697
+ left: 0;
1698
+ margin-top: 1px;
1699
+ padding: 8px 16px;
1700
+ position: absolute;
1701
+ right: 0;
1702
+ top: 100%;
1703
+ z-index: 2;
1704
+ }
1705
+ ._MenuBar--menuOpen_8pf8c_14 {
1706
+ display: block;
1707
+ }
1708
+ @media (min-width: 638px) {
1709
+ ._MenuBar_8pf8c_1 {
1710
+ border: none;
1711
+ display: block;
1712
+ margin-top: 0;
1713
+ overflow-y: visible;
1714
+ padding: 0;
1715
+ position: static;
1716
+ }
1717
+ }
1718
+ ._MenuBar-inner_8pf8c_29 {
1719
+ align-items: center;
1720
+ display: flex;
1721
+ flex-wrap: wrap;
1722
+ gap: 8px 16px;
1723
+ justify-content: flex-end;
1724
+ }
1725
+ @media (min-width: 638px) {
1726
+ ._MenuBar-inner_8pf8c_29 {
1727
+ display: flex;
1728
+ flex-direction: row;
1729
+ flex-wrap: nowrap;
1730
+ }
1731
+ }
1732
+ ._MenuBar-history_8pf8c_45 {
1733
+ display: flex;
1734
+ }
1735
+
1736
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Header/styles.module.css/#css-module-data */
1737
+ ._PuckHeader_1bhmt_1 {
1738
+ background: var(--puck-color-white);
1739
+ border-bottom: 1px solid var(--puck-color-grey-09);
1740
+ color: var(--puck-color-black);
1741
+ grid-area: header;
1742
+ position: relative;
1743
+ max-width: 100vw;
1744
+ }
1745
+ @media (min-width: 638px) {
1746
+ ._PuckHeader_1bhmt_1 {
1747
+ padding-left: 67px;
1748
+ }
1749
+ }
1750
+ ._PuckHeader-inner_1bhmt_16 {
1751
+ align-items: end;
1752
+ display: grid;
1753
+ gap: var(--puck-space-px);
1754
+ grid-template-areas: "left middle right";
1755
+ grid-template-columns: 1fr auto 1fr;
1756
+ grid-template-rows: auto;
1757
+ padding: var(--puck-space-px);
1758
+ }
1759
+ @media (min-width: 638px) {
1760
+ ._PuckHeader-inner_1bhmt_16 {
1761
+ border-left: 1px solid var(--puck-color-grey-09);
1762
+ }
1763
+ }
1764
+ ._PuckHeader-toggle_1bhmt_32 {
1765
+ color: var(--puck-color-grey-05);
1766
+ display: flex;
1767
+ margin-inline-start: -4px;
1768
+ padding-top: 2px;
1769
+ }
1770
+ ._PuckHeader--rightSideBarVisible_1bhmt_39 ._PuckHeader-rightSideBarToggle_1bhmt_39,
1771
+ ._PuckHeader--leftSideBarVisible_1bhmt_40 ._PuckHeader-leftSideBarToggle_1bhmt_40 {
1772
+ color: var(--puck-color-black);
1773
+ }
1774
+ ._PuckHeader-rightSideBarToggle_1bhmt_39,
1775
+ ._PuckHeader-leftSideBarToggle_1bhmt_40 {
1776
+ display: none;
1777
+ }
1778
+ @media (min-width: 638px) {
1779
+ ._PuckHeader-rightSideBarToggle_1bhmt_39,
1780
+ ._PuckHeader-leftSideBarToggle_1bhmt_40 {
1781
+ display: block;
1782
+ }
1783
+ }
1784
+ ._PuckHeader-title_1bhmt_56 {
1785
+ align-self: center;
1786
+ }
1787
+ ._PuckHeader-path_1bhmt_60 {
1788
+ font-family: var(--puck-font-family-monospaced);
1789
+ font-size: var(--puck-font-size-xxs);
1790
+ font-weight: normal;
1791
+ word-break: break-all;
1792
+ }
1793
+ ._PuckHeader-tools_1bhmt_67 {
1794
+ display: flex;
1795
+ gap: 16px;
1796
+ justify-content: flex-end;
1797
+ }
1798
+ ._PuckHeader-menuButton_1bhmt_73 {
1799
+ color: var(--puck-color-grey-05);
1800
+ margin-inline-start: -4px;
1801
+ }
1802
+ ._PuckHeader--menuOpen_1bhmt_78 ._PuckHeader-menuButton_1bhmt_73 {
1803
+ color: var(--puck-color-black);
1804
+ }
1805
+ @media (min-width: 638px) {
1806
+ ._PuckHeader-menuButton_1bhmt_73 {
1807
+ display: none;
1808
+ }
1809
+ }
1810
+
1811
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/SidebarSection/styles.module.css/#css-module-data */
1812
+ ._SidebarSection_8boj8_1 {
1813
+ display: flex;
1814
+ position: relative;
1815
+ flex-direction: column;
1816
+ color: var(--puck-color-black);
1817
+ }
1818
+ ._SidebarSection_8boj8_1:last-of-type {
1819
+ flex-grow: 1;
1820
+ }
1821
+ ._SidebarSection-title_8boj8_12 {
1822
+ background: var(--puck-color-white);
1823
+ padding: 16px;
1824
+ border-bottom: 1px solid var(--puck-color-grey-09);
1825
+ border-top: 1px solid var(--puck-color-grey-09);
1826
+ overflow-x: auto;
1827
+ }
1828
+ ._SidebarSection--noBorderTop_8boj8_20 > ._SidebarSection-title_8boj8_12 {
1829
+ border-top: 0px;
1830
+ }
1831
+ ._SidebarSection-content_8boj8_24 {
1832
+ padding: 16px;
1833
+ }
1834
+ ._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24 {
1835
+ padding: 0px;
1836
+ }
1837
+ ._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24:last-child {
1838
+ padding-bottom: 4px;
1839
+ }
1840
+ ._SidebarSection_8boj8_1:last-of-type ._SidebarSection-content_8boj8_24 {
1841
+ border-bottom: none;
1842
+ flex-grow: 1;
1843
+ }
1844
+ ._SidebarSection-breadcrumbLabel_8boj8_41 {
1845
+ background: none;
1846
+ border: 0;
1847
+ border-radius: 2px;
1848
+ color: var(--puck-color-azure-04);
1849
+ cursor: pointer;
1850
+ font: inherit;
1851
+ flex-shrink: 0;
1852
+ padding: 0;
1853
+ transition: color 50ms ease-in;
1854
+ }
1855
+ ._SidebarSection-breadcrumbLabel_8boj8_41:focus-visible {
1856
+ outline: 2px solid var(--puck-color-azure-05);
1857
+ outline-offset: 2px;
1858
+ }
1859
+ @media (hover: hover) and (pointer: fine) {
1860
+ ._SidebarSection-breadcrumbLabel_8boj8_41:hover {
1861
+ color: var(--puck-color-azure-03);
1862
+ transition: none;
1863
+ }
1864
+ }
1865
+ ._SidebarSection-breadcrumbLabel_8boj8_41:active {
1866
+ color: var(--puck-color-azure-02);
1867
+ transition: none;
1868
+ }
1869
+ ._SidebarSection-breadcrumbs_8boj8_70 {
1870
+ align-items: center;
1871
+ display: flex;
1872
+ gap: 4px;
1873
+ }
1874
+ ._SidebarSection-breadcrumb_8boj8_41 {
1875
+ align-items: center;
1876
+ display: flex;
1877
+ gap: 4px;
1878
+ }
1879
+ ._SidebarSection-heading_8boj8_82 {
1880
+ padding-inline-end: 16px;
1881
+ }
1882
+ ._SidebarSection-loadingOverlay_8boj8_86 {
1883
+ background: var(--puck-color-white);
1884
+ display: flex;
1885
+ justify-content: center;
1886
+ align-items: center;
1887
+ height: 100%;
1888
+ width: 100%;
1889
+ top: 0;
1890
+ position: absolute;
1891
+ z-index: 1;
1892
+ pointer-events: all;
1893
+ box-sizing: border-box;
1894
+ opacity: 0.8;
1895
+ }
1896
+
1897
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/ViewportControls/styles.module.css/#css-module-data */
1898
+ ._ViewportControls_gejzr_1 {
1899
+ display: flex;
1900
+ background: var(--puck-color-grey-11);
1901
+ box-sizing: border-box;
1902
+ border-inline-start: 2px solid var(--puck-color-grey-11);
1903
+ justify-content: center;
1904
+ gap: 8px;
1905
+ min-width: 358px;
1906
+ padding-bottom: 16px;
1907
+ padding-inline-start: var(--puck-space-px);
1908
+ padding-inline-end: var(--puck-space-px);
1909
+ z-index: 1;
1910
+ }
1911
+ ._ViewportControls-divider_gejzr_15 {
1912
+ border-inline-end: 1px solid var(--puck-color-grey-09);
1913
+ margin-inline-start: 8px;
1914
+ margin-inline-end: 8px;
1915
+ }
1916
+ ._ViewportControls-zoomSelect_gejzr_21 {
1917
+ appearance: none;
1918
+ 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;
1919
+ background-size: 10px;
1920
+ background-position: calc(100% - 12px) calc(50% + 3px);
1921
+ background-repeat: no-repeat;
1922
+ border: 0;
1923
+ font-size: var(--puck-font-size-xxxs);
1924
+ padding: 0;
1925
+ width: 96px;
1926
+ }
1927
+ ._ViewportControls-zoomSelect_gejzr_21:dir(rtl) {
1928
+ background-position: 12px calc(50% + 3px);
1929
+ }
1930
+ ._ViewportButton--isActive_gejzr_38 ._ViewportButton-inner_gejzr_38 {
1931
+ color: var(--puck-color-azure-04);
1932
+ }
1933
+
1934
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Canvas/styles.module.css/#css-module-data */
1935
+ ._PuckCanvas_18jay_1 {
1936
+ background: var(--puck-color-grey-11);
1937
+ display: flex;
1938
+ grid-area: editor;
1939
+ flex-direction: column;
1940
+ padding: var(--puck-space-px);
1941
+ overflow: auto;
1942
+ }
1943
+ @media (min-width: 1198px) {
1944
+ ._PuckCanvas_18jay_1 {
1945
+ padding: calc(var(--puck-space-px) * 1.5);
1946
+ padding-top: var(--puck-space-px);
1947
+ }
1948
+ ._PuckCanvas_18jay_1:not(._PuckCanvas_18jay_1:has(._PuckCanvas-controls_18jay_16)) {
1949
+ padding-top: calc(var(--puck-space-px) * 1.5);
1950
+ }
1951
+ }
1952
+ ._PuckCanvas-inner_18jay_21 {
1953
+ display: flex;
1954
+ height: 100%;
1955
+ justify-content: center;
1956
+ min-width: 358px;
1957
+ position: relative;
1958
+ width: 100%;
1959
+ }
1960
+ ._PuckCanvas-root_18jay_30 {
1961
+ background: white;
1962
+ border: 1px solid var(--puck-color-grey-09);
1963
+ box-sizing: content-box;
1964
+ min-width: 321px;
1965
+ position: absolute;
1966
+ pointer-events: none;
1967
+ transform-origin: top;
1968
+ top: 0;
1969
+ bottom: 0;
1970
+ opacity: 0;
1971
+ }
1972
+ @media (min-width: 1198px) {
1973
+ ._PuckCanvas-root_18jay_30 {
1974
+ min-width: unset;
1975
+ }
1976
+ }
1977
+ @media (prefers-reduced-motion: reduce) {
1978
+ ._PuckCanvas-root_18jay_30 {
1979
+ transition: none !important;
1980
+ }
1981
+ }
1982
+ ._PuckCanvas--ready_18jay_55 ._PuckCanvas-root_18jay_30 {
1983
+ pointer-events: unset;
1984
+ opacity: 1;
1985
+ }
1986
+ ._PuckCanvas-loader_18jay_60 {
1987
+ align-items: center;
1988
+ color: var(--puck-color-grey-06);
1989
+ display: flex;
1990
+ height: 100%;
1991
+ justify-content: center;
1992
+ transition: opacity 250ms ease-out;
1993
+ opacity: 0;
1994
+ }
1995
+ ._PuckCanvas--showLoader_18jay_70 ._PuckCanvas-loader_18jay_60 {
1996
+ opacity: 1;
1997
+ }
1998
+ ._PuckCanvas--showLoader_18jay_70._PuckCanvas--ready_18jay_55 ._PuckCanvas-loader_18jay_60 {
1999
+ opacity: 0;
2000
+ height: 0;
2001
+ transition: none;
2002
+ }
2003
+
2004
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/ResizeHandle/styles.module.css/#css-module-data */
2005
+ @media (min-width: 766px) {
2006
+ ._ResizeHandle_144bf_2 {
2007
+ position: absolute;
2008
+ width: 5px;
2009
+ height: 100%;
2010
+ cursor: col-resize;
2011
+ z-index: 10;
2012
+ background: transparent;
2013
+ top: 0;
2014
+ }
2015
+ ._ResizeHandle_144bf_2:hover {
2016
+ background: rgba(0, 0, 0, 0.1);
2017
+ }
2018
+ ._ResizeHandle--left_144bf_16 {
2019
+ right: -3px;
2020
+ }
2021
+ ._ResizeHandle--right_144bf_20 {
2022
+ left: -3px;
2023
+ }
2024
+ }
2025
+
2026
+ /* components/Puck/components/ResizeHandle/styles.css */
2027
+ [data-resize-overlay] {
2028
+ position: fixed;
2029
+ top: 0;
2030
+ left: 0;
2031
+ right: 0;
2032
+ bottom: 0;
2033
+ z-index: 9999;
2034
+ cursor: col-resize;
2035
+ }
2036
+
2037
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Sidebar/styles.module.css/#css-module-data */
2038
+ ._Sidebar_13jxp_1 {
2039
+ border-block-start: 1px solid var(--puck-color-grey-09);
2040
+ position: relative;
2041
+ display: flex;
2042
+ flex-direction: column;
2043
+ overflow-y: auto;
2044
+ }
2045
+ ._Sidebar--left_13jxp_9 {
2046
+ background: var(--puck-color-grey-12);
2047
+ grid-area: left;
2048
+ }
2049
+ @media (min-width: 766px) {
2050
+ ._Sidebar--left_13jxp_9 {
2051
+ border-block-start: 0;
2052
+ border-inline-end: 1px solid var(--puck-color-grey-09);
2053
+ }
2054
+ }
2055
+ ._Sidebar--right_13jxp_21 {
2056
+ background: var(--puck-color-white);
2057
+ grid-area: right;
2058
+ }
2059
+ @media (min-width: 766px) {
2060
+ ._Sidebar--right_13jxp_21 {
2061
+ border-block-start: 0;
2062
+ border-inline-start: 1px solid var(--puck-color-grey-09);
2063
+ }
2064
+ }
2065
+ ._Sidebar-resizeHandle_13jxp_33 {
2066
+ position: absolute;
2067
+ height: 100%;
2068
+ }
2069
+ ._Sidebar--left_13jxp_9 + ._Sidebar-resizeHandle_13jxp_33 {
2070
+ grid-area: left;
2071
+ justify-self: end;
2072
+ }
2073
+ ._Sidebar--right_13jxp_21 + ._Sidebar-resizeHandle_13jxp_33 {
2074
+ grid-area: right;
2075
+ justify-self: start;
2076
+ }
2077
+
2078
+ /* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Nav/styles.module.css/#css-module-data */
2079
+ ._Nav-list_nlhxk_1 {
2080
+ list-style: none;
2081
+ margin: 0;
2082
+ padding-left: 16px;
2083
+ padding-right: 16px;
2084
+ }
2085
+ @media (min-width: 638px) {
2086
+ ._Nav-list_nlhxk_1 {
2087
+ padding-left: 0;
2088
+ padding-right: 0;
2089
+ }
2090
+ }
2091
+ @media (min-width: 638px) {
2092
+ ._NavSection_nlhxk_16 {
2093
+ padding: 16px;
2094
+ }
2095
+ ._NavSection_nlhxk_16:first-of-type {
2096
+ padding-top: 32px;
2097
+ }
2098
+ }
2099
+ ._Nav--slim_nlhxk_25 ._NavSection_nlhxk_16 {
2100
+ padding-left: 0;
2101
+ padding-right: 0;
2102
+ }
2103
+ ._Nav--slim_nlhxk_25 ._NavSection_nlhxk_16 + ._NavSection_nlhxk_16 {
2104
+ border-top: 1px solid var(--puck-color-grey-09);
2105
+ }
2106
+ ._NavSection-list_nlhxk_34 {
2107
+ display: flex;
2108
+ list-style: none;
2109
+ margin: 0;
2110
+ padding: 0;
2111
+ }
2112
+ @media (min-width: 638px) {
2113
+ ._NavSection-list_nlhxk_34 {
2114
+ flex-direction: column;
2115
+ }
2116
+ }
2117
+ ._Nav--slim_nlhxk_25 ._NavSection-list_nlhxk_34 {
2118
+ gap: 8px;
2119
+ }
2120
+ @media (min-width: 638px) {
2121
+ ._Nav--slim_nlhxk_25 ._NavSection-list_nlhxk_34 {
2122
+ gap: 16px;
2123
+ }
2124
+ }
2125
+ ._NavSection-title_nlhxk_57 {
2126
+ font-weight: 700;
2127
+ margin-bottom: 8px;
2128
+ padding-left: 8px;
2129
+ padding-right: 8px;
2130
+ }
2131
+ ._Nav--slim_nlhxk_25 ._NavSection-title_nlhxk_57 {
2132
+ opacity: 0;
2133
+ }
2134
+ ._NavItem-link_nlhxk_68 {
2135
+ align-items: center;
2136
+ color: var(--puck-color-grey-03);
2137
+ display: flex;
2138
+ gap: 8px;
2139
+ text-decoration: none;
2140
+ cursor: pointer;
2141
+ border-radius: 4px;
2142
+ padding: 8px 4px;
2143
+ width: 64px;
2144
+ box-sizing: border-box;
2145
+ }
2146
+ @media (min-width: 638px) {
2147
+ ._NavItem-link_nlhxk_68 {
2148
+ width: auto;
2149
+ }
2150
+ }
2151
+ ._Nav--slim_nlhxk_25 ._NavItem-link_nlhxk_68 {
2152
+ border-top: 4px solid transparent;
2153
+ border-bottom: 4px solid transparent;
2154
+ border-radius: 0;
2155
+ flex-direction: column;
2156
+ font-size: var(--puck-font-size-xxxs);
2157
+ }
2158
+ @media (min-width: 638px) {
2159
+ ._Nav--slim_nlhxk_25 ._NavItem-link_nlhxk_68 {
2160
+ border: 0;
2161
+ border-left: 4px solid transparent;
2162
+ border-right: 4px solid transparent;
2163
+ }
2164
+ }
2165
+ ._NavItem-linkIcon_nlhxk_103 {
2166
+ height: 24px;
2167
+ width: 24px;
2168
+ }
2169
+ ._NavItem--active_nlhxk_108 > ._NavItem-link_nlhxk_68 {
2170
+ background-color: var(--puck-color-azure-10);
2171
+ color: var(--puck-color-azure-04);
2172
+ font-weight: 600;
2173
+ }
2174
+ ._Nav--slim_nlhxk_25 ._NavItem--active_nlhxk_108 > ._NavItem-link_nlhxk_68 {
2175
+ background-color: transparent;
2176
+ border-top-color: var(--puck-color-azure-04);
2177
+ border-top-right-radius: 0;
2178
+ border-bottom-right-radius: 0;
2179
+ font-weight: 600;
2180
+ }
2181
+ @media (min-width: 638px) {
2182
+ ._Nav--slim_nlhxk_25 ._NavItem--active_nlhxk_108 > ._NavItem-link_nlhxk_68 {
2183
+ border-top-color: transparent;
2184
+ border-right-color: var(--puck-color-azure-04);
2185
+ }
2186
+ }
2187
+ ._NavItem_nlhxk_68:not(._NavItem--active_nlhxk_108) > ._NavItem-link_nlhxk_68:hover {
2188
+ background-color: var(--puck-color-azure-11);
2189
+ color: var(--puck-color-azure-04);
2190
+ }
2191
+ ._NavItem-list_nlhxk_134 {
2192
+ border-left: 1px solid var(--puck-color-grey-09);
2193
+ display: flex;
2194
+ flex-direction: column;
2195
+ list-style: none;
2196
+ margin-top: 8px;
2197
+ margin-left: 4px;
2198
+ padding: 0;
2199
+ padding-left: 8px;
2200
+ }
2201
+ ._Nav--slim_nlhxk_25 ._NavItem-list_nlhxk_134 {
2202
+ border-left: 0;
2203
+ padding-left: 0;
2204
+ margin-left: 0;
2205
+ }
2206
+ ._Nav_nlhxk_1 {
2207
+ display: flex;
2208
+ }
2209
+ @media (min-width: 638px) {
2210
+ ._Nav_nlhxk_1 {
2211
+ display: block;
2212
+ }
2213
+ }
2214
+ @media (min-width: 638px) {
2215
+ ._NavItem--mobileOnly_nlhxk_162 {
2216
+ display: none;
2217
+ }
2218
+ }
2219
+ ._Nav-mobileActions_nlhxk_167 {
2220
+ align-items: center;
2221
+ display: flex;
2222
+ justify-content: center;
2223
+ margin-inline-start: auto;
2224
+ padding: 4px 16px;
2225
+ border-inline-start: 1px solid var(--puck-color-grey-09);
2226
+ }
2227
+ @media (min-width: 638px) {
2228
+ ._Nav-mobileActions_nlhxk_167 {
2229
+ display: none;
2230
+ }
2231
+ }