@measured/puck 0.12.0-canary.39005a4 → 0.12.0-canary.3f8ebc0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -486
- package/dist/{Config-60a50493.d.ts → Config-35e6eaae.d.ts} +2 -1
- package/dist/index.css +390 -158
- package/dist/index.d.ts +41 -41
- package/dist/index.js +642 -557
- package/dist/rsc.d.ts +1 -1
- package/package.json +22 -1
package/dist/index.css
CHANGED
@@ -130,11 +130,12 @@
|
|
130
130
|
Segoe UI Emoji,
|
131
131
|
Segoe UI Symbol;
|
132
132
|
--puck-font-family-monospaced:
|
133
|
-
|
134
|
-
"
|
135
|
-
"
|
136
|
-
|
137
|
-
|
133
|
+
ui-monospace,
|
134
|
+
"Cascadia Code",
|
135
|
+
"Source Code Pro",
|
136
|
+
Menlo,
|
137
|
+
Consolas,
|
138
|
+
"DejaVu Sans Mono",
|
138
139
|
monospace;
|
139
140
|
--puck-font-family-proportional: var(--puck-font-stack), sans-serif;
|
140
141
|
}
|
@@ -142,70 +143,72 @@
|
|
142
143
|
/* styles/global.css */
|
143
144
|
|
144
145
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/Button/Button.module.css/#css-module-data */
|
145
|
-
.
|
146
|
+
._Button_1brfa_1 {
|
146
147
|
appearance: none;
|
147
148
|
background: none;
|
148
149
|
border: none;
|
149
150
|
border-radius: 4px;
|
150
151
|
color: white;
|
151
|
-
display: flex;
|
152
|
+
display: inline-flex;
|
152
153
|
align-items: center;
|
153
154
|
gap: 8px;
|
154
155
|
letter-spacing: 0.05ch;
|
156
|
+
font-family: var(--puck-font-family-proportional);
|
155
157
|
font-size: 14px;
|
156
|
-
font-weight:
|
158
|
+
font-weight: 400;
|
159
|
+
line-height: 1;
|
157
160
|
text-align: center;
|
158
161
|
text-decoration: none;
|
159
162
|
cursor: pointer;
|
160
163
|
white-space: nowrap;
|
161
164
|
margin: 0;
|
162
165
|
}
|
163
|
-
._Button--
|
166
|
+
._Button--medium_1brfa_22 {
|
164
167
|
padding-bottom: 8px;
|
165
168
|
padding-left: 20px;
|
166
169
|
padding-right: 20px;
|
167
170
|
padding-top: 8px;
|
168
171
|
}
|
169
|
-
._Button--
|
172
|
+
._Button--large_1brfa_29 {
|
170
173
|
padding-bottom: 12px;
|
171
174
|
padding-left: 20px;
|
172
175
|
padding-right: 20px;
|
173
176
|
padding-top: 12px;
|
174
177
|
}
|
175
|
-
._Button-
|
178
|
+
._Button-icon_1brfa_36 {
|
176
179
|
margin-top: 2px;
|
177
180
|
}
|
178
|
-
.
|
181
|
+
._Button_1brfa_1:hover {
|
179
182
|
text-decoration: none;
|
180
183
|
}
|
181
|
-
._Button--
|
184
|
+
._Button--primary_1brfa_44 {
|
182
185
|
background: var(--puck-color-blue);
|
183
186
|
}
|
184
|
-
._Button--
|
187
|
+
._Button--primary_1brfa_44:hover {
|
185
188
|
opacity: 0.7;
|
186
189
|
transition: opacity 50ms ease-in;
|
187
190
|
}
|
188
|
-
._Button--
|
191
|
+
._Button--secondary_1brfa_53 {
|
189
192
|
color: currentColor;
|
190
193
|
border: 1px solid currentColor;
|
191
194
|
}
|
192
|
-
._Button--
|
195
|
+
._Button--secondary_1brfa_53:hover {
|
193
196
|
background-color: var(--puck-color-grey-10);
|
194
197
|
color: black;
|
195
198
|
opacity: 0.7;
|
196
199
|
}
|
197
|
-
._Button--
|
200
|
+
._Button--flush_1brfa_64 {
|
198
201
|
border-radius: 0;
|
199
202
|
}
|
200
|
-
._Button--
|
203
|
+
._Button--disabled_1brfa_68 {
|
201
204
|
background: var(--puck-color-grey-10);
|
202
205
|
color: black;
|
203
206
|
cursor: not-allowed;
|
204
207
|
}
|
205
|
-
._Button--
|
208
|
+
._Button--disabled_1brfa_68:hover {
|
206
209
|
opacity: 1;
|
207
210
|
}
|
208
|
-
._Button--
|
211
|
+
._Button--fullWidth_1brfa_78 {
|
209
212
|
width: 100%;
|
210
213
|
}
|
211
214
|
|
@@ -380,69 +383,81 @@
|
|
380
383
|
}
|
381
384
|
|
382
385
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/IconButton/IconButton.module.css/#css-module-data */
|
383
|
-
.
|
386
|
+
._IconButton_38xdr_1 {
|
387
|
+
align-items: center;
|
384
388
|
background: transparent;
|
385
389
|
border: none;
|
386
|
-
|
390
|
+
border-radius: 4px;
|
391
|
+
color: currentColor;
|
387
392
|
display: flex;
|
388
|
-
align-items: center;
|
389
393
|
justify-content: center;
|
390
|
-
border-radius: 4px;
|
391
394
|
padding: 4px;
|
392
395
|
}
|
393
|
-
.
|
396
|
+
._IconButton_38xdr_1:hover {
|
394
397
|
background: var(--puck-color-grey-9);
|
395
398
|
color: var(--puck-color-blue);
|
396
399
|
cursor: pointer;
|
397
400
|
}
|
401
|
+
._IconButton-title_38xdr_18 {
|
402
|
+
clip: rect(0 0 0 0);
|
403
|
+
clip-path: inset(100%);
|
404
|
+
height: 1px;
|
405
|
+
overflow: hidden;
|
406
|
+
position: absolute;
|
407
|
+
white-space: nowrap;
|
408
|
+
width: 1px;
|
409
|
+
}
|
398
410
|
|
399
411
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/styles.module.css/#css-module-data */
|
400
|
-
.
|
412
|
+
._Input_1jyrm_1 {
|
401
413
|
color: var(--puck-color-grey-3);
|
402
414
|
padding: 16px;
|
403
415
|
padding-bottom: 12px;
|
404
416
|
display: block;
|
405
417
|
font-family: var(--puck-font-stack);
|
406
418
|
}
|
407
|
-
.
|
419
|
+
._Input_1jyrm_1 ._Input_1jyrm_1 {
|
408
420
|
padding: 0px;
|
409
421
|
}
|
410
|
-
.
|
422
|
+
._Input_1jyrm_1 * {
|
411
423
|
box-sizing: border-box;
|
412
424
|
}
|
413
|
-
.
|
425
|
+
._Input_1jyrm_1 + ._Input_1jyrm_1 {
|
414
426
|
border-top: 1px solid var(--puck-color-grey-8);
|
415
427
|
margin-top: 8px;
|
416
428
|
}
|
417
|
-
.
|
429
|
+
._Input_1jyrm_1 ._Input_1jyrm_1 + ._Input_1jyrm_1 {
|
418
430
|
border-top: 0px;
|
419
431
|
margin-top: 12px;
|
420
432
|
}
|
421
|
-
._Input-
|
433
|
+
._Input-label_1jyrm_27 {
|
434
|
+
align-items: center;
|
422
435
|
display: flex;
|
423
436
|
padding-bottom: 12px;
|
424
437
|
font-size: var(--puck-font-size-xxs);
|
425
438
|
font-weight: 600;
|
426
439
|
}
|
427
|
-
._Input-
|
440
|
+
._Input-labelIcon_1jyrm_35 {
|
428
441
|
color: var(--puck-color-grey-6);
|
429
442
|
margin-right: 4px;
|
430
443
|
padding-left: 4px;
|
431
444
|
}
|
432
|
-
._Input-
|
445
|
+
._Input-disabledIcon_1jyrm_41 {
|
433
446
|
color: var(--puck-color-grey-4);
|
434
447
|
margin-left: auto;
|
435
448
|
}
|
436
|
-
._Input-
|
449
|
+
._Input-input_1jyrm_46 {
|
450
|
+
background: white;
|
437
451
|
border-width: 1px;
|
438
452
|
border-style: solid;
|
439
453
|
border-color: var(--puck-color-grey-8);
|
440
454
|
border-radius: 4px;
|
441
455
|
font-family: inherit;
|
442
|
-
|
456
|
+
font-size: 14px;
|
457
|
+
padding: 12px 15px;
|
443
458
|
width: 100%;
|
444
459
|
}
|
445
|
-
.
|
460
|
+
._Input_1jyrm_1 select._Input-input_1jyrm_46 {
|
446
461
|
appearance: none;
|
447
462
|
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;
|
448
463
|
background-size: 12px;
|
@@ -450,76 +465,81 @@
|
|
450
465
|
background-repeat: no-repeat;
|
451
466
|
background-color: white;
|
452
467
|
}
|
453
|
-
._Input--
|
454
|
-
._Input--
|
468
|
+
._Input--readOnly_1jyrm_69 > ._Input-input_1jyrm_46,
|
469
|
+
._Input--readOnly_1jyrm_69 > select._Input-input_1jyrm_46 {
|
455
470
|
background-color: var(--puck-color-grey-11);
|
456
471
|
border-color: var(--puck-color-grey-8);
|
457
472
|
color: var(--puck-color-grey-5);
|
458
473
|
opacity: 1;
|
459
474
|
}
|
460
|
-
._Input-
|
475
|
+
._Input-input_1jyrm_46:hover {
|
461
476
|
border-color: var(--puck-color-neutral-3);
|
462
477
|
}
|
463
|
-
._Input-
|
478
|
+
._Input-input_1jyrm_46:focus {
|
479
|
+
border-color: var(--puck-color-azure-4);
|
480
|
+
outline: var(--puck-color-azure-8) 4px solid;
|
481
|
+
outline-offset: 0;
|
482
|
+
}
|
483
|
+
._Input-radioGroupItems_1jyrm_87 {
|
464
484
|
display: flex;
|
465
485
|
border: 1px solid var(--puck-color-grey-7);
|
466
486
|
border-radius: 4px;
|
467
487
|
flex-wrap: wrap;
|
468
488
|
overflow: hidden;
|
469
489
|
}
|
470
|
-
._Input-
|
490
|
+
._Input-radio_1jyrm_87 {
|
471
491
|
border-right: 1px solid var(--puck-color-grey-7);
|
472
492
|
flex-grow: 1;
|
473
493
|
}
|
474
|
-
._Input-
|
494
|
+
._Input-radio_1jyrm_87:last-of-type {
|
475
495
|
border-right: none;
|
476
496
|
}
|
477
|
-
._Input-
|
497
|
+
._Input-radioInner_1jyrm_104 {
|
478
498
|
background-color: white;
|
479
499
|
color: var(--puck-color-grey-4);
|
480
500
|
font-size: var(--puck-font-size-xxxs);
|
481
501
|
padding: 8px 12px;
|
482
502
|
text-align: center;
|
483
503
|
}
|
484
|
-
._Input-
|
504
|
+
._Input-radioInner_1jyrm_104:hover {
|
485
505
|
background-color: var(--puck-color-azure-9);
|
486
506
|
cursor: pointer;
|
487
507
|
}
|
488
|
-
._Input--
|
508
|
+
._Input--readOnly_1jyrm_69 ._Input-radioGroupItems_1jyrm_87 {
|
489
509
|
border-color: var(--puck-color-grey-8);
|
490
510
|
}
|
491
|
-
._Input--
|
511
|
+
._Input--readOnly_1jyrm_69 ._Input-radioInner_1jyrm_104 {
|
492
512
|
background-color: var(--puck-color-grey-11);
|
493
513
|
color: var(--puck-color-grey-5);
|
494
514
|
}
|
495
|
-
._Input-
|
515
|
+
._Input-radio_1jyrm_87 ._Input-radioInput_1jyrm_126:checked ~ ._Input-radioInner_1jyrm_104 {
|
496
516
|
background-color: var(--puck-color-azure-9);
|
497
517
|
color: var(--puck-color-grey-1);
|
498
518
|
font-weight: 500;
|
499
519
|
}
|
500
|
-
._Input--
|
520
|
+
._Input--readOnly_1jyrm_69 ._Input-radioInput_1jyrm_126:checked ~ ._Input-radioInner_1jyrm_104 {
|
501
521
|
background-color: var(--puck-color-azure-9);
|
502
522
|
color: var(--puck-color-grey-4);
|
503
523
|
}
|
504
|
-
._Input-
|
524
|
+
._Input-radio_1jyrm_87 ._Input-radioInput_1jyrm_126 {
|
505
525
|
display: none;
|
506
526
|
}
|
507
|
-
.
|
527
|
+
._Input_1jyrm_1 textarea._Input-input_1jyrm_46 {
|
508
528
|
margin-bottom: -4px;
|
509
529
|
}
|
510
530
|
|
511
531
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/fields/ArrayField/styles.module.css/#css-module-data */
|
512
|
-
.
|
532
|
+
._ArrayField_1auyc_5 {
|
513
533
|
display: flex;
|
514
534
|
flex-direction: column;
|
515
535
|
background-color: var(--puck-color-grey-8);
|
516
536
|
border: 1px solid var(--puck-color-grey-8);
|
517
537
|
border-radius: 4px;
|
518
538
|
}
|
519
|
-
._ArrayField--
|
539
|
+
._ArrayField--isDraggingFrom_1auyc_13 {
|
520
540
|
background-color: var(--puck-color-azure-9);
|
521
541
|
}
|
522
|
-
._ArrayField-
|
542
|
+
._ArrayField-addButton_1auyc_17 {
|
523
543
|
background-color: white;
|
524
544
|
border: none;
|
525
545
|
border-radius: 4px;
|
@@ -532,93 +552,95 @@
|
|
532
552
|
padding: 16px;
|
533
553
|
text-align: left;
|
534
554
|
}
|
535
|
-
._ArrayField--
|
555
|
+
._ArrayField--hasItems_1auyc_31 > ._ArrayField-addButton_1auyc_17 {
|
536
556
|
border-top-left-radius: 0;
|
537
557
|
border-top-right-radius: 0;
|
538
558
|
}
|
539
|
-
.
|
559
|
+
._ArrayField_1auyc_5:not(._ArrayField--isDraggingFrom_1auyc_13) > ._ArrayField-addButton_1auyc_17:hover {
|
540
560
|
background: var(--puck-color-azure-9);
|
541
561
|
color: var(--puck-color-azure-4);
|
542
562
|
}
|
543
|
-
.
|
563
|
+
._ArrayFieldItem_1auyc_45 {
|
544
564
|
background: white;
|
545
565
|
border-top-left-radius: 4px;
|
546
566
|
border-top-right-radius: 4px;
|
547
567
|
display: block;
|
548
568
|
margin-bottom: 1px;
|
549
569
|
}
|
550
|
-
._ArrayField--
|
570
|
+
._ArrayField--isDraggingFrom_1auyc_13 > ._ArrayFieldItem_1auyc_45:not(._ArrayFieldItem--isDragging_1auyc_53) {
|
551
571
|
border-bottom: 1px solid var(--puck-color-grey-8);
|
552
572
|
margin-bottom: 0;
|
553
573
|
}
|
554
|
-
._ArrayFieldItem--
|
574
|
+
._ArrayFieldItem--isExpanded_1auyc_58 {
|
555
575
|
border-bottom: 0;
|
556
|
-
outline:
|
576
|
+
outline-offset: 0px !important;
|
577
|
+
outline: 1px solid var(--puck-color-azure-6) !important;
|
557
578
|
}
|
558
|
-
._ArrayFieldItem--
|
579
|
+
._ArrayFieldItem--isDragging_1auyc_53 {
|
559
580
|
box-shadow: rgba(140, 152, 164, 0.25) 0 3px 6px 0;
|
560
581
|
}
|
561
|
-
.
|
582
|
+
._ArrayFieldItem_1auyc_45 + ._ArrayFieldItem_1auyc_45 {
|
562
583
|
border-top-left-radius: 0;
|
563
584
|
border-top-right-radius: 0;
|
564
585
|
}
|
565
|
-
._ArrayFieldItem-
|
586
|
+
._ArrayFieldItem-summary_1auyc_73 {
|
566
587
|
color: var(--puck-color-grey-3);
|
567
588
|
display: flex;
|
568
589
|
align-items: center;
|
590
|
+
gap: 2px;
|
569
591
|
justify-content: space-between;
|
570
592
|
font-size: var(--puck-font-size-xxs);
|
571
593
|
list-style: none;
|
572
|
-
padding: 12px
|
594
|
+
padding: 12px 15px;
|
573
595
|
position: relative;
|
574
596
|
overflow: hidden;
|
575
597
|
}
|
576
|
-
._ArrayFieldItem--
|
598
|
+
._ArrayFieldItem--readOnly_1auyc_86 > ._ArrayFieldItem-summary_1auyc_73 {
|
577
599
|
background-color: var(--puck-color-grey-11);
|
578
600
|
color: var(--puck-color-grey-5);
|
579
601
|
}
|
580
|
-
._ArrayFieldItem--
|
602
|
+
._ArrayFieldItem--isExpanded_1auyc_58 > ._ArrayFieldItem-summary_1auyc_73 {
|
581
603
|
font-weight: 600;
|
582
604
|
}
|
583
|
-
.
|
605
|
+
._ArrayFieldItem_1auyc_45:first-of-type > ._ArrayFieldItem-summary_1auyc_73 {
|
584
606
|
border-top-left-radius: 4px;
|
585
607
|
border-top-right-radius: 4px;
|
586
608
|
}
|
587
|
-
._ArrayFieldItem-
|
588
|
-
._ArrayFieldItem--
|
609
|
+
._ArrayFieldItem-summary_1auyc_73:hover,
|
610
|
+
._ArrayFieldItem--isExpanded_1auyc_58 > ._ArrayFieldItem-summary_1auyc_73 {
|
589
611
|
background: var(--puck-color-azure-9);
|
590
612
|
cursor: pointer;
|
591
613
|
color: var(--puck-color-azure-4);
|
592
614
|
}
|
593
|
-
._ArrayFieldItem-
|
615
|
+
._ArrayFieldItem-body_1auyc_107 {
|
594
616
|
display: none;
|
595
617
|
}
|
596
|
-
._ArrayFieldItem--
|
618
|
+
._ArrayFieldItem--isExpanded_1auyc_58 > ._ArrayFieldItem-body_1auyc_107 {
|
597
619
|
display: block;
|
598
620
|
}
|
599
|
-
._ArrayFieldItem-
|
621
|
+
._ArrayFieldItem-fieldset_1auyc_115 {
|
600
622
|
border: none;
|
601
623
|
border-top: 1px solid var(--puck-color-grey-8);
|
602
624
|
margin: 0;
|
603
|
-
padding: 16px;
|
625
|
+
padding: 16px 15px;
|
604
626
|
}
|
605
|
-
._ArrayFieldItem-
|
627
|
+
._ArrayFieldItem-rhs_1auyc_122 {
|
606
628
|
display: flex;
|
607
|
-
gap:
|
629
|
+
gap: 4px;
|
608
630
|
align-items: center;
|
609
631
|
}
|
610
|
-
._ArrayFieldItem-
|
632
|
+
._ArrayFieldItem-actions_1auyc_128 {
|
633
|
+
color: var(--puck-color-grey-3);
|
611
634
|
display: flex;
|
612
|
-
gap:
|
635
|
+
gap: 4px;
|
613
636
|
opacity: 0;
|
614
637
|
}
|
615
|
-
._ArrayFieldItem-
|
638
|
+
._ArrayFieldItem-summary_1auyc_73:hover > ._ArrayFieldItem-rhs_1auyc_122 > ._ArrayFieldItem-actions_1auyc_128 {
|
616
639
|
opacity: 1;
|
617
640
|
}
|
618
|
-
._ArrayFieldItem-
|
641
|
+
._ArrayFieldItem-action_1auyc_128:hover {
|
619
642
|
background: var(--puck-color-grey-9);
|
620
643
|
border-radius: 4px;
|
621
|
-
color: var(--puck-color-blue);
|
622
644
|
cursor: pointer;
|
623
645
|
}
|
624
646
|
|
@@ -634,13 +656,13 @@
|
|
634
656
|
}
|
635
657
|
|
636
658
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/ExternalInput/styles.module.css/#css-module-data */
|
637
|
-
.
|
659
|
+
._ExternalInput_157li_1 {
|
638
660
|
font-family: var(--puck-font-stack);
|
639
661
|
}
|
640
|
-
._ExternalInput-
|
662
|
+
._ExternalInput-actions_157li_5 {
|
641
663
|
display: flex;
|
642
664
|
}
|
643
|
-
._ExternalInput-
|
665
|
+
._ExternalInput-button_157li_9 {
|
644
666
|
display: flex;
|
645
667
|
gap: 8px;
|
646
668
|
align-items: center;
|
@@ -657,20 +679,20 @@
|
|
657
679
|
overflow: hidden;
|
658
680
|
flex-grow: 1;
|
659
681
|
}
|
660
|
-
._ExternalInput-
|
661
|
-
._ExternalInput-
|
682
|
+
._ExternalInput-button_157li_9:hover,
|
683
|
+
._ExternalInput-detachButton_157li_28:hover {
|
662
684
|
cursor: pointer;
|
663
685
|
background: var(--puck-color-azure-9);
|
664
686
|
color: var(--puck-color-azure-4);
|
665
687
|
z-index: 1;
|
666
688
|
}
|
667
|
-
._ExternalInput--
|
689
|
+
._ExternalInput--dataSelected_157li_35 ._ExternalInput-button_157li_9 {
|
668
690
|
color: var(--puck-color-grey-2);
|
669
691
|
display: block;
|
670
692
|
border-top-right-radius: 0px;
|
671
693
|
border-bottom-right-radius: 0px;
|
672
694
|
}
|
673
|
-
._ExternalInput-
|
695
|
+
._ExternalInput-detachButton_157li_28 {
|
674
696
|
border: 1px solid var(--puck-color-grey-8);
|
675
697
|
border-top-right-radius: 4px;
|
676
698
|
border-bottom-right-radius: 4px;
|
@@ -683,84 +705,85 @@
|
|
683
705
|
padding: 8px 12px;
|
684
706
|
margin-left: -1px;
|
685
707
|
}
|
686
|
-
.
|
708
|
+
._ExternalInputModal_157li_56 {
|
687
709
|
display: flex;
|
688
710
|
flex-direction: column;
|
689
711
|
position: relative;
|
690
712
|
max-height: 90vh;
|
691
713
|
}
|
692
|
-
._ExternalInputModal-
|
714
|
+
._ExternalInputModal-masthead_157li_63 {
|
693
715
|
background-color: white;
|
694
716
|
padding: 32px 24px;
|
695
717
|
}
|
696
|
-
._ExternalInputModal-
|
718
|
+
._ExternalInputModal-tableWrapper_157li_68 {
|
697
719
|
overflow-x: auto;
|
698
720
|
overflow-y: auto;
|
699
721
|
flex-grow: 1;
|
700
722
|
}
|
701
|
-
._ExternalInputModal-
|
723
|
+
._ExternalInputModal-table_157li_68 {
|
702
724
|
border-collapse: unset;
|
703
725
|
border-spacing: 0px;
|
704
726
|
color: var(--puck-color-neutral-4);
|
705
727
|
position: relative;
|
706
728
|
z-index: 0;
|
729
|
+
min-width: 100%;
|
707
730
|
}
|
708
|
-
._ExternalInputModal-
|
731
|
+
._ExternalInputModal-thead_157li_83 {
|
709
732
|
position: sticky;
|
710
733
|
top: 0;
|
711
734
|
z-index: 1;
|
712
735
|
}
|
713
|
-
._ExternalInputModal-
|
736
|
+
._ExternalInputModal-th_157li_83 {
|
714
737
|
border-bottom: 1px solid var(--puck-color-grey-8);
|
715
738
|
border-top: 1px solid var(--puck-color-grey-8);
|
716
739
|
font-weight: 700;
|
717
740
|
padding: 16px 24px;
|
718
741
|
opacity: 0.9;
|
719
742
|
}
|
720
|
-
._ExternalInputModal-
|
743
|
+
._ExternalInputModal-td_157li_97 {
|
721
744
|
font-family: var(--puck-font-stack);
|
722
745
|
padding: 16px 24px;
|
723
746
|
}
|
724
|
-
._ExternalInputModal-
|
747
|
+
._ExternalInputModal-tr_157li_102:nth-of-type(n) {
|
725
748
|
background-color: white;
|
726
749
|
}
|
727
|
-
._ExternalInputModal-
|
750
|
+
._ExternalInputModal-tr_157li_102:nth-of-type(2n) {
|
728
751
|
background-color: var(--puck-color-grey-10);
|
729
752
|
}
|
730
|
-
._ExternalInputModal-
|
753
|
+
._ExternalInputModal-tr_157li_102 ._ExternalInputModal-td_157li_97:first-of-type {
|
731
754
|
font-weight: 500;
|
732
755
|
}
|
733
|
-
._ExternalInputModal-
|
756
|
+
._ExternalInputModal-tbody_157li_114 ._ExternalInputModal-tr_157li_102:hover {
|
734
757
|
background: var(--puck-color-grey-11);
|
735
758
|
color: var(--puck-color-azure-4);
|
736
759
|
cursor: pointer;
|
737
760
|
position: relative;
|
738
761
|
margin-left: -5px;
|
739
762
|
}
|
740
|
-
._ExternalInputModal-
|
763
|
+
._ExternalInputModal-tbody_157li_114 ._ExternalInputModal-tr_157li_102:hover ._ExternalInputModal-td_157li_97:first-of-type {
|
741
764
|
border-left: 4px solid var(--puck-color-azure-4);
|
742
765
|
padding-left: 20px;
|
743
766
|
}
|
744
|
-
._ExternalInputModal-
|
767
|
+
._ExternalInputModal-tableWrapper_157li_68 {
|
745
768
|
display: none;
|
746
769
|
}
|
747
|
-
._ExternalInputModal--
|
770
|
+
._ExternalInputModal--hasData_157li_133 ._ExternalInputModal-tableWrapper_157li_68 {
|
748
771
|
display: block;
|
749
772
|
}
|
750
|
-
._ExternalInputModal-
|
773
|
+
._ExternalInputModal-loadingBanner_157li_137 {
|
751
774
|
display: none;
|
752
775
|
background-color: white;
|
753
776
|
padding: 64px;
|
754
777
|
align-items: center;
|
755
778
|
justify-content: center;
|
756
779
|
}
|
757
|
-
._ExternalInputModal--
|
780
|
+
._ExternalInputModal--isLoading_157li_145 ._ExternalInputModal-loadingBanner_157li_137 {
|
758
781
|
display: flex;
|
759
782
|
}
|
760
|
-
._ExternalInputModal-
|
783
|
+
._ExternalInputModal-noContentBanner_157li_149 {
|
761
784
|
display: none;
|
762
785
|
}
|
763
|
-
._ExternalInputModal--
|
786
|
+
._ExternalInputModal--loaded_157li_153:not(._ExternalInputModal--hasData_157li_133) ._ExternalInputModal-noContentBanner_157li_149 {
|
764
787
|
display: block;
|
765
788
|
padding: 24px;
|
766
789
|
}
|
@@ -832,20 +855,20 @@
|
|
832
855
|
}
|
833
856
|
|
834
857
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/ComponentList/styles.module.css/#css-module-data */
|
835
|
-
.
|
858
|
+
._ComponentList_1m8r5_1 {
|
836
859
|
font-family: var(--puck-font-stack);
|
837
860
|
max-width: 100%;
|
838
861
|
}
|
839
|
-
._ComponentList--
|
862
|
+
._ComponentList--isExpanded_1m8r5_6 + ._ComponentList_1m8r5_1 {
|
840
863
|
margin-top: 12px;
|
841
864
|
}
|
842
|
-
._ComponentList-
|
865
|
+
._ComponentList-content_1m8r5_10 {
|
843
866
|
display: none;
|
844
867
|
}
|
845
|
-
._ComponentList--
|
868
|
+
._ComponentList--isExpanded_1m8r5_6 > ._ComponentList-content_1m8r5_10 {
|
846
869
|
display: block;
|
847
870
|
}
|
848
|
-
._ComponentList-
|
871
|
+
._ComponentList-title_1m8r5_18 {
|
849
872
|
color: var(--puck-color-grey-4);
|
850
873
|
display: flex;
|
851
874
|
font-size: var(--puck-font-size-xxxs);
|
@@ -855,21 +878,21 @@
|
|
855
878
|
gap: 4px;
|
856
879
|
border-radius: 4px;
|
857
880
|
}
|
858
|
-
._ComponentList--
|
881
|
+
._ComponentList--isExpanded_1m8r5_6 ._ComponentList-title_1m8r5_18 {
|
859
882
|
margin-bottom: 4px;
|
860
883
|
}
|
861
|
-
._ComponentList-
|
884
|
+
._ComponentList-title_1m8r5_18:hover {
|
862
885
|
background-color: var(--puck-color-azure-9);
|
863
886
|
color: var(--puck-color-azure-4);
|
864
887
|
cursor: pointer;
|
865
888
|
}
|
866
|
-
._ComponentList-
|
889
|
+
._ComponentList-titleIcon_1m8r5_39 {
|
867
890
|
margin-left: auto;
|
868
891
|
}
|
869
|
-
.
|
892
|
+
._ComponentListItem_1m8r5_43:last-of-type ._ComponentListItem-draggable_1m8r5_43 {
|
870
893
|
margin-bottom: 0px;
|
871
894
|
}
|
872
|
-
._ComponentListItem-
|
895
|
+
._ComponentListItem-draggable_1m8r5_43 {
|
873
896
|
background: white;
|
874
897
|
padding: 12px;
|
875
898
|
display: flex;
|
@@ -878,68 +901,72 @@
|
|
878
901
|
font-size: var(--puck-font-size-xxs);
|
879
902
|
justify-content: space-between;
|
880
903
|
align-items: center;
|
881
|
-
gap: 12px;
|
882
904
|
cursor: grab;
|
883
905
|
margin-bottom: 12px;
|
884
906
|
}
|
885
|
-
.
|
886
|
-
|
907
|
+
._ComponentListItem-name_1m8r5_60 {
|
908
|
+
overflow-x: hidden;
|
909
|
+
text-overflow: ellipsis;
|
910
|
+
white-space: nowrap;
|
887
911
|
}
|
888
|
-
.
|
912
|
+
._ComponentList_1m8r5_1:not(._ComponentList--isDraggingFrom_1m8r5_66) ._ComponentListItem-draggable_1m8r5_43:hover {
|
889
913
|
background-color: var(--puck-color-azure-9);
|
890
914
|
color: var(--puck-color-azure-4);
|
891
915
|
}
|
892
916
|
|
893
917
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/SidebarSection/styles.module.css/#css-module-data */
|
894
|
-
.
|
918
|
+
._SidebarSection_1uyg2_1 {
|
895
919
|
display: flex;
|
896
920
|
position: relative;
|
897
921
|
flex-direction: column;
|
898
922
|
color: black;
|
899
923
|
}
|
900
|
-
.
|
924
|
+
._SidebarSection_1uyg2_1:last-of-type {
|
901
925
|
flex-grow: 1;
|
902
926
|
}
|
903
|
-
._SidebarSection-
|
927
|
+
._SidebarSection-title_1uyg2_12 {
|
904
928
|
background: white;
|
905
929
|
padding: 16px;
|
906
930
|
border-bottom: 1px solid var(--puck-color-grey-8);
|
907
931
|
overflow-x: auto;
|
908
932
|
}
|
909
|
-
._SidebarSection-
|
933
|
+
._SidebarSection-content_1uyg2_19 {
|
910
934
|
border-bottom: 1px solid var(--puck-color-grey-8);
|
911
935
|
padding: 16px;
|
912
936
|
}
|
913
|
-
._SidebarSection--
|
937
|
+
._SidebarSection--noPadding_1uyg2_24 ._SidebarSection-content_1uyg2_19 {
|
914
938
|
padding: 0px;
|
915
939
|
}
|
916
|
-
.
|
940
|
+
._SidebarSection--noPadding_1uyg2_24 ._SidebarSection-content_1uyg2_19:last-child {
|
941
|
+
padding-bottom: 4px;
|
942
|
+
}
|
943
|
+
._SidebarSection_1uyg2_1:last-of-type ._SidebarSection-content_1uyg2_19 {
|
917
944
|
border-bottom: none;
|
918
945
|
flex-grow: 1;
|
919
946
|
}
|
920
|
-
._SidebarSection-
|
947
|
+
._SidebarSection-breadcrumbLabel_1uyg2_37 {
|
921
948
|
color: var(--puck-color-azure-3);
|
922
949
|
flex-shrink: 0;
|
923
950
|
}
|
924
|
-
._SidebarSection-
|
951
|
+
._SidebarSection-breadcrumbLabel_1uyg2_37:hover {
|
925
952
|
color: var(--puck-color-azure-4);
|
926
953
|
cursor: pointer;
|
927
954
|
text-decoration: underline;
|
928
955
|
}
|
929
|
-
._SidebarSection-
|
956
|
+
._SidebarSection-breadcrumbs_1uyg2_48 {
|
930
957
|
align-items: center;
|
931
958
|
display: flex;
|
932
959
|
gap: 4px;
|
933
960
|
}
|
934
|
-
._SidebarSection-
|
961
|
+
._SidebarSection-breadcrumb_1uyg2_37 {
|
935
962
|
align-items: center;
|
936
963
|
display: flex;
|
937
964
|
gap: 4px;
|
938
965
|
}
|
939
|
-
._SidebarSection-
|
966
|
+
._SidebarSection-heading_1uyg2_60 {
|
940
967
|
padding-right: 16px;
|
941
968
|
}
|
942
|
-
._SidebarSection-
|
969
|
+
._SidebarSection-loadingOverlay_1uyg2_64 {
|
943
970
|
background: white;
|
944
971
|
display: flex;
|
945
972
|
justify-content: center;
|
@@ -955,7 +982,7 @@
|
|
955
982
|
}
|
956
983
|
|
957
984
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/LayerTree/styles.module.css/#css-module-data */
|
958
|
-
.
|
985
|
+
._LayerTree_o89yt_1 {
|
959
986
|
color: var(--puck-color-grey-2);
|
960
987
|
font-family: var(--puck-font-stack);
|
961
988
|
font-size: var(--puck-font-size-xxs);
|
@@ -964,77 +991,282 @@
|
|
964
991
|
list-style: none;
|
965
992
|
padding: 0;
|
966
993
|
}
|
967
|
-
._LayerTree-
|
994
|
+
._LayerTree-zoneTitle_o89yt_11 {
|
968
995
|
color: var(--puck-color-grey-4);
|
969
996
|
font-size: var(--puck-font-size-xxxs);
|
970
997
|
text-transform: uppercase;
|
971
998
|
}
|
972
|
-
._LayerTree-
|
999
|
+
._LayerTree-helper_o89yt_17 {
|
973
1000
|
text-align: center;
|
974
1001
|
color: var(--puck-color-grey-6);
|
975
1002
|
font-family: var(--puck-font-stack);
|
976
1003
|
margin: 8px 4px;
|
977
1004
|
}
|
978
|
-
.
|
1005
|
+
._Layer_o89yt_1 {
|
979
1006
|
position: relative;
|
980
1007
|
border: 1px solid transparent;
|
981
1008
|
}
|
982
|
-
._Layer-
|
983
|
-
padding-left:
|
984
|
-
padding-right:
|
985
|
-
border-radius:
|
1009
|
+
._Layer-inner_o89yt_29 {
|
1010
|
+
padding-left: 12px;
|
1011
|
+
padding-right: 4px;
|
1012
|
+
border-radius: 4px;
|
986
1013
|
}
|
987
|
-
._Layer--
|
988
|
-
padding-left:
|
1014
|
+
._Layer--containsZone_o89yt_35 > ._Layer-inner_o89yt_29 {
|
1015
|
+
padding-left: 0;
|
989
1016
|
}
|
990
|
-
._Layer-
|
1017
|
+
._Layer-clickable_o89yt_39 {
|
991
1018
|
align-items: center;
|
992
1019
|
display: flex;
|
993
1020
|
}
|
994
|
-
._Layer-
|
1021
|
+
._Layer-inner_o89yt_29:hover {
|
995
1022
|
cursor: pointer;
|
996
1023
|
}
|
997
|
-
.
|
998
|
-
._Layer--
|
1024
|
+
._Layer_o89yt_1:not(._Layer--isSelected_o89yt_48) > ._Layer-inner_o89yt_29:hover,
|
1025
|
+
._Layer--isHovering_o89yt_49 > ._Layer-inner_o89yt_29 {
|
999
1026
|
color: var(--puck-color-blue);
|
1000
1027
|
background: var(--puck-color-azure-85);
|
1001
1028
|
}
|
1002
|
-
._Layer--
|
1029
|
+
._Layer--isSelected_o89yt_48 {
|
1003
1030
|
background: var(--puck-color-azure-9);
|
1004
1031
|
border-color: var(--puck-color-azure-7);
|
1005
1032
|
border-radius: 4px;
|
1006
1033
|
}
|
1007
|
-
._Layer--
|
1034
|
+
._Layer--isSelected_o89yt_48 > ._Layer-inner_o89yt_29 {
|
1008
1035
|
background: var(--puck-color-azure-85);
|
1009
1036
|
font-weight: 600;
|
1010
1037
|
}
|
1011
|
-
._Layer--
|
1012
|
-
._Layer--
|
1038
|
+
._Layer--isSelected_o89yt_48 > ._Layer-inner_o89yt_29 > ._Layer-clickable_o89yt_39 > ._Layer-chevron_o89yt_65,
|
1039
|
+
._Layer--childIsSelected_o89yt_66 > ._Layer-inner_o89yt_29 > ._Layer-clickable_o89yt_39 > ._Layer-chevron_o89yt_65 {
|
1013
1040
|
transform: scaleY(-1);
|
1014
1041
|
}
|
1015
|
-
._Layer-
|
1042
|
+
._Layer-zones_o89yt_70 {
|
1016
1043
|
display: none;
|
1017
|
-
margin-left:
|
1044
|
+
margin-left: 12px;
|
1018
1045
|
}
|
1019
|
-
._Layer--
|
1020
|
-
._Layer--
|
1046
|
+
._Layer--isSelected_o89yt_48 > ._Layer-zones_o89yt_70,
|
1047
|
+
._Layer--childIsSelected_o89yt_66 > ._Layer-zones_o89yt_70 {
|
1021
1048
|
display: block;
|
1022
1049
|
}
|
1023
|
-
._Layer-
|
1024
|
-
margin-left:
|
1050
|
+
._Layer-zones_o89yt_70 > ._LayerTree_o89yt_1 {
|
1051
|
+
margin-left: 12px;
|
1025
1052
|
}
|
1026
|
-
._Layer-
|
1027
|
-
._LayerTree-
|
1053
|
+
._Layer-title_o89yt_84,
|
1054
|
+
._LayerTree-zoneTitle_o89yt_11 {
|
1028
1055
|
display: flex;
|
1029
1056
|
gap: 8px;
|
1030
1057
|
align-items: center;
|
1031
1058
|
margin: 8px 4px;
|
1059
|
+
overflow-x: hidden;
|
1060
|
+
}
|
1061
|
+
._Layer-name_o89yt_93 {
|
1062
|
+
overflow-x: hidden;
|
1063
|
+
text-overflow: ellipsis;
|
1064
|
+
white-space: nowrap;
|
1032
1065
|
}
|
1033
|
-
._Layer-
|
1066
|
+
._Layer-icon_o89yt_99 {
|
1034
1067
|
color: var(--puck-color-rose-6);
|
1035
1068
|
margin-top: 4px;
|
1036
1069
|
}
|
1037
|
-
._Layer-
|
1070
|
+
._Layer-zoneIcon_o89yt_104 {
|
1038
1071
|
color: var(--puck-color-grey-7);
|
1039
1072
|
margin-top: 4px;
|
1040
1073
|
}
|
1074
|
+
|
1075
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/MenuBar/styles.module.css/#css-module-data */
|
1076
|
+
._MenuBar_12sp7_1 {
|
1077
|
+
background-color: var(--puck-color-white);
|
1078
|
+
border-bottom: 1px solid var(--puck-color-grey-8);
|
1079
|
+
display: none;
|
1080
|
+
left: 0;
|
1081
|
+
margin-top: 1px;
|
1082
|
+
padding: 8px 16px;
|
1083
|
+
position: absolute;
|
1084
|
+
right: 0;
|
1085
|
+
top: 100%;
|
1086
|
+
z-index: 2;
|
1087
|
+
}
|
1088
|
+
._MenuBar--menuOpen_12sp7_14 {
|
1089
|
+
display: block;
|
1090
|
+
}
|
1091
|
+
@media (min-width: 638px) {
|
1092
|
+
._MenuBar_12sp7_1 {
|
1093
|
+
border: none;
|
1094
|
+
display: block;
|
1095
|
+
margin-top: 0;
|
1096
|
+
overflow-y: visible;
|
1097
|
+
padding: 0;
|
1098
|
+
position: static;
|
1099
|
+
}
|
1100
|
+
}
|
1101
|
+
._MenuBar-inner_12sp7_29 {
|
1102
|
+
align-items: center;
|
1103
|
+
display: flex;
|
1104
|
+
flex-wrap: wrap;
|
1105
|
+
gap: 8px 16px;
|
1106
|
+
justify-content: flex-end;
|
1107
|
+
}
|
1108
|
+
@media (min-width: 638px) {
|
1109
|
+
._MenuBar-inner_12sp7_29 {
|
1110
|
+
display: flex;
|
1111
|
+
flex-direction: row;
|
1112
|
+
flex-wrap: nowrap;
|
1113
|
+
}
|
1114
|
+
}
|
1115
|
+
._MenuBar-history_12sp7_45 {
|
1116
|
+
display: flex;
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/styles.module.css/#css-module-data */
|
1120
|
+
._Puck_103k9_19 {
|
1121
|
+
--puck-frame-width: auto;
|
1122
|
+
--puck-side-bar-width: 186px;
|
1123
|
+
--puck-space-px: 16px;
|
1124
|
+
bottom: 0;
|
1125
|
+
display: grid;
|
1126
|
+
grid-template-areas: "header header header" "left editor right";
|
1127
|
+
grid-template-columns: 0 var(--puck-frame-width) 0;
|
1128
|
+
grid-template-rows: min-content auto;
|
1129
|
+
height: 100vh;
|
1130
|
+
left: 0;
|
1131
|
+
position: fixed;
|
1132
|
+
right: 0;
|
1133
|
+
top: 0;
|
1134
|
+
}
|
1135
|
+
._Puck--leftSideBarVisible_103k9_35 {
|
1136
|
+
grid-template-columns: var(--puck-side-bar-width) var(--puck-frame-width) 0;
|
1137
|
+
}
|
1138
|
+
._Puck--rightSideBarVisible_103k9_41 {
|
1139
|
+
grid-template-columns: 0 var(--puck-frame-width) var(--puck-side-bar-width);
|
1140
|
+
}
|
1141
|
+
._Puck--leftSideBarVisible_103k9_35._Puck--rightSideBarVisible_103k9_41 {
|
1142
|
+
grid-template-columns: var(--puck-side-bar-width) var(--puck-frame-width) var(--puck-side-bar-width);
|
1143
|
+
}
|
1144
|
+
@media (min-width: 458px) {
|
1145
|
+
._Puck_103k9_19 {
|
1146
|
+
--puck-frame-width: minmax(266px, auto);
|
1147
|
+
}
|
1148
|
+
}
|
1149
|
+
@media (min-width: 638px) {
|
1150
|
+
._Puck_103k9_19 {
|
1151
|
+
--puck-side-bar-width: minmax(186px, 250px);
|
1152
|
+
}
|
1153
|
+
}
|
1154
|
+
@media (min-width: 766px) {
|
1155
|
+
._Puck_103k9_19 {
|
1156
|
+
--puck-frame-width: auto;
|
1157
|
+
}
|
1158
|
+
}
|
1159
|
+
@media (min-width: 990px) {
|
1160
|
+
._Puck_103k9_19 {
|
1161
|
+
--puck-side-bar-width: 256px;
|
1162
|
+
}
|
1163
|
+
}
|
1164
|
+
@media (min-width: 1198px) {
|
1165
|
+
._Puck_103k9_19 {
|
1166
|
+
--puck-side-bar-width: 274px;
|
1167
|
+
}
|
1168
|
+
}
|
1169
|
+
@media (min-width: 1398px) {
|
1170
|
+
._Puck_103k9_19 {
|
1171
|
+
--puck-side-bar-width: 290px;
|
1172
|
+
}
|
1173
|
+
}
|
1174
|
+
@media (min-width: 1598px) {
|
1175
|
+
._Puck_103k9_19 {
|
1176
|
+
--puck-side-bar-width: 320px;
|
1177
|
+
}
|
1178
|
+
}
|
1179
|
+
._Puck-header_103k9_95 {
|
1180
|
+
background: var(--puck-color-white);
|
1181
|
+
border-bottom: 1px solid var(--puck-color-grey-8);
|
1182
|
+
color: var(--puck-color-black);
|
1183
|
+
grid-area: header;
|
1184
|
+
position: relative;
|
1185
|
+
max-width: 100vw;
|
1186
|
+
}
|
1187
|
+
._Puck-headerInner_103k9_104 {
|
1188
|
+
align-items: end;
|
1189
|
+
display: grid;
|
1190
|
+
gap: var(--puck-space-px);
|
1191
|
+
grid-template-areas: "left middle right";
|
1192
|
+
grid-template-columns: 1fr auto 1fr;
|
1193
|
+
grid-template-rows: auto;
|
1194
|
+
padding: var(--puck-space-px);
|
1195
|
+
}
|
1196
|
+
._Puck-headerToggle_103k9_114 {
|
1197
|
+
color: var(--puck-color-grey-4);
|
1198
|
+
display: flex;
|
1199
|
+
margin-left: -4px;
|
1200
|
+
padding-top: 2px;
|
1201
|
+
}
|
1202
|
+
._Puck-rightSideBarToggle_103k9_121 {
|
1203
|
+
transform: rotate(180deg);
|
1204
|
+
}
|
1205
|
+
._Puck--rightSideBarVisible_103k9_41 ._Puck-rightSideBarToggle_103k9_121,
|
1206
|
+
._Puck--leftSideBarVisible_103k9_35 ._Puck-leftSideBarToggle_103k9_126 {
|
1207
|
+
color: var(--puck-color-black);
|
1208
|
+
}
|
1209
|
+
._Puck-headerTitle_103k9_130 {
|
1210
|
+
align-self: center;
|
1211
|
+
}
|
1212
|
+
._Puck-headerPath_103k9_134 {
|
1213
|
+
font-family: var(--puck-font-family-monospaced);
|
1214
|
+
font-size: var(--puck-font-size-xxs);
|
1215
|
+
font-weight: normal;
|
1216
|
+
word-break: break-all;
|
1217
|
+
}
|
1218
|
+
._Puck-headerTools_103k9_141 {
|
1219
|
+
display: flex;
|
1220
|
+
gap: 16px;
|
1221
|
+
justify-content: flex-end;
|
1222
|
+
}
|
1223
|
+
._Puck-menuButton_103k9_147 {
|
1224
|
+
color: var(--puck-color-grey-4);
|
1225
|
+
margin-left: -4px;
|
1226
|
+
}
|
1227
|
+
._Puck--menuOpen_103k9_152 ._Puck-menuButton_103k9_147 {
|
1228
|
+
color: var(--puck-color-black);
|
1229
|
+
}
|
1230
|
+
@media (min-width: 638px) {
|
1231
|
+
._Puck-menuButton_103k9_147 {
|
1232
|
+
display: none;
|
1233
|
+
}
|
1234
|
+
}
|
1235
|
+
._Puck-leftSideBar_103k9_126 {
|
1236
|
+
background: var(--puck-color-grey-11);
|
1237
|
+
border-right: 1px solid var(--puck-color-grey-8);
|
1238
|
+
display: flex;
|
1239
|
+
flex-direction: column;
|
1240
|
+
grid-area: left;
|
1241
|
+
overflow-y: auto;
|
1242
|
+
}
|
1243
|
+
._Puck-frame_103k9_171 {
|
1244
|
+
display: flex;
|
1245
|
+
flex-direction: column;
|
1246
|
+
grid-area: editor;
|
1247
|
+
overflow: auto;
|
1248
|
+
position: relative;
|
1249
|
+
}
|
1250
|
+
._Puck-root_103k9_179 {
|
1251
|
+
box-shadow: 0 0 0 calc(var(--puck-space-px) * 2) var(--puck-color-grey-10);
|
1252
|
+
margin: var(--puck-space-px);
|
1253
|
+
min-width: 321px;
|
1254
|
+
zoom: 0.75;
|
1255
|
+
}
|
1256
|
+
@media (min-width: 1198px) {
|
1257
|
+
._Puck-root_103k9_179 {
|
1258
|
+
margin: calc(var(--puck-space-px) * 2);
|
1259
|
+
}
|
1260
|
+
}
|
1261
|
+
._Puck-page_103k9_192 {
|
1262
|
+
border: 1px solid var(--puck-color-grey-8);
|
1263
|
+
}
|
1264
|
+
._Puck-rightSideBar_103k9_121 {
|
1265
|
+
background: var(--puck-color-white);
|
1266
|
+
border-left: 1px solid var(--puck-color-grey-8);
|
1267
|
+
display: flex;
|
1268
|
+
flex-direction: column;
|
1269
|
+
font-family: var(--puck-font-stack);
|
1270
|
+
grid-area: right;
|
1271
|
+
overflow-y: auto;
|
1272
|
+
}
|