@measured/puck 0.20.0-canary.33cf4f0e → 0.20.0-canary.3d781f5a

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