@measured/puck 0.14.0-canary.924c85a → 0.14.0-canary.9fa2428
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/{Config-29dc2731.d.ts → Config-Bgx_Bij_.d.ts} +1 -1
- package/dist/index.css +353 -353
- package/dist/index.d.ts +9 -4
- package/dist/index.js +429 -229
- package/dist/rsc.d.ts +1 -1
- package/package.json +3 -3
package/dist/index.css
CHANGED
@@ -136,8 +136,8 @@
|
|
136
136
|
|
137
137
|
/* styles.css */
|
138
138
|
|
139
|
-
/*
|
140
|
-
.
|
139
|
+
/* components/Button/Button.module.css */
|
140
|
+
.Button_Button {
|
141
141
|
appearance: none;
|
142
142
|
background: none;
|
143
143
|
border: 1px solid transparent;
|
@@ -159,81 +159,83 @@
|
|
159
159
|
white-space: nowrap;
|
160
160
|
margin: 0;
|
161
161
|
}
|
162
|
-
.
|
163
|
-
.
|
162
|
+
.Button_Button:hover,
|
163
|
+
.Button_Button:active {
|
164
164
|
transition: none;
|
165
165
|
}
|
166
|
-
.
|
166
|
+
.Button_Button--medium {
|
167
167
|
min-height: 34px;
|
168
168
|
padding-bottom: 7px;
|
169
169
|
padding-left: 19px;
|
170
170
|
padding-right: 19px;
|
171
171
|
padding-top: 7px;
|
172
172
|
}
|
173
|
-
.
|
173
|
+
.Button_Button--large {
|
174
174
|
padding-bottom: 11px;
|
175
175
|
padding-left: 19px;
|
176
176
|
padding-right: 19px;
|
177
177
|
padding-top: 11px;
|
178
178
|
}
|
179
|
-
.
|
179
|
+
.Button_Button-icon {
|
180
180
|
margin-top: 2px;
|
181
181
|
}
|
182
|
-
.
|
182
|
+
.Button_Button--primary {
|
183
183
|
background: var(--puck-color-azure-04);
|
184
184
|
}
|
185
|
-
.
|
185
|
+
.Button_Button:focus-visible {
|
186
186
|
outline: 2px solid var(--puck-color-azure-05);
|
187
187
|
outline-offset: 2px;
|
188
188
|
}
|
189
189
|
@media (hover: hover) and (pointer: fine) {
|
190
|
-
.
|
190
|
+
.Button_Button--primary:hover {
|
191
191
|
background-color: var(--puck-color-azure-03);
|
192
192
|
}
|
193
193
|
}
|
194
|
-
.
|
194
|
+
.Button_Button--primary:active {
|
195
195
|
background-color: var(--puck-color-azure-02);
|
196
196
|
}
|
197
|
-
.
|
198
|
-
border: 1px solid
|
199
|
-
color:
|
197
|
+
.Button_Button--secondary {
|
198
|
+
border: 1px solid currentColor;
|
199
|
+
color: currentColor;
|
200
200
|
}
|
201
201
|
@media (hover: hover) and (pointer: fine) {
|
202
|
-
.
|
202
|
+
.Button_Button--secondary:hover {
|
203
203
|
background-color: var(--puck-color-azure-12);
|
204
|
+
color: var(--puck-color-black);
|
204
205
|
}
|
205
206
|
}
|
206
|
-
.
|
207
|
+
.Button_Button--secondary:active {
|
207
208
|
background-color: var(--puck-color-azure-11);
|
209
|
+
color: var(--puck-color-black);
|
208
210
|
}
|
209
|
-
.
|
211
|
+
.Button_Button--flush {
|
210
212
|
border-radius: 0;
|
211
213
|
}
|
212
|
-
.
|
213
|
-
.
|
214
|
+
.Button_Button--disabled,
|
215
|
+
.Button_Button--disabled:hover {
|
214
216
|
background-color: var(--puck-color-grey-07);
|
215
217
|
color: var(--puck-color-grey-03);
|
216
218
|
cursor: not-allowed;
|
217
219
|
}
|
218
|
-
.
|
220
|
+
.Button_Button--fullWidth {
|
219
221
|
justify-content: center;
|
220
222
|
width: 100%;
|
221
223
|
}
|
222
|
-
.
|
224
|
+
.Button_Button-spinner {
|
223
225
|
padding-left: 8px;
|
224
226
|
}
|
225
227
|
|
226
|
-
/*
|
227
|
-
.
|
228
|
+
/* components/Drawer/styles.module.css */
|
229
|
+
.styles_Drawer {
|
228
230
|
font-family: var(--puck-font-family);
|
229
231
|
}
|
230
|
-
.
|
232
|
+
.styles_DrawerItem-default .styles_DrawerItem-draggableWrapper {
|
231
233
|
padding-bottom: 12px;
|
232
234
|
}
|
233
|
-
.
|
235
|
+
.styles_DrawerItem:last-of-type .styles_DrawerItem-default .styles_DrawerItem-draggableWrapper {
|
234
236
|
padding-bottom: 0;
|
235
237
|
}
|
236
|
-
.
|
238
|
+
.styles_DrawerItem-draggable {
|
237
239
|
background: var(--puck-color-white);
|
238
240
|
padding: 12px;
|
239
241
|
display: flex;
|
@@ -245,61 +247,61 @@
|
|
245
247
|
cursor: grab;
|
246
248
|
transition: background-color 50ms ease-in, color 50ms ease-in;
|
247
249
|
}
|
248
|
-
.
|
250
|
+
.styles_DrawerItem:focus-visible {
|
249
251
|
outline: 0;
|
250
252
|
}
|
251
|
-
.
|
253
|
+
.styles_Drawer:not(.styles_Drawer--isDraggingFrom) .styles_DrawerItem:focus-visible .styles_DrawerItem-draggable {
|
252
254
|
border-radius: 4px;
|
253
255
|
outline: 2px solid var(--puck-color-azure-05);
|
254
256
|
outline-offset: 2px;
|
255
257
|
}
|
256
258
|
@media (hover: hover) and (pointer: fine) {
|
257
|
-
.
|
259
|
+
.styles_Drawer:not(.styles_Drawer--isDraggingFrom) .styles_DrawerItem-draggable:hover {
|
258
260
|
background-color: var(--puck-color-azure-12);
|
259
261
|
color: var(--puck-color-azure-04);
|
260
262
|
transition: none;
|
261
263
|
}
|
262
264
|
}
|
263
|
-
.
|
265
|
+
.styles_DrawerItem-name {
|
264
266
|
overflow-x: hidden;
|
265
267
|
text-overflow: ellipsis;
|
266
268
|
white-space: nowrap;
|
267
269
|
}
|
268
270
|
|
269
|
-
/*
|
270
|
-
.
|
271
|
+
/* components/DragIcon/styles.module.css */
|
272
|
+
.styles_DragIcon {
|
271
273
|
color: var(--puck-color-grey-05);
|
272
274
|
cursor: grab;
|
273
275
|
padding: 4px;
|
274
276
|
border-radius: 4px;
|
275
277
|
}
|
276
278
|
@media (hover: hover) and (pointer: fine) {
|
277
|
-
.
|
279
|
+
.styles_DragIcon:hover {
|
278
280
|
color: var(--puck-color-azure-05);
|
279
281
|
background-color: var(--puck-color-azure-12);
|
280
282
|
}
|
281
283
|
}
|
282
284
|
|
283
|
-
/*
|
284
|
-
.
|
285
|
+
/* components/DraggableComponent/styles.module.css */
|
286
|
+
.styles_DraggableComponent {
|
285
287
|
pointer-events: auto;
|
286
288
|
--overlay-background: color-mix( in srgb, var(--puck-color-azure-08) 30%, transparent );
|
287
289
|
}
|
288
|
-
.
|
290
|
+
.styles_DraggableComponent--isDragging {
|
289
291
|
background: color-mix(in srgb, var(--puck-color-azure-08) 10%, transparent);
|
290
292
|
overflow: hidden;
|
291
293
|
}
|
292
|
-
.
|
294
|
+
.styles_DraggableComponent-contents {
|
293
295
|
position: relative;
|
294
296
|
pointer-events: none;
|
295
297
|
z-index: 0;
|
296
298
|
}
|
297
|
-
.
|
298
|
-
.
|
299
|
+
.styles_DraggableComponent-contents::before,
|
300
|
+
.styles_DraggableComponent-contents::after {
|
299
301
|
content: " ";
|
300
302
|
display: table;
|
301
303
|
}
|
302
|
-
.
|
304
|
+
.styles_DraggableComponent-overlay {
|
303
305
|
cursor: pointer;
|
304
306
|
height: 100%;
|
305
307
|
width: 100%;
|
@@ -310,13 +312,13 @@
|
|
310
312
|
box-sizing: border-box;
|
311
313
|
z-index: 1;
|
312
314
|
}
|
313
|
-
.
|
315
|
+
.styles_DraggableComponent:focus-visible > .styles_DraggableComponent-overlay {
|
314
316
|
outline: 1px solid var(--puck-color-azure-05);
|
315
317
|
}
|
316
|
-
.
|
318
|
+
.styles_DraggableComponent--isDragging > .styles_DraggableComponent-overlay {
|
317
319
|
outline: 1px var(--puck-color-azure-09) solid !important;
|
318
320
|
}
|
319
|
-
.
|
321
|
+
.styles_DraggableComponent-loadingOverlay {
|
320
322
|
background: var(--puck-color-white);
|
321
323
|
color: var(--puck-color-grey-03);
|
322
324
|
border-radius: 4px;
|
@@ -331,32 +333,32 @@
|
|
331
333
|
opacity: 0.8;
|
332
334
|
z-index: 1;
|
333
335
|
}
|
334
|
-
.
|
336
|
+
.styles_DraggableComponent:hover:not(.styles_DraggableComponent--isLocked) > .styles_DraggableComponent-overlay {
|
335
337
|
background: var(--overlay-background);
|
336
338
|
pointer-events: none;
|
337
339
|
}
|
338
|
-
.
|
340
|
+
.styles_DraggableComponent--forceHover > .styles_DraggableComponent-overlay {
|
339
341
|
background: var(--overlay-background);
|
340
342
|
pointer-events: none;
|
341
343
|
}
|
342
|
-
.
|
344
|
+
.styles_DraggableComponent:not(.styles_DraggableComponent--isSelected):hover > .styles_DraggableComponent-overlay {
|
343
345
|
outline: 2px var(--puck-color-azure-09) solid !important;
|
344
346
|
}
|
345
|
-
.
|
347
|
+
.styles_DraggableComponent--indicativeHover > .styles_DraggableComponent-overlay {
|
346
348
|
pointer-events: none;
|
347
349
|
}
|
348
|
-
.
|
350
|
+
.styles_DraggableComponent:not(.styles_DraggableComponent--isSelected):has(.styles_DraggableComponent:hover > .styles_DraggableComponent-overlay) > .styles_DraggableComponent-overlay {
|
349
351
|
display: none;
|
350
352
|
}
|
351
|
-
.
|
353
|
+
.styles_DraggableComponent--isSelected > .styles_DraggableComponent-overlay {
|
352
354
|
outline: 2px var(--puck-color-azure-07) solid !important;
|
353
355
|
}
|
354
|
-
.
|
356
|
+
.styles_DraggableComponent--isSelected > .styles_DraggableComponent-actionsOverlay {
|
355
357
|
display: block;
|
356
358
|
position: sticky;
|
357
359
|
z-index: 2;
|
358
360
|
}
|
359
|
-
.
|
361
|
+
.styles_DraggableComponent-actions {
|
360
362
|
position: absolute;
|
361
363
|
width: auto;
|
362
364
|
padding: 4px;
|
@@ -373,10 +375,10 @@
|
|
373
375
|
box-sizing: border-box;
|
374
376
|
transform-origin: right top;
|
375
377
|
}
|
376
|
-
.
|
378
|
+
.styles_DraggableComponent--isSelected > .styles_DraggableComponent-actionsOverlay > .styles_DraggableComponent-actions {
|
377
379
|
display: flex;
|
378
380
|
}
|
379
|
-
.
|
381
|
+
.styles_DraggableComponent-actionsLabel {
|
380
382
|
color: var(--puck-color-grey-08);
|
381
383
|
display: flex;
|
382
384
|
font-size: var(--puck-font-size-xxxs);
|
@@ -390,7 +392,7 @@
|
|
390
392
|
text-overflow: ellipsis;
|
391
393
|
white-space: nowrap;
|
392
394
|
}
|
393
|
-
.
|
395
|
+
.styles_DraggableComponent-action {
|
394
396
|
background: transparent;
|
395
397
|
border: none;
|
396
398
|
color: var(--puck-color-grey-08);
|
@@ -403,23 +405,23 @@
|
|
403
405
|
justify-content: center;
|
404
406
|
transition: color 50ms ease-in;
|
405
407
|
}
|
406
|
-
.
|
408
|
+
.styles_DraggableComponent-action:focus-visible {
|
407
409
|
outline: 2px solid var(--puck-color-azure-05);
|
408
410
|
outline-offset: -2px;
|
409
411
|
}
|
410
412
|
@media (hover: hover) and (pointer: fine) {
|
411
|
-
.
|
413
|
+
.styles_DraggableComponent-action:hover {
|
412
414
|
color: var(--puck-color-azure-06);
|
413
415
|
transition: none;
|
414
416
|
}
|
415
417
|
}
|
416
|
-
.
|
418
|
+
.styles_DraggableComponent-action:active {
|
417
419
|
color: var(--puck-color-azure-07);
|
418
420
|
transition: none;
|
419
421
|
}
|
420
422
|
|
421
|
-
/*
|
422
|
-
.
|
423
|
+
/* components/DropZone/styles.module.css */
|
424
|
+
.styles_DropZone {
|
423
425
|
margin-left: auto;
|
424
426
|
margin-right: auto;
|
425
427
|
position: relative;
|
@@ -427,36 +429,36 @@
|
|
427
429
|
outline-offset: -1px;
|
428
430
|
width: 100%;
|
429
431
|
}
|
430
|
-
.
|
432
|
+
.styles_DropZone-content {
|
431
433
|
min-height: 128px;
|
432
434
|
height: 100%;
|
433
435
|
}
|
434
|
-
.
|
436
|
+
.styles_DropZone--userIsDragging .styles_DropZone-content {
|
435
437
|
pointer-events: all;
|
436
438
|
}
|
437
|
-
.
|
439
|
+
.styles_DropZone--userIsDragging:not(.styles_DropZone--draggingOverArea):not(.styles_DropZone--draggingNewComponent) > .styles_DropZone-content {
|
438
440
|
pointer-events: none;
|
439
441
|
}
|
440
|
-
.
|
441
|
-
.
|
442
|
-
.
|
442
|
+
.styles_DropZone--isAreaSelected,
|
443
|
+
.styles_DropZone--draggingOverArea:not(:has(.styles_DropZone--hoveringOverArea)),
|
444
|
+
.styles_DropZone--hoveringOverArea:not(.styles_DropZone--isDisabled):not(.styles_DropZone--isRootZone):not(.styles_DropZone--hasChildren) {
|
443
445
|
background: color-mix(in srgb, var(--puck-color-azure-09) 30%, transparent);
|
444
446
|
outline: 2px dashed var(--puck-color-azure-08);
|
445
447
|
}
|
446
|
-
.
|
448
|
+
.styles_DropZone:not(.styles_DropZone--hasChildren) {
|
447
449
|
background: color-mix(in srgb, var(--puck-color-azure-09) 30%, transparent);
|
448
450
|
outline: 2px dashed var(--puck-color-azure-08);
|
449
451
|
}
|
450
|
-
.
|
452
|
+
.styles_DropZone--isDestination {
|
451
453
|
outline: 2px dashed var(--puck-color-azure-04) !important;
|
452
454
|
}
|
453
|
-
.
|
455
|
+
.styles_DropZone--isDestination:not(.styles_DropZone--isRootZone) {
|
454
456
|
background: var(--puck-color-azure-10) !important;
|
455
457
|
}
|
456
|
-
.
|
458
|
+
.styles_DropZone-item {
|
457
459
|
position: relative;
|
458
460
|
}
|
459
|
-
.
|
461
|
+
.styles_DropZone-hitbox {
|
460
462
|
position: absolute;
|
461
463
|
bottom: -12px;
|
462
464
|
height: 24px;
|
@@ -464,8 +466,8 @@
|
|
464
466
|
z-index: 1;
|
465
467
|
}
|
466
468
|
|
467
|
-
/*
|
468
|
-
.
|
469
|
+
/* components/IconButton/IconButton.module.css */
|
470
|
+
.IconButton_IconButton {
|
469
471
|
align-items: center;
|
470
472
|
background: transparent;
|
471
473
|
border: none;
|
@@ -477,23 +479,23 @@
|
|
477
479
|
padding: 4px;
|
478
480
|
transition: background-color 50ms ease-in, color 50ms ease-in;
|
479
481
|
}
|
480
|
-
.
|
482
|
+
.IconButton_IconButton:focus-visible {
|
481
483
|
outline: 2px solid var(--puck-color-azure-05);
|
482
484
|
outline-offset: -2px;
|
483
485
|
}
|
484
486
|
@media (hover: hover) and (pointer: fine) {
|
485
|
-
.
|
487
|
+
.IconButton_IconButton:hover:not(.IconButton_IconButton--disabled) {
|
486
488
|
background: var(--puck-color-azure-12);
|
487
489
|
color: var(--puck-color-azure-04);
|
488
490
|
cursor: pointer;
|
489
491
|
transition: none;
|
490
492
|
}
|
491
493
|
}
|
492
|
-
.
|
494
|
+
.IconButton_IconButton:active {
|
493
495
|
background: var(--puck-color-azure-11);
|
494
496
|
transition: none;
|
495
497
|
}
|
496
|
-
.
|
498
|
+
.IconButton_IconButton-title {
|
497
499
|
clip: rect(0 0 0 0);
|
498
500
|
clip-path: inset(100%);
|
499
501
|
height: 1px;
|
@@ -502,44 +504,44 @@
|
|
502
504
|
white-space: nowrap;
|
503
505
|
width: 1px;
|
504
506
|
}
|
505
|
-
.
|
507
|
+
.IconButton_IconButton--disabled {
|
506
508
|
color: var(--puck-color-grey-07);
|
507
509
|
}
|
508
510
|
|
509
|
-
/*
|
510
|
-
.
|
511
|
+
/* components/SidebarSection/styles.module.css */
|
512
|
+
.styles_SidebarSection {
|
511
513
|
display: flex;
|
512
514
|
position: relative;
|
513
515
|
flex-direction: column;
|
514
516
|
color: var(--puck-color-black);
|
515
517
|
}
|
516
|
-
.
|
518
|
+
.styles_SidebarSection:last-of-type {
|
517
519
|
flex-grow: 1;
|
518
520
|
}
|
519
|
-
.
|
521
|
+
.styles_SidebarSection-title {
|
520
522
|
background: var(--puck-color-white);
|
521
523
|
padding: 16px;
|
522
524
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
523
525
|
border-top: 1px solid var(--puck-color-grey-09);
|
524
526
|
overflow-x: auto;
|
525
527
|
}
|
526
|
-
.
|
528
|
+
.styles_SidebarSection--noBorderTop > .styles_SidebarSection-title {
|
527
529
|
border-top: 0px;
|
528
530
|
}
|
529
|
-
.
|
531
|
+
.styles_SidebarSection-content {
|
530
532
|
padding: 16px;
|
531
533
|
}
|
532
|
-
.
|
534
|
+
.styles_SidebarSection--noPadding > .styles_SidebarSection-content {
|
533
535
|
padding: 0px;
|
534
536
|
}
|
535
|
-
.
|
537
|
+
.styles_SidebarSection--noPadding > .styles_SidebarSection-content:last-child {
|
536
538
|
padding-bottom: 4px;
|
537
539
|
}
|
538
|
-
.
|
540
|
+
.styles_SidebarSection:last-of-type .styles_SidebarSection-content {
|
539
541
|
border-bottom: none;
|
540
542
|
flex-grow: 1;
|
541
543
|
}
|
542
|
-
.
|
544
|
+
.styles_SidebarSection-breadcrumbLabel {
|
543
545
|
background: none;
|
544
546
|
border: 0;
|
545
547
|
border-radius: 2px;
|
@@ -550,34 +552,34 @@
|
|
550
552
|
padding: 0;
|
551
553
|
transition: color 50ms ease-in;
|
552
554
|
}
|
553
|
-
.
|
555
|
+
.styles_SidebarSection-breadcrumbLabel:focus-visible {
|
554
556
|
outline: 2px solid var(--puck-color-azure-05);
|
555
557
|
outline-offset: 2px;
|
556
558
|
}
|
557
559
|
@media (hover: hover) and (pointer: fine) {
|
558
|
-
.
|
560
|
+
.styles_SidebarSection-breadcrumbLabel:hover {
|
559
561
|
color: var(--puck-color-azure-03);
|
560
562
|
transition: none;
|
561
563
|
}
|
562
564
|
}
|
563
|
-
.
|
565
|
+
.styles_SidebarSection-breadcrumbLabel:active {
|
564
566
|
color: var(--puck-color-azure-02);
|
565
567
|
transition: none;
|
566
568
|
}
|
567
|
-
.
|
569
|
+
.styles_SidebarSection-breadcrumbs {
|
568
570
|
align-items: center;
|
569
571
|
display: flex;
|
570
572
|
gap: 4px;
|
571
573
|
}
|
572
|
-
.
|
574
|
+
.styles_SidebarSection-breadcrumb {
|
573
575
|
align-items: center;
|
574
576
|
display: flex;
|
575
577
|
gap: 4px;
|
576
578
|
}
|
577
|
-
.
|
579
|
+
.styles_SidebarSection-heading {
|
578
580
|
padding-right: 16px;
|
579
581
|
}
|
580
|
-
.
|
582
|
+
.styles_SidebarSection-loadingOverlay {
|
581
583
|
background: var(--puck-color-white);
|
582
584
|
display: flex;
|
583
585
|
justify-content: center;
|
@@ -592,45 +594,45 @@
|
|
592
594
|
opacity: 0.8;
|
593
595
|
}
|
594
596
|
|
595
|
-
/*
|
596
|
-
.
|
597
|
+
/* components/Heading/styles.module.css */
|
598
|
+
.styles_Heading {
|
597
599
|
display: block;
|
598
600
|
color: var(--puck-color-black);
|
599
601
|
font-weight: 700;
|
600
602
|
margin: 0;
|
601
603
|
}
|
602
|
-
.
|
604
|
+
.styles_Heading b {
|
603
605
|
font-weight: 700;
|
604
606
|
}
|
605
|
-
.
|
607
|
+
.styles_Heading--xxxxl {
|
606
608
|
font-size: var(--puck-font-size-xxxxl);
|
607
609
|
letter-spacing: 0.08ch;
|
608
610
|
font-weight: 800;
|
609
611
|
}
|
610
|
-
.
|
612
|
+
.styles_Heading--xxxl {
|
611
613
|
font-size: var(--puck-font-size-xxxl);
|
612
614
|
}
|
613
|
-
.
|
615
|
+
.styles_Heading--xxl {
|
614
616
|
font-size: var(--puck-font-size-xxl);
|
615
617
|
}
|
616
|
-
.
|
618
|
+
.styles_Heading--xl {
|
617
619
|
font-size: var(--puck-font-size-xl);
|
618
620
|
}
|
619
|
-
.
|
621
|
+
.styles_Heading--l {
|
620
622
|
font-size: var(--puck-font-size-l);
|
621
623
|
}
|
622
|
-
.
|
624
|
+
.styles_Heading--m {
|
623
625
|
font-size: var(--puck-font-size-m);
|
624
626
|
}
|
625
|
-
.
|
627
|
+
.styles_Heading--s {
|
626
628
|
font-size: var(--puck-font-size-s);
|
627
629
|
}
|
628
|
-
.
|
630
|
+
.styles_Heading--xs {
|
629
631
|
font-size: var(--puck-font-size-xs);
|
630
632
|
}
|
631
633
|
|
632
|
-
/*
|
633
|
-
.
|
634
|
+
/* components/MenuBar/styles.module.css */
|
635
|
+
.styles_MenuBar {
|
634
636
|
background-color: var(--puck-color-white);
|
635
637
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
636
638
|
display: none;
|
@@ -642,11 +644,11 @@
|
|
642
644
|
top: 100%;
|
643
645
|
z-index: 2;
|
644
646
|
}
|
645
|
-
.
|
647
|
+
.styles_MenuBar--menuOpen {
|
646
648
|
display: block;
|
647
649
|
}
|
648
650
|
@media (min-width: 638px) {
|
649
|
-
.
|
651
|
+
.styles_MenuBar {
|
650
652
|
border: none;
|
651
653
|
display: block;
|
652
654
|
margin-top: 0;
|
@@ -655,7 +657,7 @@
|
|
655
657
|
position: static;
|
656
658
|
}
|
657
659
|
}
|
658
|
-
.
|
660
|
+
.styles_MenuBar-inner {
|
659
661
|
align-items: center;
|
660
662
|
display: flex;
|
661
663
|
flex-wrap: wrap;
|
@@ -663,18 +665,18 @@
|
|
663
665
|
justify-content: flex-end;
|
664
666
|
}
|
665
667
|
@media (min-width: 638px) {
|
666
|
-
.
|
668
|
+
.styles_MenuBar-inner {
|
667
669
|
display: flex;
|
668
670
|
flex-direction: row;
|
669
671
|
flex-wrap: nowrap;
|
670
672
|
}
|
671
673
|
}
|
672
|
-
.
|
674
|
+
.styles_MenuBar-history {
|
673
675
|
display: flex;
|
674
676
|
}
|
675
677
|
|
676
|
-
/*
|
677
|
-
.
|
678
|
+
/* components/Puck/styles.module.css */
|
679
|
+
.styles_Puck {
|
678
680
|
--puck-frame-width: auto;
|
679
681
|
--puck-side-bar-width: 186px;
|
680
682
|
--puck-space-px: 16px;
|
@@ -690,51 +692,51 @@
|
|
690
692
|
right: 0;
|
691
693
|
top: 0;
|
692
694
|
}
|
693
|
-
.
|
695
|
+
.styles_Puck--leftSideBarVisible {
|
694
696
|
grid-template-columns: var(--puck-side-bar-width) var(--puck-frame-width) 0;
|
695
697
|
}
|
696
|
-
.
|
698
|
+
.styles_Puck--rightSideBarVisible {
|
697
699
|
grid-template-columns: 0 var(--puck-frame-width) var(--puck-side-bar-width);
|
698
700
|
}
|
699
|
-
.
|
701
|
+
.styles_Puck--leftSideBarVisible.styles_Puck--rightSideBarVisible {
|
700
702
|
grid-template-columns: var(--puck-side-bar-width) var(--puck-frame-width) var(--puck-side-bar-width);
|
701
703
|
}
|
702
704
|
@media (min-width: 458px) {
|
703
|
-
.
|
705
|
+
.styles_Puck {
|
704
706
|
--puck-frame-width: minmax(266px, auto);
|
705
707
|
}
|
706
708
|
}
|
707
709
|
@media (min-width: 638px) {
|
708
|
-
.
|
710
|
+
.styles_Puck {
|
709
711
|
--puck-side-bar-width: minmax(186px, 250px);
|
710
712
|
}
|
711
713
|
}
|
712
714
|
@media (min-width: 766px) {
|
713
|
-
.
|
715
|
+
.styles_Puck {
|
714
716
|
--puck-frame-width: auto;
|
715
717
|
}
|
716
718
|
}
|
717
719
|
@media (min-width: 990px) {
|
718
|
-
.
|
720
|
+
.styles_Puck {
|
719
721
|
--puck-side-bar-width: 256px;
|
720
722
|
}
|
721
723
|
}
|
722
724
|
@media (min-width: 1198px) {
|
723
|
-
.
|
725
|
+
.styles_Puck {
|
724
726
|
--puck-side-bar-width: 274px;
|
725
727
|
}
|
726
728
|
}
|
727
729
|
@media (min-width: 1398px) {
|
728
|
-
.
|
730
|
+
.styles_Puck {
|
729
731
|
--puck-side-bar-width: 290px;
|
730
732
|
}
|
731
733
|
}
|
732
734
|
@media (min-width: 1598px) {
|
733
|
-
.
|
735
|
+
.styles_Puck {
|
734
736
|
--puck-side-bar-width: 320px;
|
735
737
|
}
|
736
738
|
}
|
737
|
-
.
|
739
|
+
.styles_Puck-header {
|
738
740
|
background: var(--puck-color-white);
|
739
741
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
740
742
|
color: var(--puck-color-black);
|
@@ -742,7 +744,7 @@
|
|
742
744
|
position: relative;
|
743
745
|
max-width: 100vw;
|
744
746
|
}
|
745
|
-
.
|
747
|
+
.styles_Puck-headerInner {
|
746
748
|
align-items: end;
|
747
749
|
display: grid;
|
748
750
|
gap: var(--puck-space-px);
|
@@ -751,43 +753,43 @@
|
|
751
753
|
grid-template-rows: auto;
|
752
754
|
padding: var(--puck-space-px);
|
753
755
|
}
|
754
|
-
.
|
756
|
+
.styles_Puck-headerToggle {
|
755
757
|
color: var(--puck-color-grey-05);
|
756
758
|
display: flex;
|
757
759
|
margin-left: -4px;
|
758
760
|
padding-top: 2px;
|
759
761
|
}
|
760
|
-
.
|
761
|
-
.
|
762
|
+
.styles_Puck--rightSideBarVisible .styles_Puck-rightSideBarToggle,
|
763
|
+
.styles_Puck--leftSideBarVisible .styles_Puck-leftSideBarToggle {
|
762
764
|
color: var(--puck-color-black);
|
763
765
|
}
|
764
|
-
.
|
766
|
+
.styles_Puck-headerTitle {
|
765
767
|
align-self: center;
|
766
768
|
}
|
767
|
-
.
|
769
|
+
.styles_Puck-headerPath {
|
768
770
|
font-family: var(--puck-font-family-monospaced);
|
769
771
|
font-size: var(--puck-font-size-xxs);
|
770
772
|
font-weight: normal;
|
771
773
|
word-break: break-all;
|
772
774
|
}
|
773
|
-
.
|
775
|
+
.styles_Puck-headerTools {
|
774
776
|
display: flex;
|
775
777
|
gap: 16px;
|
776
778
|
justify-content: flex-end;
|
777
779
|
}
|
778
|
-
.
|
780
|
+
.styles_Puck-menuButton {
|
779
781
|
color: var(--puck-color-grey-05);
|
780
782
|
margin-left: -4px;
|
781
783
|
}
|
782
|
-
.
|
784
|
+
.styles_Puck--menuOpen .styles_Puck-menuButton {
|
783
785
|
color: var(--puck-color-black);
|
784
786
|
}
|
785
787
|
@media (min-width: 638px) {
|
786
|
-
.
|
788
|
+
.styles_Puck-menuButton {
|
787
789
|
display: none;
|
788
790
|
}
|
789
791
|
}
|
790
|
-
.
|
792
|
+
.styles_Puck-leftSideBar {
|
791
793
|
background: var(--puck-color-grey-12);
|
792
794
|
border-right: 1px solid var(--puck-color-grey-09);
|
793
795
|
display: flex;
|
@@ -795,37 +797,7 @@
|
|
795
797
|
grid-area: left;
|
796
798
|
overflow-y: auto;
|
797
799
|
}
|
798
|
-
.
|
799
|
-
box-sizing: border-box;
|
800
|
-
display: flex;
|
801
|
-
height: 100%;
|
802
|
-
justify-content: center;
|
803
|
-
min-width: 392px;
|
804
|
-
overflow: hidden;
|
805
|
-
position: relative;
|
806
|
-
width: 100%;
|
807
|
-
}
|
808
|
-
._Puck-root_3qn7l_179 {
|
809
|
-
background: white;
|
810
|
-
border: 1px solid var(--puck-color-grey-09);
|
811
|
-
box-sizing: border-box;
|
812
|
-
min-width: 321px;
|
813
|
-
position: absolute;
|
814
|
-
transform-origin: top;
|
815
|
-
top: 0;
|
816
|
-
bottom: 0;
|
817
|
-
}
|
818
|
-
@media (min-width: 1198px) {
|
819
|
-
._Puck-root_3qn7l_179 {
|
820
|
-
min-width: unset;
|
821
|
-
}
|
822
|
-
}
|
823
|
-
@media (prefers-reduced-motion: reduce) {
|
824
|
-
._Puck-root_3qn7l_179 {
|
825
|
-
transition: none !important;
|
826
|
-
}
|
827
|
-
}
|
828
|
-
._Puck-rightSideBar_3qn7l_122 {
|
800
|
+
.styles_Puck-rightSideBar {
|
829
801
|
background: var(--puck-color-white);
|
830
802
|
border-left: 1px solid var(--puck-color-grey-09);
|
831
803
|
display: flex;
|
@@ -833,63 +805,46 @@
|
|
833
805
|
grid-area: right;
|
834
806
|
overflow-y: auto;
|
835
807
|
}
|
836
|
-
._Puck-canvas_3qn7l_211 {
|
837
|
-
background: var(--puck-color-grey-11);
|
838
|
-
display: flex;
|
839
|
-
grid-area: editor;
|
840
|
-
flex-direction: column;
|
841
|
-
padding: var(--puck-space-px);
|
842
|
-
overflow: auto;
|
843
|
-
}
|
844
|
-
@media (min-width: 1198px) {
|
845
|
-
._Puck-canvas_3qn7l_211 {
|
846
|
-
padding: calc(var(--puck-space-px) * 1.5);
|
847
|
-
padding-top: var(--puck-space-px);
|
848
|
-
}
|
849
|
-
._Puck-canvas_3qn7l_211:not(._Puck-canvas_3qn7l_211:has(._Puck-canvasControls_3qn7l_226)) {
|
850
|
-
padding-top: calc(var(--puck-space-px) * 1.5);
|
851
|
-
}
|
852
|
-
}
|
853
808
|
|
854
|
-
/*
|
855
|
-
.
|
809
|
+
/* components/InputOrGroup/styles.module.css */
|
810
|
+
.styles_Input {
|
856
811
|
color: var(--puck-color-grey-04);
|
857
812
|
padding: 16px;
|
858
813
|
padding-bottom: 12px;
|
859
814
|
display: block;
|
860
815
|
}
|
861
|
-
.
|
816
|
+
.styles_Input .styles_Input {
|
862
817
|
padding: 0px;
|
863
818
|
}
|
864
|
-
.
|
819
|
+
.styles_Input * {
|
865
820
|
box-sizing: border-box;
|
866
821
|
}
|
867
|
-
.
|
822
|
+
.styles_Input + .styles_Input {
|
868
823
|
border-top: 1px solid var(--puck-color-grey-09);
|
869
824
|
margin-top: 8px;
|
870
825
|
}
|
871
|
-
.
|
826
|
+
.styles_Input .styles_Input + .styles_Input {
|
872
827
|
border-top: 0px;
|
873
828
|
margin-top: 12px;
|
874
829
|
}
|
875
|
-
.
|
830
|
+
.styles_Input-label {
|
876
831
|
align-items: center;
|
877
832
|
display: flex;
|
878
833
|
padding-bottom: 12px;
|
879
834
|
font-size: var(--puck-font-size-xxs);
|
880
835
|
font-weight: 600;
|
881
836
|
}
|
882
|
-
.
|
837
|
+
.styles_Input-labelIcon {
|
883
838
|
color: var(--puck-color-grey-07);
|
884
839
|
display: flex;
|
885
840
|
margin-right: 4px;
|
886
841
|
padding-left: 4px;
|
887
842
|
}
|
888
|
-
.
|
843
|
+
.styles_Input-disabledIcon {
|
889
844
|
color: var(--puck-color-grey-05);
|
890
845
|
margin-left: auto;
|
891
846
|
}
|
892
|
-
.
|
847
|
+
.styles_Input-input {
|
893
848
|
background: var(--puck-color-white);
|
894
849
|
border-width: 1px;
|
895
850
|
border-style: solid;
|
@@ -901,7 +856,7 @@
|
|
901
856
|
transition: border-color 50ms ease-in;
|
902
857
|
width: 100%;
|
903
858
|
}
|
904
|
-
select.
|
859
|
+
select.styles_Input-input {
|
905
860
|
appearance: none;
|
906
861
|
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;
|
907
862
|
background-size: 12px;
|
@@ -911,25 +866,25 @@ select._Input-input_1qi5b_46 {
|
|
911
866
|
cursor: pointer;
|
912
867
|
}
|
913
868
|
@media (hover: hover) and (pointer: fine) {
|
914
|
-
.
|
915
|
-
.
|
869
|
+
.styles_Input:has(> input):hover .styles_Input-input:not([readonly]),
|
870
|
+
.styles_Input:has(> textarea):hover .styles_Input-input:not([readonly]) {
|
916
871
|
border-color: var(--puck-color-grey-05);
|
917
872
|
transition: none;
|
918
873
|
}
|
919
|
-
.
|
874
|
+
.styles_Input:has(> select):hover .styles_Input-input:not([disabled]) {
|
920
875
|
background-color: var(--puck-color-azure-12);
|
921
876
|
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>");
|
922
877
|
border-color: var(--puck-color-grey-05);
|
923
878
|
transition: none;
|
924
879
|
}
|
925
880
|
}
|
926
|
-
.
|
881
|
+
.styles_Input-input:focus {
|
927
882
|
border-color: var(--puck-color-grey-05);
|
928
883
|
outline: 2px solid var(--puck-color-azure-05);
|
929
884
|
transition: none;
|
930
885
|
}
|
931
|
-
.
|
932
|
-
.
|
886
|
+
.styles_Input--readOnly > .styles_Input-input,
|
887
|
+
.styles_Input--readOnly > select.styles_Input-input {
|
933
888
|
background-color: var(--puck-color-grey-11);
|
934
889
|
border-color: var(--puck-color-grey-09);
|
935
890
|
color: var(--puck-color-grey-04);
|
@@ -938,34 +893,34 @@ select._Input-input_1qi5b_46 {
|
|
938
893
|
outline: 0;
|
939
894
|
transition: none;
|
940
895
|
}
|
941
|
-
.
|
896
|
+
.styles_Input-radioGroupItems {
|
942
897
|
display: flex;
|
943
898
|
border: 1px solid var(--puck-color-grey-09);
|
944
899
|
border-radius: 4px;
|
945
900
|
flex-wrap: wrap;
|
946
901
|
}
|
947
|
-
.
|
902
|
+
.styles_Input-radio {
|
948
903
|
border-right: 1px solid var(--puck-color-grey-09);
|
949
904
|
flex-grow: 1;
|
950
905
|
}
|
951
|
-
.
|
906
|
+
.styles_Input-radio:first-of-type {
|
952
907
|
border-bottom-left-radius: 4px;
|
953
908
|
border-top-left-radius: 4px;
|
954
909
|
}
|
955
|
-
.
|
910
|
+
.styles_Input-radio:first-of-type .styles_Input-radioInner {
|
956
911
|
border-bottom-left-radius: 3px;
|
957
912
|
border-top-left-radius: 3px;
|
958
913
|
}
|
959
|
-
.
|
914
|
+
.styles_Input-radio:last-of-type {
|
960
915
|
border-bottom-right-radius: 4px;
|
961
916
|
border-right: 0;
|
962
917
|
border-top-right-radius: 4px;
|
963
918
|
}
|
964
|
-
.
|
919
|
+
.styles_Input-radio:last-of-type .styles_Input-radioInner {
|
965
920
|
border-bottom-right-radius: 3px;
|
966
921
|
border-top-right-radius: 3px;
|
967
922
|
}
|
968
|
-
.
|
923
|
+
.styles_Input-radioInner {
|
969
924
|
background-color: var(--puck-color-white);
|
970
925
|
color: var(--puck-color-grey-04);
|
971
926
|
cursor: pointer;
|
@@ -974,32 +929,32 @@ select._Input-input_1qi5b_46 {
|
|
974
929
|
text-align: center;
|
975
930
|
transition: background-color 50ms ease-in;
|
976
931
|
}
|
977
|
-
.
|
932
|
+
.styles_Input-radio:has(:focus-visible) {
|
978
933
|
outline: 2px solid var(--puck-color-azure-05);
|
979
934
|
outline-offset: 2px;
|
980
935
|
position: relative;
|
981
936
|
}
|
982
937
|
@media (hover: hover) and (pointer: fine) {
|
983
|
-
.
|
938
|
+
.styles_Input-radioInner:hover {
|
984
939
|
background-color: var(--puck-color-azure-12);
|
985
940
|
transition: none;
|
986
941
|
}
|
987
942
|
}
|
988
|
-
.
|
943
|
+
.styles_Input--readOnly .styles_Input-radioInner {
|
989
944
|
background-color: var(--puck-color-white);
|
990
945
|
color: var(--puck-color-grey-04);
|
991
946
|
cursor: default;
|
992
947
|
}
|
993
|
-
.
|
948
|
+
.styles_Input-radio .styles_Input-radioInput:checked ~ .styles_Input-radioInner {
|
994
949
|
background-color: var(--puck-color-azure-11);
|
995
950
|
color: var(--puck-color-azure-04);
|
996
951
|
font-weight: 500;
|
997
952
|
}
|
998
|
-
.
|
953
|
+
.styles_Input--readOnly .styles_Input-radioInput:checked ~ .styles_Input-radioInner {
|
999
954
|
background-color: var(--puck-color-grey-11);
|
1000
955
|
color: var(--puck-color-grey-04);
|
1001
956
|
}
|
1002
|
-
.
|
957
|
+
.styles_Input-radio .styles_Input-radioInput {
|
1003
958
|
clip: rect(0 0 0 0);
|
1004
959
|
clip-path: inset(100%);
|
1005
960
|
height: 1px;
|
@@ -1008,22 +963,22 @@ select._Input-input_1qi5b_46 {
|
|
1008
963
|
white-space: nowrap;
|
1009
964
|
width: 1px;
|
1010
965
|
}
|
1011
|
-
textarea.
|
966
|
+
textarea.styles_Input-input {
|
1012
967
|
margin-bottom: -4px;
|
1013
968
|
}
|
1014
969
|
|
1015
|
-
/*
|
1016
|
-
.
|
970
|
+
/* components/InputOrGroup/fields/ArrayField/styles.module.css */
|
971
|
+
.styles_ArrayField {
|
1017
972
|
display: flex;
|
1018
973
|
flex-direction: column;
|
1019
974
|
background-color: var(--puck-color-grey-09);
|
1020
975
|
border: 1px solid var(--puck-color-grey-09);
|
1021
976
|
border-radius: 4px;
|
1022
977
|
}
|
1023
|
-
.
|
978
|
+
.styles_ArrayField--isDraggingFrom {
|
1024
979
|
background-color: var(--puck-color-azure-11);
|
1025
980
|
}
|
1026
|
-
.
|
981
|
+
.styles_ArrayField-addButton {
|
1027
982
|
background-color: var(--puck-color-white);
|
1028
983
|
border: none;
|
1029
984
|
border-radius: 4px;
|
@@ -1037,54 +992,54 @@ textarea._Input-input_1qi5b_46 {
|
|
1037
992
|
text-align: left;
|
1038
993
|
transition: background-color 50ms ease-in;
|
1039
994
|
}
|
1040
|
-
.
|
995
|
+
.styles_ArrayField--hasItems > .styles_ArrayField-addButton {
|
1041
996
|
border-top-left-radius: 0;
|
1042
997
|
border-top-right-radius: 0;
|
1043
998
|
}
|
1044
|
-
.
|
999
|
+
.styles_ArrayField-addButton:focus-visible {
|
1045
1000
|
outline: 2px solid var(--puck-color-azure-05);
|
1046
1001
|
outline-offset: 2px;
|
1047
1002
|
position: relative;
|
1048
1003
|
}
|
1049
1004
|
@media (hover: hover) and (pointer: fine) {
|
1050
|
-
.
|
1005
|
+
.styles_ArrayField:not(.styles_ArrayField--isDraggingFrom) > .styles_ArrayField-addButton:hover {
|
1051
1006
|
background: var(--puck-color-azure-12);
|
1052
1007
|
color: var(--puck-color-azure-04);
|
1053
1008
|
transition: none;
|
1054
1009
|
}
|
1055
1010
|
}
|
1056
|
-
.
|
1011
|
+
.styles_ArrayField:not(.styles_ArrayField--isDraggingFrom) > .styles_ArrayField-addButton:active {
|
1057
1012
|
background: var(--puck-color-azure-11);
|
1058
1013
|
color: var(--puck-color-azure-04);
|
1059
1014
|
transition: none;
|
1060
1015
|
}
|
1061
|
-
.
|
1016
|
+
.styles_ArrayFieldItem {
|
1062
1017
|
background: var(--puck-color-white);
|
1063
1018
|
border-top-left-radius: 4px;
|
1064
1019
|
border-top-right-radius: 4px;
|
1065
1020
|
display: block;
|
1066
1021
|
margin-bottom: 1px;
|
1067
1022
|
}
|
1068
|
-
.
|
1023
|
+
.styles_ArrayField--isDraggingFrom > .styles_ArrayFieldItem:not(.styles_ArrayFieldItem--isDragging) {
|
1069
1024
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
1070
1025
|
margin-bottom: 0;
|
1071
1026
|
}
|
1072
|
-
.
|
1027
|
+
.styles_ArrayFieldItem--isExpanded {
|
1073
1028
|
border-bottom: 0;
|
1074
1029
|
outline-offset: 0px !important;
|
1075
1030
|
outline: 1px solid var(--puck-color-azure-07) !important;
|
1076
1031
|
}
|
1077
|
-
.
|
1032
|
+
.styles_ArrayFieldItem--isDragging {
|
1078
1033
|
box-shadow: color-mix(in srgb, var(--puck-color-grey-06) 25%, transparent) 0 3px 6px 0;
|
1079
1034
|
}
|
1080
|
-
.
|
1035
|
+
.styles_ArrayFieldItem--isDragging .styles_ArrayFieldItem-summary:active {
|
1081
1036
|
background-color: var(--puck-color-white);
|
1082
1037
|
}
|
1083
|
-
.
|
1038
|
+
.styles_ArrayFieldItem + .styles_ArrayFieldItem {
|
1084
1039
|
border-top-left-radius: 0;
|
1085
1040
|
border-top-right-radius: 0;
|
1086
1041
|
}
|
1087
|
-
.
|
1042
|
+
.styles_ArrayFieldItem-summary {
|
1088
1043
|
color: var(--puck-color-grey-04);
|
1089
1044
|
cursor: pointer;
|
1090
1045
|
display: flex;
|
@@ -1098,67 +1053,67 @@ textarea._Input-input_1qi5b_46 {
|
|
1098
1053
|
overflow: hidden;
|
1099
1054
|
transition: background-color 50ms ease-in;
|
1100
1055
|
}
|
1101
|
-
.
|
1056
|
+
.styles_ArrayFieldItem--readOnly > .styles_ArrayFieldItem-summary {
|
1102
1057
|
background-color: var(--puck-color-grey-12);
|
1103
1058
|
color: var(--puck-color-grey-06);
|
1104
1059
|
}
|
1105
|
-
.
|
1060
|
+
.styles_ArrayFieldItem:first-of-type > .styles_ArrayFieldItem-summary {
|
1106
1061
|
border-top-left-radius: 4px;
|
1107
1062
|
border-top-right-radius: 4px;
|
1108
1063
|
}
|
1109
|
-
.
|
1064
|
+
.styles_ArrayFieldItem-summary:focus-visible {
|
1110
1065
|
outline: 2px solid var(--puck-color-azure-05);
|
1111
1066
|
outline-offset: 2px;
|
1112
1067
|
}
|
1113
1068
|
@media (hover: hover) and (pointer: fine) {
|
1114
|
-
.
|
1069
|
+
.styles_ArrayFieldItem-summary:hover {
|
1115
1070
|
background-color: var(--puck-color-azure-12);
|
1116
1071
|
transition: none;
|
1117
1072
|
}
|
1118
1073
|
}
|
1119
|
-
.
|
1074
|
+
.styles_ArrayFieldItem-summary:active {
|
1120
1075
|
background-color: var(--puck-color-azure-11);
|
1121
1076
|
transition: none;
|
1122
1077
|
}
|
1123
|
-
.
|
1078
|
+
.styles_ArrayFieldItem--isExpanded > .styles_ArrayFieldItem-summary {
|
1124
1079
|
background: var(--puck-color-azure-11);
|
1125
1080
|
color: var(--puck-color-azure-04);
|
1126
1081
|
font-weight: 600;
|
1127
1082
|
transition: none;
|
1128
1083
|
}
|
1129
|
-
.
|
1084
|
+
.styles_ArrayFieldItem-body {
|
1130
1085
|
display: none;
|
1131
1086
|
}
|
1132
|
-
.
|
1087
|
+
.styles_ArrayFieldItem--isExpanded > .styles_ArrayFieldItem-body {
|
1133
1088
|
display: block;
|
1134
1089
|
}
|
1135
|
-
.
|
1090
|
+
.styles_ArrayFieldItem-fieldset {
|
1136
1091
|
border: none;
|
1137
1092
|
border-top: 1px solid var(--puck-color-grey-09);
|
1138
1093
|
margin: 0;
|
1139
1094
|
padding: 16px 15px;
|
1140
1095
|
}
|
1141
|
-
.
|
1096
|
+
.styles_ArrayFieldItem-rhs {
|
1142
1097
|
display: flex;
|
1143
1098
|
gap: 4px;
|
1144
1099
|
align-items: center;
|
1145
1100
|
}
|
1146
|
-
.
|
1101
|
+
.styles_ArrayFieldItem-actions {
|
1147
1102
|
color: var(--puck-color-grey-04);
|
1148
1103
|
display: flex;
|
1149
1104
|
gap: 4px;
|
1150
1105
|
opacity: 0;
|
1151
1106
|
}
|
1152
|
-
.
|
1153
|
-
.
|
1107
|
+
.styles_ArrayFieldItem-summary:focus-within > .styles_ArrayFieldItem-rhs > .styles_ArrayFieldItem-actions,
|
1108
|
+
.styles_ArrayFieldItem-summary:hover > .styles_ArrayFieldItem-rhs > .styles_ArrayFieldItem-actions {
|
1154
1109
|
opacity: 1;
|
1155
1110
|
}
|
1156
1111
|
|
1157
|
-
/*
|
1158
|
-
.
|
1112
|
+
/* components/ExternalInput/styles.module.css */
|
1113
|
+
.styles_ExternalInput-actions {
|
1159
1114
|
display: flex;
|
1160
1115
|
}
|
1161
|
-
.
|
1116
|
+
.styles_ExternalInput-button {
|
1162
1117
|
display: flex;
|
1163
1118
|
gap: 8px;
|
1164
1119
|
align-items: center;
|
@@ -1177,13 +1132,13 @@ textarea._Input-input_1qi5b_46 {
|
|
1177
1132
|
overflow: hidden;
|
1178
1133
|
flex-grow: 1;
|
1179
1134
|
}
|
1180
|
-
.
|
1135
|
+
.styles_ExternalInput--dataSelected .styles_ExternalInput-button {
|
1181
1136
|
color: var(--puck-color-grey-03);
|
1182
1137
|
display: block;
|
1183
1138
|
border-top-right-radius: 0px;
|
1184
1139
|
border-bottom-right-radius: 0px;
|
1185
1140
|
}
|
1186
|
-
.
|
1141
|
+
.styles_ExternalInput-detachButton {
|
1187
1142
|
border: 1px solid var(--puck-color-grey-09);
|
1188
1143
|
border-top-right-radius: 4px;
|
1189
1144
|
border-bottom-right-radius: 4px;
|
@@ -1199,28 +1154,28 @@ textarea._Input-input_1qi5b_46 {
|
|
1199
1154
|
transition: background-color 50ms ease-in, color 50ms ease-in;
|
1200
1155
|
margin-left: -1px;
|
1201
1156
|
}
|
1202
|
-
.
|
1203
|
-
.
|
1157
|
+
.styles_ExternalInput-button:focus-visible,
|
1158
|
+
.styles_ExternalInput-detachButton:focus-visible {
|
1204
1159
|
outline: 2px solid var(--puck-color-azure-05);
|
1205
1160
|
outline-offset: 2px;
|
1206
1161
|
z-index: 1;
|
1207
1162
|
}
|
1208
1163
|
@media (hover: hover) and (pointer: fine) {
|
1209
|
-
.
|
1210
|
-
.
|
1164
|
+
.styles_ExternalInput-button:hover,
|
1165
|
+
.styles_ExternalInput-detachButton:hover {
|
1211
1166
|
background: var(--puck-color-azure-12);
|
1212
1167
|
transition: none;
|
1213
1168
|
}
|
1214
|
-
.
|
1169
|
+
.styles_ExternalInput-detachButton:hover {
|
1215
1170
|
color: var(--puck-color-azure-04);
|
1216
1171
|
}
|
1217
1172
|
}
|
1218
|
-
.
|
1219
|
-
.
|
1173
|
+
.styles_ExternalInput-button:active,
|
1174
|
+
.styles_ExternalInput-detachButton:active {
|
1220
1175
|
background: var(--puck-color-azure-11);
|
1221
1176
|
transition: none;
|
1222
1177
|
}
|
1223
|
-
.
|
1178
|
+
.styles_ExternalInputModal {
|
1224
1179
|
color: var(--puck-color-black);
|
1225
1180
|
display: grid;
|
1226
1181
|
grid-template-rows: min-content minmax(128px, 100%) min-content;
|
@@ -1229,35 +1184,35 @@ textarea._Input-input_1qi5b_46 {
|
|
1229
1184
|
min-height: 50dvh;
|
1230
1185
|
max-height: 90dvh;
|
1231
1186
|
}
|
1232
|
-
.
|
1187
|
+
.styles_ExternalInputModal-grid {
|
1233
1188
|
display: flex;
|
1234
1189
|
flex-direction: column;
|
1235
1190
|
}
|
1236
1191
|
@media (min-width: 458px) {
|
1237
|
-
.
|
1192
|
+
.styles_ExternalInputModal-grid {
|
1238
1193
|
display: grid;
|
1239
1194
|
grid-template-columns: 100%;
|
1240
1195
|
}
|
1241
|
-
.
|
1196
|
+
.styles_ExternalInputModal--filtersToggled .styles_ExternalInputModal-grid {
|
1242
1197
|
grid-template-columns: 25% 75%;
|
1243
1198
|
}
|
1244
1199
|
}
|
1245
|
-
.
|
1200
|
+
.styles_ExternalInputModal-filters {
|
1246
1201
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
1247
1202
|
}
|
1248
|
-
.
|
1203
|
+
.styles_ExternalInputModal--filtersToggled .styles_ExternalInputModal-filters {
|
1249
1204
|
display: none;
|
1250
1205
|
}
|
1251
1206
|
@media (min-width: 458px) {
|
1252
|
-
.
|
1207
|
+
.styles_ExternalInputModal-filters {
|
1253
1208
|
border-right: 1px solid var(--puck-color-grey-09);
|
1254
1209
|
display: none;
|
1255
1210
|
}
|
1256
|
-
.
|
1211
|
+
.styles_ExternalInputModal--filtersToggled .styles_ExternalInputModal-filters {
|
1257
1212
|
display: block;
|
1258
1213
|
}
|
1259
1214
|
}
|
1260
|
-
.
|
1215
|
+
.styles_ExternalInputModal-masthead {
|
1261
1216
|
background-color: var(--puck-color-grey-12);
|
1262
1217
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
1263
1218
|
display: flex;
|
@@ -1265,13 +1220,13 @@ textarea._Input-input_1qi5b_46 {
|
|
1265
1220
|
gap: 24px;
|
1266
1221
|
padding: 24px;
|
1267
1222
|
}
|
1268
|
-
.
|
1223
|
+
.styles_ExternalInputModal-tableWrapper {
|
1269
1224
|
position: relative;
|
1270
1225
|
overflow-x: auto;
|
1271
1226
|
overflow-y: auto;
|
1272
1227
|
flex-grow: 1;
|
1273
1228
|
}
|
1274
|
-
.
|
1229
|
+
.styles_ExternalInputModal-table {
|
1275
1230
|
border-collapse: unset;
|
1276
1231
|
border-spacing: 0px;
|
1277
1232
|
color: var(--puck-color-grey-02);
|
@@ -1279,51 +1234,51 @@ textarea._Input-input_1qi5b_46 {
|
|
1279
1234
|
z-index: 0;
|
1280
1235
|
min-width: 100%;
|
1281
1236
|
}
|
1282
|
-
.
|
1237
|
+
.styles_ExternalInputModal-thead {
|
1283
1238
|
background-color: var(--puck-color-white);
|
1284
1239
|
position: sticky;
|
1285
1240
|
top: 0;
|
1286
1241
|
z-index: 1;
|
1287
1242
|
}
|
1288
|
-
.
|
1243
|
+
.styles_ExternalInputModal-th {
|
1289
1244
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
1290
1245
|
color: var(--puck-color-grey-04);
|
1291
1246
|
font-weight: 500;
|
1292
1247
|
font-size: 14px;
|
1293
1248
|
padding: 16px 24px;
|
1294
1249
|
}
|
1295
|
-
.
|
1250
|
+
.styles_ExternalInputModal-td {
|
1296
1251
|
border-bottom: 1px solid var(--puck-color-grey-10);
|
1297
1252
|
padding: 16px 24px;
|
1298
1253
|
}
|
1299
|
-
.
|
1254
|
+
.styles_ExternalInputModal-tr .styles_ExternalInputModal-td:first-of-type {
|
1300
1255
|
font-weight: 500;
|
1301
1256
|
width: 1%;
|
1302
1257
|
white-space: nowrap;
|
1303
1258
|
}
|
1304
1259
|
@media (hover: hover) and (pointer: fine) {
|
1305
|
-
.
|
1260
|
+
.styles_ExternalInputModal-tbody .styles_ExternalInputModal-tr:hover {
|
1306
1261
|
background: var(--puck-color-azure-12);
|
1307
1262
|
color: var(--puck-color-azure-04);
|
1308
1263
|
cursor: pointer;
|
1309
1264
|
position: relative;
|
1310
1265
|
margin-left: -5px;
|
1311
1266
|
}
|
1312
|
-
.
|
1267
|
+
.styles_ExternalInputModal-tbody .styles_ExternalInputModal-tr:hover .styles_ExternalInputModal-td:first-of-type {
|
1313
1268
|
border-left: 4px solid var(--puck-color-azure-04);
|
1314
1269
|
padding-left: 20px;
|
1315
1270
|
}
|
1316
1271
|
}
|
1317
|
-
.
|
1272
|
+
.styles_ExternalInputModal-tbody .styles_ExternalInputModal-tr:last-of-type .styles_ExternalInputModal-td {
|
1318
1273
|
border-bottom: none;
|
1319
1274
|
}
|
1320
|
-
.
|
1275
|
+
.styles_ExternalInputModal-tableWrapper {
|
1321
1276
|
display: none;
|
1322
1277
|
}
|
1323
|
-
.
|
1278
|
+
.styles_ExternalInputModal--hasData .styles_ExternalInputModal-tableWrapper {
|
1324
1279
|
display: block;
|
1325
1280
|
}
|
1326
|
-
.
|
1281
|
+
.styles_ExternalInputModal-loadingBanner {
|
1327
1282
|
display: none;
|
1328
1283
|
background-color: color-mix(in srgb, var(--puck-color-white) 90%, transparent);
|
1329
1284
|
padding: 64px;
|
@@ -1335,21 +1290,21 @@ textarea._Input-input_1qi5b_46 {
|
|
1335
1290
|
right: 0;
|
1336
1291
|
bottom: 0;
|
1337
1292
|
}
|
1338
|
-
.
|
1293
|
+
.styles_ExternalInputModal--isLoading .styles_ExternalInputModal-loadingBanner {
|
1339
1294
|
display: flex;
|
1340
1295
|
}
|
1341
|
-
.
|
1296
|
+
.styles_ExternalInputModal-searchForm {
|
1342
1297
|
display: flex;
|
1343
1298
|
flex-wrap: wrap;
|
1344
1299
|
gap: 12px;
|
1345
1300
|
flex-grow: 1;
|
1346
1301
|
}
|
1347
1302
|
@media (min-width: 458px) {
|
1348
|
-
.
|
1303
|
+
.styles_ExternalInputModal-searchForm {
|
1349
1304
|
flex-wrap: nowrap;
|
1350
1305
|
}
|
1351
1306
|
}
|
1352
|
-
.
|
1307
|
+
.styles_ExternalInputModal-search {
|
1353
1308
|
display: flex;
|
1354
1309
|
background: var(--puck-color-white);
|
1355
1310
|
border-width: 1px;
|
@@ -1359,18 +1314,18 @@ textarea._Input-input_1qi5b_46 {
|
|
1359
1314
|
flex-grow: 1;
|
1360
1315
|
transition: border-color 50ms ease-in;
|
1361
1316
|
}
|
1362
|
-
.
|
1317
|
+
.styles_ExternalInputModal-search:focus-within {
|
1363
1318
|
border-color: var(--puck-color-grey-05);
|
1364
1319
|
outline: 2px solid var(--puck-color-azure-05);
|
1365
1320
|
transition: none;
|
1366
1321
|
}
|
1367
1322
|
@media (hover: hover) and (pointer: fine) {
|
1368
|
-
.
|
1323
|
+
.styles_ExternalInputModal-search:hover {
|
1369
1324
|
border-color: var(--puck-color-grey-05);
|
1370
1325
|
transition: none;
|
1371
1326
|
}
|
1372
1327
|
}
|
1373
|
-
.
|
1328
|
+
.styles_ExternalInputModal-searchIcon {
|
1374
1329
|
align-items: center;
|
1375
1330
|
background: var(--puck-color-grey-12);
|
1376
1331
|
border-bottom-left-radius: 4px;
|
@@ -1382,17 +1337,17 @@ textarea._Input-input_1qi5b_46 {
|
|
1382
1337
|
padding: 12px 15px;
|
1383
1338
|
transition: color 50ms ease-in;
|
1384
1339
|
}
|
1385
|
-
.
|
1340
|
+
.styles_ExternalInputModal-search:focus-within .styles_ExternalInputModal-searchIcon {
|
1386
1341
|
color: var(--puck-color-grey-04);
|
1387
1342
|
transition: none;
|
1388
1343
|
}
|
1389
1344
|
@media (hover: hover) and (pointer: fine) {
|
1390
|
-
.
|
1345
|
+
.styles_ExternalInputModal-search:hover .styles_ExternalInputModal-searchIcon {
|
1391
1346
|
color: var(--puck-color-grey-04);
|
1392
1347
|
transition: none;
|
1393
1348
|
}
|
1394
1349
|
}
|
1395
|
-
.
|
1350
|
+
.styles_ExternalInputModal-searchIconText {
|
1396
1351
|
clip: rect(0 0 0 0);
|
1397
1352
|
clip-path: inset(100%);
|
1398
1353
|
height: 1px;
|
@@ -1401,7 +1356,7 @@ textarea._Input-input_1qi5b_46 {
|
|
1401
1356
|
white-space: nowrap;
|
1402
1357
|
width: 1px;
|
1403
1358
|
}
|
1404
|
-
.
|
1359
|
+
.styles_ExternalInputModal-searchInput {
|
1405
1360
|
border: none;
|
1406
1361
|
border-radius: 4px;
|
1407
1362
|
background: var(--puck-color-white);
|
@@ -1410,24 +1365,24 @@ textarea._Input-input_1qi5b_46 {
|
|
1410
1365
|
padding: 12px 15px;
|
1411
1366
|
width: 100%;
|
1412
1367
|
}
|
1413
|
-
.
|
1368
|
+
.styles_ExternalInputModal-searchInput:focus {
|
1414
1369
|
outline: 0;
|
1415
1370
|
}
|
1416
|
-
.
|
1371
|
+
.styles_ExternalInputModal-searchActions {
|
1417
1372
|
display: flex;
|
1418
1373
|
gap: 8px;
|
1419
1374
|
height: 44px;
|
1420
1375
|
width: 100%;
|
1421
1376
|
}
|
1422
1377
|
@media (min-width: 458px) {
|
1423
|
-
.
|
1378
|
+
.styles_ExternalInputModal-searchActions {
|
1424
1379
|
width: auto;
|
1425
1380
|
}
|
1426
1381
|
}
|
1427
|
-
.
|
1382
|
+
.styles_ExternalInputModal-searchActionIcon {
|
1428
1383
|
align-self: center;
|
1429
1384
|
}
|
1430
|
-
.
|
1385
|
+
.styles_ExternalInputModal-footer {
|
1431
1386
|
background-color: var(--puck-color-grey-12);
|
1432
1387
|
border-top: 1px solid var(--puck-color-grey-09);
|
1433
1388
|
color: var(--puck-color-grey-04);
|
@@ -1437,8 +1392,8 @@ textarea._Input-input_1qi5b_46 {
|
|
1437
1392
|
text-align: right;
|
1438
1393
|
}
|
1439
1394
|
|
1440
|
-
/*
|
1441
|
-
.
|
1395
|
+
/* components/Modal/styles.module.css */
|
1396
|
+
.styles_Modal {
|
1442
1397
|
background: color-mix(in srgb, var(--puck-color-black) 75%, transparent);
|
1443
1398
|
display: none;
|
1444
1399
|
justify-content: center;
|
@@ -1451,10 +1406,10 @@ textarea._Input-input_1qi5b_46 {
|
|
1451
1406
|
z-index: 1;
|
1452
1407
|
padding: 32px;
|
1453
1408
|
}
|
1454
|
-
.
|
1409
|
+
.styles_Modal--isOpen {
|
1455
1410
|
display: flex;
|
1456
1411
|
}
|
1457
|
-
.
|
1412
|
+
.styles_Modal-inner {
|
1458
1413
|
width: 100%;
|
1459
1414
|
max-width: 1024px;
|
1460
1415
|
border-radius: 8px;
|
@@ -1465,26 +1420,26 @@ textarea._Input-input_1qi5b_46 {
|
|
1465
1420
|
max-height: 90dvh;
|
1466
1421
|
}
|
1467
1422
|
|
1468
|
-
/*
|
1469
|
-
.
|
1423
|
+
/* components/InputOrGroup/fields/ObjectField/styles.module.css */
|
1424
|
+
.styles_ObjectField {
|
1470
1425
|
display: flex;
|
1471
1426
|
flex-direction: column;
|
1472
1427
|
background-color: var(--puck-color-white);
|
1473
1428
|
border: 1px solid var(--puck-color-grey-09);
|
1474
1429
|
border-radius: 4px;
|
1475
1430
|
}
|
1476
|
-
.
|
1431
|
+
.styles_ObjectField-fieldset {
|
1477
1432
|
border: none;
|
1478
1433
|
margin: 0;
|
1479
1434
|
padding: 16px 15px;
|
1480
1435
|
}
|
1481
1436
|
|
1482
|
-
/*
|
1483
|
-
.
|
1437
|
+
/* components/Puck/components/Fields/styles.module.css */
|
1438
|
+
.styles_PuckFields {
|
1484
1439
|
position: relative;
|
1485
1440
|
font-family: var(--puck-font-family);
|
1486
1441
|
}
|
1487
|
-
.
|
1442
|
+
.styles_PuckFields-loadingOverlay {
|
1488
1443
|
background: var(--puck-color-white);
|
1489
1444
|
display: flex;
|
1490
1445
|
justify-content: center;
|
@@ -1499,20 +1454,20 @@ textarea._Input-input_1qi5b_46 {
|
|
1499
1454
|
opacity: 0.8;
|
1500
1455
|
}
|
1501
1456
|
|
1502
|
-
/*
|
1503
|
-
.
|
1457
|
+
/* components/ComponentList/styles.module.css */
|
1458
|
+
.styles_ComponentList {
|
1504
1459
|
max-width: 100%;
|
1505
1460
|
}
|
1506
|
-
.
|
1461
|
+
.styles_ComponentList--isExpanded + .styles_ComponentList {
|
1507
1462
|
margin-top: 12px;
|
1508
1463
|
}
|
1509
|
-
.
|
1464
|
+
.styles_ComponentList-content {
|
1510
1465
|
display: none;
|
1511
1466
|
}
|
1512
|
-
.
|
1467
|
+
.styles_ComponentList--isExpanded > .styles_ComponentList-content {
|
1513
1468
|
display: block;
|
1514
1469
|
}
|
1515
|
-
.
|
1470
|
+
.styles_ComponentList-title {
|
1516
1471
|
background-color: transparent;
|
1517
1472
|
border: 0;
|
1518
1473
|
color: var(--puck-color-grey-05);
|
@@ -1529,46 +1484,37 @@ textarea._Input-input_1qi5b_46 {
|
|
1529
1484
|
border-radius: 4px;
|
1530
1485
|
width: 100%;
|
1531
1486
|
}
|
1532
|
-
.
|
1487
|
+
.styles_ComponentList-title:focus-visible {
|
1533
1488
|
outline: 2px solid var(--puck-color-azure-05);
|
1534
1489
|
outline-offset: 2px;
|
1535
1490
|
}
|
1536
1491
|
@media (hover: hover) and (pointer: fine) {
|
1537
|
-
.
|
1492
|
+
.styles_ComponentList-title:hover {
|
1538
1493
|
background-color: var(--puck-color-azure-11);
|
1539
1494
|
color: var(--puck-color-azure-04);
|
1540
1495
|
transition: none;
|
1541
1496
|
}
|
1542
1497
|
}
|
1543
|
-
.
|
1498
|
+
.styles_ComponentList-title:active {
|
1544
1499
|
background-color: var(--puck-color-azure-10);
|
1545
1500
|
transition: none;
|
1546
1501
|
}
|
1547
|
-
.
|
1502
|
+
.styles_ComponentList-titleIcon {
|
1548
1503
|
margin-left: auto;
|
1549
1504
|
}
|
1550
1505
|
|
1551
|
-
/*
|
1552
|
-
.
|
1506
|
+
/* components/Puck/components/Preview/styles.module.css */
|
1507
|
+
.styles_PuckPreview {
|
1553
1508
|
height: 100%;
|
1554
1509
|
}
|
1555
|
-
.
|
1510
|
+
.styles_PuckPreview-frame {
|
1556
1511
|
border: none;
|
1557
1512
|
height: 100%;
|
1558
1513
|
width: 100%;
|
1559
1514
|
}
|
1560
|
-
._PuckPreview-content_379hm_11 {
|
1561
|
-
height: 100%;
|
1562
|
-
width: 100%;
|
1563
|
-
opacity: 0;
|
1564
|
-
transition: opacity 150ms ease-out;
|
1565
|
-
}
|
1566
|
-
._PuckPreview--stylesLoaded_379hm_18 ._PuckPreview-content_379hm_11 {
|
1567
|
-
opacity: 1;
|
1568
|
-
}
|
1569
1515
|
|
1570
|
-
/*
|
1571
|
-
.
|
1516
|
+
/* components/LayerTree/styles.module.css */
|
1517
|
+
.styles_LayerTree {
|
1572
1518
|
color: var(--puck-color-grey-03);
|
1573
1519
|
font-family: var(--puck-font-family);
|
1574
1520
|
font-size: var(--puck-font-size-xxs);
|
@@ -1577,30 +1523,30 @@ textarea._Input-input_1qi5b_46 {
|
|
1577
1523
|
list-style: none;
|
1578
1524
|
padding: 0;
|
1579
1525
|
}
|
1580
|
-
.
|
1526
|
+
.styles_LayerTree-zoneTitle {
|
1581
1527
|
color: var(--puck-color-grey-05);
|
1582
1528
|
font-size: var(--puck-font-size-xxxs);
|
1583
1529
|
text-transform: uppercase;
|
1584
1530
|
}
|
1585
|
-
.
|
1531
|
+
.styles_LayerTree-helper {
|
1586
1532
|
text-align: center;
|
1587
1533
|
color: var(--puck-color-grey-07);
|
1588
1534
|
margin: 8px 4px;
|
1589
1535
|
}
|
1590
|
-
.
|
1536
|
+
.styles_Layer {
|
1591
1537
|
position: relative;
|
1592
1538
|
border: 1px solid transparent;
|
1593
1539
|
border-radius: 4px;
|
1594
1540
|
}
|
1595
|
-
.
|
1541
|
+
.styles_Layer-inner {
|
1596
1542
|
border: 1px solid transparent;
|
1597
1543
|
border-radius: 4px;
|
1598
1544
|
transition: color 50ms ease-in;
|
1599
1545
|
}
|
1600
|
-
.
|
1546
|
+
.styles_Layer--containsZone > .styles_Layer-inner {
|
1601
1547
|
padding-left: 0;
|
1602
1548
|
}
|
1603
|
-
.
|
1549
|
+
.styles_Layer-clickable {
|
1604
1550
|
align-items: center;
|
1605
1551
|
background: none;
|
1606
1552
|
border: 0;
|
@@ -1613,83 +1559,83 @@ textarea._Input-input_1qi5b_46 {
|
|
1613
1559
|
padding-right: 4px;
|
1614
1560
|
width: 100%;
|
1615
1561
|
}
|
1616
|
-
.
|
1562
|
+
.styles_Layer-clickable:focus-visible {
|
1617
1563
|
outline: 2px solid var(--puck-color-azure-05);
|
1618
1564
|
outline-offset: 2px;
|
1619
1565
|
position: relative;
|
1620
1566
|
z-index: 1;
|
1621
1567
|
}
|
1622
1568
|
@media (hover: hover) and (pointer: fine) {
|
1623
|
-
.
|
1569
|
+
.styles_Layer:not(.styles_Layer--isSelected) > .styles_Layer-inner:hover {
|
1624
1570
|
border-color: var(--puck-color-azure-10);
|
1625
1571
|
background: var(--puck-color-azure-11);
|
1626
1572
|
color: var(--puck-color-azure-04);
|
1627
1573
|
transition: none;
|
1628
1574
|
}
|
1629
1575
|
}
|
1630
|
-
.
|
1576
|
+
.styles_Layer--isSelected {
|
1631
1577
|
border-color: var(--puck-color-azure-08);
|
1632
1578
|
}
|
1633
|
-
.
|
1579
|
+
.styles_Layer--isSelected > .styles_Layer-inner {
|
1634
1580
|
background: var(--puck-color-azure-10);
|
1635
1581
|
}
|
1636
|
-
.
|
1637
|
-
.
|
1582
|
+
.styles_Layer--isSelected > .styles_Layer-inner > .styles_Layer-clickable > .styles_Layer-chevron,
|
1583
|
+
.styles_Layer--childIsSelected > .styles_Layer-inner > .styles_Layer-clickable > .styles_Layer-chevron {
|
1638
1584
|
transform: scaleY(-1);
|
1639
1585
|
}
|
1640
|
-
.
|
1586
|
+
.styles_Layer-zones {
|
1641
1587
|
display: none;
|
1642
1588
|
margin-left: 12px;
|
1643
1589
|
}
|
1644
|
-
.
|
1645
|
-
.
|
1590
|
+
.styles_Layer--isSelected > .styles_Layer-zones,
|
1591
|
+
.styles_Layer--childIsSelected > .styles_Layer-zones {
|
1646
1592
|
display: block;
|
1647
1593
|
}
|
1648
|
-
.
|
1594
|
+
.styles_Layer-zones > .styles_LayerTree {
|
1649
1595
|
margin-left: 12px;
|
1650
1596
|
}
|
1651
|
-
.
|
1652
|
-
.
|
1597
|
+
.styles_Layer-title,
|
1598
|
+
.styles_LayerTree-zoneTitle {
|
1653
1599
|
display: flex;
|
1654
1600
|
gap: 8px;
|
1655
1601
|
align-items: center;
|
1656
1602
|
margin: 8px 4px;
|
1657
1603
|
overflow-x: hidden;
|
1658
1604
|
}
|
1659
|
-
.
|
1605
|
+
.styles_Layer-name {
|
1660
1606
|
overflow-x: hidden;
|
1661
1607
|
text-overflow: ellipsis;
|
1662
1608
|
white-space: nowrap;
|
1663
1609
|
}
|
1664
|
-
.
|
1610
|
+
.styles_Layer-icon {
|
1665
1611
|
color: var(--puck-color-rose-07);
|
1666
1612
|
margin-top: 4px;
|
1667
1613
|
}
|
1668
|
-
.
|
1614
|
+
.styles_Layer-zoneIcon {
|
1669
1615
|
color: var(--puck-color-grey-08);
|
1670
1616
|
margin-top: 4px;
|
1671
1617
|
}
|
1672
1618
|
|
1673
|
-
/*
|
1674
|
-
.
|
1619
|
+
/* components/ViewportControls/styles.module.css */
|
1620
|
+
.styles_ViewportControls {
|
1675
1621
|
display: flex;
|
1676
1622
|
background: var(--puck-color-grey-11);
|
1677
1623
|
box-sizing: border-box;
|
1678
1624
|
border-left: 2px solid var(--puck-color-grey-11);
|
1679
1625
|
justify-content: center;
|
1680
1626
|
gap: 8px;
|
1681
|
-
min-width:
|
1627
|
+
min-width: 358px;
|
1682
1628
|
padding-bottom: 16px;
|
1683
1629
|
padding-left: var(--puck-space-px);
|
1684
1630
|
padding-right: var(--puck-space-px);
|
1685
1631
|
z-index: 1;
|
1686
1632
|
}
|
1687
|
-
.
|
1633
|
+
.styles_ViewportControls-divider {
|
1688
1634
|
border-right: 1px solid var(--puck-color-grey-09);
|
1689
1635
|
margin-left: 8px;
|
1690
1636
|
margin-right: 8px;
|
1691
1637
|
}
|
1692
|
-
.
|
1638
|
+
.styles_ViewportControls-zoomSelect {
|
1693
1639
|
appearance: none;
|
1694
1640
|
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;
|
1695
1641
|
background-size: 10px;
|
@@ -1699,6 +1645,60 @@ textarea._Input-input_1qi5b_46 {
|
|
1699
1645
|
font-size: var(--puck-font-size-xxxs);
|
1700
1646
|
width: 96px;
|
1701
1647
|
}
|
1702
|
-
.
|
1648
|
+
.styles_ViewportButton--isActive .styles_ViewportButton-inner {
|
1703
1649
|
color: var(--puck-color-azure-04);
|
1704
1650
|
}
|
1651
|
+
|
1652
|
+
/* components/Puck/components/Canvas/styles.module.css */
|
1653
|
+
.styles_PuckCanvas {
|
1654
|
+
background: var(--puck-color-grey-11);
|
1655
|
+
display: flex;
|
1656
|
+
grid-area: editor;
|
1657
|
+
flex-direction: column;
|
1658
|
+
padding: var(--puck-space-px);
|
1659
|
+
overflow: auto;
|
1660
|
+
}
|
1661
|
+
@media (min-width: 1198px) {
|
1662
|
+
.styles_PuckCanvas {
|
1663
|
+
padding: calc(var(--puck-space-px) * 1.5);
|
1664
|
+
padding-top: var(--puck-space-px);
|
1665
|
+
}
|
1666
|
+
.styles_PuckCanvas:not(.styles_PuckCanvas:has(.styles_PuckCanvas-controls)) {
|
1667
|
+
padding-top: calc(var(--puck-space-px) * 1.5);
|
1668
|
+
}
|
1669
|
+
}
|
1670
|
+
.styles_PuckCanvas-inner {
|
1671
|
+
box-sizing: border-box;
|
1672
|
+
display: flex;
|
1673
|
+
height: 100%;
|
1674
|
+
justify-content: center;
|
1675
|
+
min-width: 358px;
|
1676
|
+
overflow: hidden;
|
1677
|
+
position: relative;
|
1678
|
+
width: 100%;
|
1679
|
+
}
|
1680
|
+
.styles_PuckCanvas-root {
|
1681
|
+
background: white;
|
1682
|
+
border: 1px solid var(--puck-color-grey-09);
|
1683
|
+
box-sizing: border-box;
|
1684
|
+
min-width: 321px;
|
1685
|
+
position: absolute;
|
1686
|
+
transform-origin: top;
|
1687
|
+
top: 0;
|
1688
|
+
bottom: 0;
|
1689
|
+
opacity: 0;
|
1690
|
+
}
|
1691
|
+
@media (min-width: 1198px) {
|
1692
|
+
.styles_PuckCanvas-root {
|
1693
|
+
min-width: unset;
|
1694
|
+
}
|
1695
|
+
}
|
1696
|
+
@media (prefers-reduced-motion: reduce) {
|
1697
|
+
.styles_PuckCanvas-root {
|
1698
|
+
transition: none !important;
|
1699
|
+
}
|
1700
|
+
}
|
1701
|
+
.styles_PuckCanvas--ready .styles_PuckCanvas-root {
|
1702
|
+
opacity: 1;
|
1703
|
+
transition: opacity 150ms ease-out;
|
1704
|
+
}
|