@measured/puck 0.20.0-canary.755737e8 → 0.20.0-canary.7ccbeece
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -27
- package/dist/chunk-AR5UHF65.mjs +9038 -0
- package/dist/{chunk-IM42S4YL.mjs → chunk-HUKJ36SA.mjs} +402 -301
- package/dist/index.css +390 -413
- package/dist/index.d.mts +17 -8
- package/dist/index.d.ts +17 -8
- package/dist/index.js +3367 -2806
- package/dist/index.mjs +29 -8553
- package/dist/no-external.css +1978 -0
- package/dist/no-external.d.mts +4 -0
- package/dist/no-external.d.ts +4 -0
- package/dist/no-external.js +9972 -0
- package/dist/no-external.mjs +56 -0
- package/dist/rsc.d.mts +2 -2
- package/dist/rsc.d.ts +2 -2
- package/dist/rsc.js +188 -78
- package/dist/rsc.mjs +5 -1
- package/dist/{walk-tree-6PP75PCU.d.mts → walk-tree-B57SgEEc.d.mts} +62 -35
- package/dist/{walk-tree-6PP75PCU.d.ts → walk-tree-B57SgEEc.d.ts} +62 -35
- package/package.json +3 -2
package/dist/index.css
CHANGED
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
-
/*
|
|
137
|
+
/* bundle/core.css */
|
|
138
138
|
#frame-root {
|
|
139
139
|
height: 1px;
|
|
140
140
|
min-height: 100vh;
|
|
@@ -144,6 +144,8 @@
|
|
|
144
144
|
z-index: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
/* bundle/index.css */
|
|
148
|
+
|
|
147
149
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/ActionBar/styles.module.css/#css-module-data */
|
|
148
150
|
._ActionBar_rvadt_1 {
|
|
149
151
|
align-items: center;
|
|
@@ -229,10 +231,10 @@
|
|
|
229
231
|
}
|
|
230
232
|
|
|
231
233
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/AutoField/styles.module.css/#css-module-data */
|
|
232
|
-
.
|
|
234
|
+
._InputWrapper_bsxfo_1 + ._InputWrapper_bsxfo_1 {
|
|
233
235
|
margin-top: 12px;
|
|
234
236
|
}
|
|
235
|
-
._Input-
|
|
237
|
+
._Input-label_bsxfo_5 {
|
|
236
238
|
align-items: center;
|
|
237
239
|
color: var(--puck-color-grey-04);
|
|
238
240
|
display: flex;
|
|
@@ -240,17 +242,17 @@
|
|
|
240
242
|
font-size: var(--puck-font-size-xxs);
|
|
241
243
|
font-weight: 600;
|
|
242
244
|
}
|
|
243
|
-
._Input-
|
|
245
|
+
._Input-labelIcon_bsxfo_14 {
|
|
244
246
|
color: var(--puck-color-grey-07);
|
|
245
247
|
display: flex;
|
|
246
248
|
margin-inline-end: 4px;
|
|
247
249
|
padding-inline-start: 4px;
|
|
248
250
|
}
|
|
249
|
-
._Input-
|
|
251
|
+
._Input-disabledIcon_bsxfo_21 {
|
|
250
252
|
color: var(--puck-color-grey-05);
|
|
251
253
|
margin-inline-start: auto;
|
|
252
254
|
}
|
|
253
|
-
._Input-
|
|
255
|
+
._Input-input_bsxfo_26 {
|
|
254
256
|
background: var(--puck-color-white);
|
|
255
257
|
border-width: 1px;
|
|
256
258
|
border-style: solid;
|
|
@@ -258,13 +260,18 @@
|
|
|
258
260
|
border-radius: 4px;
|
|
259
261
|
box-sizing: border-box;
|
|
260
262
|
font-family: inherit;
|
|
261
|
-
font-size:
|
|
263
|
+
font-size: 16px;
|
|
262
264
|
padding: 12px 15px;
|
|
263
265
|
transition: border-color 50ms ease-in;
|
|
264
266
|
width: 100%;
|
|
265
267
|
max-width: 100%;
|
|
266
268
|
}
|
|
267
|
-
|
|
269
|
+
@media (min-width: 458px) {
|
|
270
|
+
._Input-input_bsxfo_26 {
|
|
271
|
+
font-size: 14px;
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
select._Input-input_bsxfo_26 {
|
|
268
275
|
appearance: none;
|
|
269
276
|
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23c3c3c3'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
|
|
270
277
|
background-size: 12px;
|
|
@@ -273,29 +280,29 @@ select._Input-input_py9hf_26 {
|
|
|
273
280
|
background-color: var(--puck-color-white);
|
|
274
281
|
cursor: pointer;
|
|
275
282
|
}
|
|
276
|
-
select._Input-
|
|
283
|
+
select._Input-input_bsxfo_26:dir(rtl) {
|
|
277
284
|
background-position: 12px calc(50% + 3px);
|
|
278
285
|
}
|
|
279
286
|
@media (hover: hover) and (pointer: fine) {
|
|
280
|
-
.
|
|
281
|
-
.
|
|
287
|
+
._Input_bsxfo_1:has(> input):hover ._Input-input_bsxfo_26:not([readonly]),
|
|
288
|
+
._Input_bsxfo_1:has(> textarea):hover ._Input-input_bsxfo_26:not([readonly]) {
|
|
282
289
|
border-color: var(--puck-color-grey-05);
|
|
283
290
|
transition: none;
|
|
284
291
|
}
|
|
285
|
-
.
|
|
292
|
+
._Input_bsxfo_1:has(> select):hover ._Input-input_bsxfo_26:not([disabled]) {
|
|
286
293
|
background-color: var(--puck-color-azure-12);
|
|
287
294
|
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%235a5a5a'><polygon points='0,0 100,0 50,50'/></svg>");
|
|
288
295
|
border-color: var(--puck-color-grey-05);
|
|
289
296
|
transition: none;
|
|
290
297
|
}
|
|
291
298
|
}
|
|
292
|
-
._Input-
|
|
299
|
+
._Input-input_bsxfo_26:focus {
|
|
293
300
|
border-color: var(--puck-color-grey-05);
|
|
294
301
|
outline: 2px solid var(--puck-color-azure-05);
|
|
295
302
|
transition: none;
|
|
296
303
|
}
|
|
297
|
-
._Input--
|
|
298
|
-
._Input--
|
|
304
|
+
._Input--readOnly_bsxfo_82 > ._Input-input_bsxfo_26,
|
|
305
|
+
._Input--readOnly_bsxfo_82 > select._Input-input_bsxfo_26 {
|
|
299
306
|
background-color: var(--puck-color-grey-11);
|
|
300
307
|
border-color: var(--puck-color-grey-09);
|
|
301
308
|
color: var(--puck-color-grey-04);
|
|
@@ -304,34 +311,34 @@ select._Input-input_py9hf_26:dir(rtl) {
|
|
|
304
311
|
outline: 0;
|
|
305
312
|
transition: none;
|
|
306
313
|
}
|
|
307
|
-
._Input-
|
|
314
|
+
._Input-radioGroupItems_bsxfo_93 {
|
|
308
315
|
display: flex;
|
|
309
316
|
border: 1px solid var(--puck-color-grey-09);
|
|
310
317
|
border-radius: 4px;
|
|
311
318
|
flex-wrap: wrap;
|
|
312
319
|
}
|
|
313
|
-
._Input-
|
|
320
|
+
._Input-radio_bsxfo_93 {
|
|
314
321
|
border-inline-end: 1px solid var(--puck-color-grey-09);
|
|
315
322
|
flex-grow: 1;
|
|
316
323
|
}
|
|
317
|
-
._Input-
|
|
324
|
+
._Input-radio_bsxfo_93:first-of-type {
|
|
318
325
|
border-bottom-left-radius: 4px;
|
|
319
326
|
border-top-left-radius: 4px;
|
|
320
327
|
}
|
|
321
|
-
._Input-
|
|
328
|
+
._Input-radio_bsxfo_93:first-of-type ._Input-radioInner_bsxfo_110 {
|
|
322
329
|
border-bottom-left-radius: 3px;
|
|
323
330
|
border-top-left-radius: 3px;
|
|
324
331
|
}
|
|
325
|
-
._Input-
|
|
332
|
+
._Input-radio_bsxfo_93:last-of-type {
|
|
326
333
|
border-bottom-right-radius: 4px;
|
|
327
334
|
border-inline-end: 0;
|
|
328
335
|
border-top-right-radius: 4px;
|
|
329
336
|
}
|
|
330
|
-
._Input-
|
|
337
|
+
._Input-radio_bsxfo_93:last-of-type ._Input-radioInner_bsxfo_110 {
|
|
331
338
|
border-bottom-right-radius: 3px;
|
|
332
339
|
border-top-right-radius: 3px;
|
|
333
340
|
}
|
|
334
|
-
._Input-
|
|
341
|
+
._Input-radioInner_bsxfo_110 {
|
|
335
342
|
background-color: var(--puck-color-white);
|
|
336
343
|
color: var(--puck-color-grey-04);
|
|
337
344
|
cursor: pointer;
|
|
@@ -340,32 +347,32 @@ select._Input-input_py9hf_26:dir(rtl) {
|
|
|
340
347
|
text-align: center;
|
|
341
348
|
transition: background-color 50ms ease-in;
|
|
342
349
|
}
|
|
343
|
-
._Input-
|
|
350
|
+
._Input-radio_bsxfo_93:has(:focus-visible) {
|
|
344
351
|
outline: 2px solid var(--puck-color-azure-05);
|
|
345
352
|
outline-offset: 2px;
|
|
346
353
|
position: relative;
|
|
347
354
|
}
|
|
348
355
|
@media (hover: hover) and (pointer: fine) {
|
|
349
|
-
._Input-
|
|
356
|
+
._Input-radioInner_bsxfo_110:hover {
|
|
350
357
|
background-color: var(--puck-color-azure-12);
|
|
351
358
|
transition: none;
|
|
352
359
|
}
|
|
353
360
|
}
|
|
354
|
-
._Input--
|
|
361
|
+
._Input--readOnly_bsxfo_82 ._Input-radioInner_bsxfo_110 {
|
|
355
362
|
background-color: var(--puck-color-white);
|
|
356
363
|
color: var(--puck-color-grey-04);
|
|
357
364
|
cursor: default;
|
|
358
365
|
}
|
|
359
|
-
._Input-
|
|
366
|
+
._Input-radio_bsxfo_93 ._Input-radioInput_bsxfo_155:checked ~ ._Input-radioInner_bsxfo_110 {
|
|
360
367
|
background-color: var(--puck-color-azure-11);
|
|
361
368
|
color: var(--puck-color-azure-04);
|
|
362
369
|
font-weight: 500;
|
|
363
370
|
}
|
|
364
|
-
._Input--
|
|
371
|
+
._Input--readOnly_bsxfo_82 ._Input-radioInput_bsxfo_155:checked ~ ._Input-radioInner_bsxfo_110 {
|
|
365
372
|
background-color: var(--puck-color-grey-11);
|
|
366
373
|
color: var(--puck-color-grey-04);
|
|
367
374
|
}
|
|
368
|
-
._Input-
|
|
375
|
+
._Input-radio_bsxfo_93 ._Input-radioInput_bsxfo_155 {
|
|
369
376
|
clip: rect(0 0 0 0);
|
|
370
377
|
clip-path: inset(100%);
|
|
371
378
|
height: 1px;
|
|
@@ -374,7 +381,7 @@ select._Input-input_py9hf_26:dir(rtl) {
|
|
|
374
381
|
white-space: nowrap;
|
|
375
382
|
width: 1px;
|
|
376
383
|
}
|
|
377
|
-
textarea._Input-
|
|
384
|
+
textarea._Input-input_bsxfo_26 {
|
|
378
385
|
margin-bottom: -4px;
|
|
379
386
|
}
|
|
380
387
|
|
|
@@ -1150,27 +1157,31 @@ textarea._Input-input_py9hf_26 {
|
|
|
1150
1157
|
}
|
|
1151
1158
|
|
|
1152
1159
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/DraggableComponent/styles.module.css/#css-module-data */
|
|
1153
|
-
.
|
|
1160
|
+
._DraggableComponent_1vaqy_1 {
|
|
1154
1161
|
position: absolute;
|
|
1155
1162
|
pointer-events: none;
|
|
1156
1163
|
--overlay-background: color-mix( in srgb, var(--puck-color-azure-08) 30%, transparent );
|
|
1157
1164
|
}
|
|
1158
|
-
._DraggableComponent-
|
|
1159
|
-
cursor: pointer;
|
|
1165
|
+
._DraggableComponent-overlayWrapper_1vaqy_12 {
|
|
1160
1166
|
height: 100%;
|
|
1161
1167
|
width: 100%;
|
|
1162
1168
|
top: 0;
|
|
1163
|
-
outline: 2px var(--puck-color-azure-09) solid;
|
|
1164
|
-
outline-offset: -2px;
|
|
1165
1169
|
position: absolute;
|
|
1166
1170
|
pointer-events: none;
|
|
1167
1171
|
box-sizing: border-box;
|
|
1168
1172
|
z-index: 1;
|
|
1169
1173
|
}
|
|
1170
|
-
.
|
|
1174
|
+
._DraggableComponent-overlay_1vaqy_12 {
|
|
1175
|
+
cursor: pointer;
|
|
1176
|
+
height: 100%;
|
|
1177
|
+
outline: 2px var(--puck-color-azure-09) solid;
|
|
1178
|
+
outline-offset: -2px;
|
|
1179
|
+
width: 100%;
|
|
1180
|
+
}
|
|
1181
|
+
._DraggableComponent_1vaqy_1:focus-visible > ._DraggableComponent-overlayWrapper_1vaqy_12 {
|
|
1171
1182
|
outline: 1px solid var(--puck-color-azure-05);
|
|
1172
1183
|
}
|
|
1173
|
-
._DraggableComponent-
|
|
1184
|
+
._DraggableComponent-loadingOverlay_1vaqy_34 {
|
|
1174
1185
|
background: var(--puck-color-white);
|
|
1175
1186
|
color: var(--puck-color-grey-03);
|
|
1176
1187
|
border-radius: 4px;
|
|
@@ -1185,29 +1196,27 @@ textarea._Input-input_py9hf_26 {
|
|
|
1185
1196
|
opacity: 0.8;
|
|
1186
1197
|
z-index: 1;
|
|
1187
1198
|
}
|
|
1188
|
-
._DraggableComponent--
|
|
1199
|
+
._DraggableComponent--hover_1vaqy_50 > ._DraggableComponent-overlayWrapper_1vaqy_12 > ._DraggableComponent-overlay_1vaqy_12 {
|
|
1189
1200
|
background: var(--overlay-background);
|
|
1190
|
-
}
|
|
1191
|
-
._DraggableComponent--hover_qzbgx_45 > ._DraggableComponent-overlay_qzbgx_12 {
|
|
1192
1201
|
outline: 2px var(--puck-color-azure-09) solid;
|
|
1193
1202
|
}
|
|
1194
|
-
._DraggableComponent--
|
|
1203
|
+
._DraggableComponent--isSelected_1vaqy_57 > ._DraggableComponent-overlayWrapper_1vaqy_12 > ._DraggableComponent-overlay_1vaqy_12 {
|
|
1195
1204
|
outline-color: var(--puck-color-azure-07);
|
|
1196
1205
|
}
|
|
1197
|
-
.
|
|
1206
|
+
._DraggableComponent_1vaqy_1:has(._DraggableComponent--hover_1vaqy_50 > ._DraggableComponent-overlayWrapper_1vaqy_12) > ._DraggableComponent-overlayWrapper_1vaqy_12 {
|
|
1198
1207
|
display: none;
|
|
1199
1208
|
}
|
|
1200
|
-
._DraggableComponent-
|
|
1209
|
+
._DraggableComponent-actionsOverlay_1vaqy_71 {
|
|
1201
1210
|
position: sticky;
|
|
1202
1211
|
opacity: 0;
|
|
1203
1212
|
pointer-events: none;
|
|
1204
1213
|
z-index: 2;
|
|
1205
1214
|
}
|
|
1206
|
-
._DraggableComponent--
|
|
1215
|
+
._DraggableComponent--isSelected_1vaqy_57 ._DraggableComponent-actionsOverlay_1vaqy_71 {
|
|
1207
1216
|
opacity: 1;
|
|
1208
1217
|
pointer-events: auto;
|
|
1209
1218
|
}
|
|
1210
|
-
._DraggableComponent-
|
|
1219
|
+
._DraggableComponent-actions_1vaqy_71 {
|
|
1211
1220
|
position: absolute;
|
|
1212
1221
|
width: auto;
|
|
1213
1222
|
cursor: grab;
|
|
@@ -1307,6 +1316,195 @@ body:has(._DropZone--isAnimating_1i2sv_68:empty) [data-puck-overlay] {
|
|
|
1307
1316
|
opacity: 0 !important;
|
|
1308
1317
|
}
|
|
1309
1318
|
|
|
1319
|
+
/* lib/overlay-portal/styles.css */
|
|
1320
|
+
[data-puck-overlay-portal],
|
|
1321
|
+
[data-puck-overlay-portal] * {
|
|
1322
|
+
pointer-events: auto !important;
|
|
1323
|
+
}
|
|
1324
|
+
[data-puck-overlay-portal]:hover {
|
|
1325
|
+
outline: 2px var(--puck-color-azure-09) dashed;
|
|
1326
|
+
outline-offset: 2px;
|
|
1327
|
+
}
|
|
1328
|
+
[data-puck-overlay-portal]:focus-within {
|
|
1329
|
+
outline: 2px var(--puck-color-azure-07) solid;
|
|
1330
|
+
outline-offset: 2px;
|
|
1331
|
+
}
|
|
1332
|
+
|
|
1333
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/InlineTextField/styles.module.css/#css-module-data */
|
|
1334
|
+
._InlineTextField_ilw2a_1 {
|
|
1335
|
+
cursor: text;
|
|
1336
|
+
display: inline-block;
|
|
1337
|
+
}
|
|
1338
|
+
[data-dnd-dragging] ._InlineTextField_ilw2a_1 {
|
|
1339
|
+
cursor: none;
|
|
1340
|
+
caret-color: transparent;
|
|
1341
|
+
}
|
|
1342
|
+
[data-dnd-dragging] ._InlineTextField_ilw2a_1::selection {
|
|
1343
|
+
display: none;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/SidebarSection/styles.module.css/#css-module-data */
|
|
1347
|
+
._SidebarSection_8boj8_1 {
|
|
1348
|
+
display: flex;
|
|
1349
|
+
position: relative;
|
|
1350
|
+
flex-direction: column;
|
|
1351
|
+
color: var(--puck-color-black);
|
|
1352
|
+
}
|
|
1353
|
+
._SidebarSection_8boj8_1:last-of-type {
|
|
1354
|
+
flex-grow: 1;
|
|
1355
|
+
}
|
|
1356
|
+
._SidebarSection-title_8boj8_12 {
|
|
1357
|
+
background: var(--puck-color-white);
|
|
1358
|
+
padding: 16px;
|
|
1359
|
+
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
1360
|
+
border-top: 1px solid var(--puck-color-grey-09);
|
|
1361
|
+
overflow-x: auto;
|
|
1362
|
+
}
|
|
1363
|
+
._SidebarSection--noBorderTop_8boj8_20 > ._SidebarSection-title_8boj8_12 {
|
|
1364
|
+
border-top: 0px;
|
|
1365
|
+
}
|
|
1366
|
+
._SidebarSection-content_8boj8_24 {
|
|
1367
|
+
padding: 16px;
|
|
1368
|
+
}
|
|
1369
|
+
._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24 {
|
|
1370
|
+
padding: 0px;
|
|
1371
|
+
}
|
|
1372
|
+
._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24:last-child {
|
|
1373
|
+
padding-bottom: 4px;
|
|
1374
|
+
}
|
|
1375
|
+
._SidebarSection_8boj8_1:last-of-type ._SidebarSection-content_8boj8_24 {
|
|
1376
|
+
border-bottom: none;
|
|
1377
|
+
flex-grow: 1;
|
|
1378
|
+
}
|
|
1379
|
+
._SidebarSection-breadcrumbLabel_8boj8_41 {
|
|
1380
|
+
background: none;
|
|
1381
|
+
border: 0;
|
|
1382
|
+
border-radius: 2px;
|
|
1383
|
+
color: var(--puck-color-azure-04);
|
|
1384
|
+
cursor: pointer;
|
|
1385
|
+
font: inherit;
|
|
1386
|
+
flex-shrink: 0;
|
|
1387
|
+
padding: 0;
|
|
1388
|
+
transition: color 50ms ease-in;
|
|
1389
|
+
}
|
|
1390
|
+
._SidebarSection-breadcrumbLabel_8boj8_41:focus-visible {
|
|
1391
|
+
outline: 2px solid var(--puck-color-azure-05);
|
|
1392
|
+
outline-offset: 2px;
|
|
1393
|
+
}
|
|
1394
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1395
|
+
._SidebarSection-breadcrumbLabel_8boj8_41:hover {
|
|
1396
|
+
color: var(--puck-color-azure-03);
|
|
1397
|
+
transition: none;
|
|
1398
|
+
}
|
|
1399
|
+
}
|
|
1400
|
+
._SidebarSection-breadcrumbLabel_8boj8_41:active {
|
|
1401
|
+
color: var(--puck-color-azure-02);
|
|
1402
|
+
transition: none;
|
|
1403
|
+
}
|
|
1404
|
+
._SidebarSection-breadcrumbs_8boj8_70 {
|
|
1405
|
+
align-items: center;
|
|
1406
|
+
display: flex;
|
|
1407
|
+
gap: 4px;
|
|
1408
|
+
}
|
|
1409
|
+
._SidebarSection-breadcrumb_8boj8_41 {
|
|
1410
|
+
align-items: center;
|
|
1411
|
+
display: flex;
|
|
1412
|
+
gap: 4px;
|
|
1413
|
+
}
|
|
1414
|
+
._SidebarSection-heading_8boj8_82 {
|
|
1415
|
+
padding-inline-end: 16px;
|
|
1416
|
+
}
|
|
1417
|
+
._SidebarSection-loadingOverlay_8boj8_86 {
|
|
1418
|
+
background: var(--puck-color-white);
|
|
1419
|
+
display: flex;
|
|
1420
|
+
justify-content: center;
|
|
1421
|
+
align-items: center;
|
|
1422
|
+
height: 100%;
|
|
1423
|
+
width: 100%;
|
|
1424
|
+
top: 0;
|
|
1425
|
+
position: absolute;
|
|
1426
|
+
z-index: 1;
|
|
1427
|
+
pointer-events: all;
|
|
1428
|
+
box-sizing: border-box;
|
|
1429
|
+
opacity: 0.8;
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/styles.module.css/#css-module-data */
|
|
1433
|
+
._Puck_1yxlw_19 {
|
|
1434
|
+
--puck-space-px: 16px;
|
|
1435
|
+
font-family: var(--puck-font-family);
|
|
1436
|
+
overflow-x: hidden;
|
|
1437
|
+
}
|
|
1438
|
+
@media (min-width: 766px) {
|
|
1439
|
+
._Puck_1yxlw_19 {
|
|
1440
|
+
overflow-x: auto;
|
|
1441
|
+
}
|
|
1442
|
+
}
|
|
1443
|
+
._Puck-portal_1yxlw_31 {
|
|
1444
|
+
position: relative;
|
|
1445
|
+
z-index: 2;
|
|
1446
|
+
}
|
|
1447
|
+
._PuckLayout-inner_1yxlw_38 {
|
|
1448
|
+
--puck-frame-width: auto;
|
|
1449
|
+
--puck-side-bar-width: 0px;
|
|
1450
|
+
--puck-left-side-bar-width: var( --puck-user-left-side-bar-width, var(--puck-side-bar-width) );
|
|
1451
|
+
--puck-right-side-bar-width: var( --puck-user-right-side-bar-width, var(--puck-side-bar-width) );
|
|
1452
|
+
display: grid;
|
|
1453
|
+
grid-template-areas: "header header header" "left editor right";
|
|
1454
|
+
grid-template-columns: 0 var(--puck-frame-width) 0;
|
|
1455
|
+
grid-template-rows: min-content auto;
|
|
1456
|
+
height: 100dvh;
|
|
1457
|
+
position: relative;
|
|
1458
|
+
z-index: 0;
|
|
1459
|
+
}
|
|
1460
|
+
._PuckLayout--mounted_1yxlw_59 ._PuckLayout-inner_1yxlw_38 {
|
|
1461
|
+
--puck-side-bar-width: 186px;
|
|
1462
|
+
}
|
|
1463
|
+
._PuckLayout--leftSideBarVisible_1yxlw_63 ._PuckLayout-inner_1yxlw_38 {
|
|
1464
|
+
grid-template-columns: var(--puck-left-side-bar-width) var(--puck-frame-width) 0;
|
|
1465
|
+
}
|
|
1466
|
+
._PuckLayout--rightSideBarVisible_1yxlw_69 ._PuckLayout-inner_1yxlw_38 {
|
|
1467
|
+
grid-template-columns: 0 var(--puck-frame-width) var(--puck-right-side-bar-width);
|
|
1468
|
+
}
|
|
1469
|
+
._PuckLayout--leftSideBarVisible_1yxlw_63._PuckLayout--rightSideBarVisible_1yxlw_69 ._PuckLayout-inner_1yxlw_38 {
|
|
1470
|
+
grid-template-columns: var(--puck-left-side-bar-width) var(--puck-frame-width) var(--puck-right-side-bar-width);
|
|
1471
|
+
}
|
|
1472
|
+
@media (min-width: 458px) {
|
|
1473
|
+
._PuckLayout-mounted_1yxlw_83 ._PuckLayout-inner_1yxlw_38 {
|
|
1474
|
+
--puck-frame-width: minmax(266px, auto);
|
|
1475
|
+
}
|
|
1476
|
+
}
|
|
1477
|
+
@media (min-width: 638px) {
|
|
1478
|
+
._PuckLayout_1yxlw_38 ._PuckLayout-inner_1yxlw_38 {
|
|
1479
|
+
--puck-side-bar-width: minmax(186px, 250px);
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
@media (min-width: 766px) {
|
|
1483
|
+
._PuckLayout_1yxlw_38 ._PuckLayout-inner_1yxlw_38 {
|
|
1484
|
+
--puck-frame-width: auto;
|
|
1485
|
+
}
|
|
1486
|
+
}
|
|
1487
|
+
@media (min-width: 990px) {
|
|
1488
|
+
._PuckLayout_1yxlw_38 ._PuckLayout-inner_1yxlw_38 {
|
|
1489
|
+
--puck-side-bar-width: 256px;
|
|
1490
|
+
}
|
|
1491
|
+
}
|
|
1492
|
+
@media (min-width: 1198px) {
|
|
1493
|
+
._PuckLayout_1yxlw_38 ._PuckLayout-inner_1yxlw_38 {
|
|
1494
|
+
--puck-side-bar-width: 274px;
|
|
1495
|
+
}
|
|
1496
|
+
}
|
|
1497
|
+
@media (min-width: 1398px) {
|
|
1498
|
+
._PuckLayout_1yxlw_38 ._PuckLayout-inner_1yxlw_38 {
|
|
1499
|
+
--puck-side-bar-width: 290px;
|
|
1500
|
+
}
|
|
1501
|
+
}
|
|
1502
|
+
@media (min-width: 1598px) {
|
|
1503
|
+
._PuckLayout_1yxlw_38 ._PuckLayout-inner_1yxlw_38 {
|
|
1504
|
+
--puck-side-bar-width: 320px;
|
|
1505
|
+
}
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1310
1508
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Fields/styles.module.css/#css-module-data */
|
|
1311
1509
|
._PuckFields_10bh7_1 {
|
|
1312
1510
|
position: relative;
|
|
@@ -1512,100 +1710,111 @@ body:has(._DropZone--isAnimating_1i2sv_68:empty) [data-puck-overlay] {
|
|
|
1512
1710
|
margin-top: 4px;
|
|
1513
1711
|
}
|
|
1514
1712
|
|
|
1515
|
-
/* css-module:/home/runner/work/puck/puck/packages/core/components/
|
|
1516
|
-
.
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
z-index: 2;
|
|
1529
|
-
}
|
|
1530
|
-
._PuckLayout-inner_n6ob8_36 {
|
|
1531
|
-
--puck-frame-width: auto;
|
|
1532
|
-
--puck-side-bar-width: 0px;
|
|
1533
|
-
display: grid;
|
|
1534
|
-
grid-template-areas: "header header header header" "sidenav left editor right";
|
|
1535
|
-
grid-template-columns: var(--puck-side-nav-width) 0 var(--puck-frame-width) 0;
|
|
1536
|
-
grid-template-rows: min-content auto;
|
|
1537
|
-
height: 100dvh;
|
|
1538
|
-
position: relative;
|
|
1539
|
-
z-index: 0;
|
|
1540
|
-
}
|
|
1541
|
-
._PuckLayout--mounted_n6ob8_48 ._PuckLayout-inner_n6ob8_36 {
|
|
1542
|
-
--puck-side-bar-width: 186px;
|
|
1543
|
-
--puck-side-nav-width: 68px;
|
|
1544
|
-
}
|
|
1545
|
-
._PuckLayout--leftSideBarVisible_n6ob8_53 ._PuckLayout-inner_n6ob8_36 {
|
|
1546
|
-
grid-template-columns: var(--puck-side-nav-width) var(--puck-side-bar-width) var( --puck-frame-width ) 0;
|
|
1547
|
-
}
|
|
1548
|
-
._PuckLayout--rightSideBarVisible_n6ob8_61 ._PuckLayout-inner_n6ob8_36 {
|
|
1549
|
-
grid-template-columns: var(--puck-side-nav-width) 0 var(--puck-frame-width) var(--puck-side-bar-width);
|
|
1713
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/ViewportControls/styles.module.css/#css-module-data */
|
|
1714
|
+
._ViewportControls_gejzr_1 {
|
|
1715
|
+
display: flex;
|
|
1716
|
+
background: var(--puck-color-grey-11);
|
|
1717
|
+
box-sizing: border-box;
|
|
1718
|
+
border-inline-start: 2px solid var(--puck-color-grey-11);
|
|
1719
|
+
justify-content: center;
|
|
1720
|
+
gap: 8px;
|
|
1721
|
+
min-width: 358px;
|
|
1722
|
+
padding-bottom: 16px;
|
|
1723
|
+
padding-inline-start: var(--puck-space-px);
|
|
1724
|
+
padding-inline-end: var(--puck-space-px);
|
|
1725
|
+
z-index: 1;
|
|
1550
1726
|
}
|
|
1551
|
-
.
|
|
1552
|
-
|
|
1727
|
+
._ViewportControls-divider_gejzr_15 {
|
|
1728
|
+
border-inline-end: 1px solid var(--puck-color-grey-09);
|
|
1729
|
+
margin-inline-start: 8px;
|
|
1730
|
+
margin-inline-end: 8px;
|
|
1553
1731
|
}
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1732
|
+
._ViewportControls-zoomSelect_gejzr_21 {
|
|
1733
|
+
appearance: none;
|
|
1734
|
+
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;
|
|
1735
|
+
background-size: 10px;
|
|
1736
|
+
background-position: calc(100% - 12px) calc(50% + 3px);
|
|
1737
|
+
background-repeat: no-repeat;
|
|
1738
|
+
border: 0;
|
|
1739
|
+
font-size: var(--puck-font-size-xxxs);
|
|
1740
|
+
padding: 0;
|
|
1741
|
+
width: 96px;
|
|
1558
1742
|
}
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
--puck-side-bar-width: minmax(186px, 250px);
|
|
1562
|
-
}
|
|
1743
|
+
._ViewportControls-zoomSelect_gejzr_21:dir(rtl) {
|
|
1744
|
+
background-position: 12px calc(50% + 3px);
|
|
1563
1745
|
}
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
--puck-frame-width: auto;
|
|
1567
|
-
}
|
|
1746
|
+
._ViewportButton--isActive_gejzr_38 ._ViewportButton-inner_gejzr_38 {
|
|
1747
|
+
color: var(--puck-color-azure-04);
|
|
1568
1748
|
}
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1749
|
+
|
|
1750
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Canvas/styles.module.css/#css-module-data */
|
|
1751
|
+
._PuckCanvas_18jay_1 {
|
|
1752
|
+
background: var(--puck-color-grey-11);
|
|
1753
|
+
display: flex;
|
|
1754
|
+
grid-area: editor;
|
|
1755
|
+
flex-direction: column;
|
|
1756
|
+
padding: var(--puck-space-px);
|
|
1757
|
+
overflow: auto;
|
|
1573
1758
|
}
|
|
1574
1759
|
@media (min-width: 1198px) {
|
|
1575
|
-
.
|
|
1576
|
-
--puck-
|
|
1577
|
-
|
|
1578
|
-
}
|
|
1579
|
-
@media (min-width: 1398px) {
|
|
1580
|
-
._PuckLayout_n6ob8_36 ._PuckLayout-inner_n6ob8_36 {
|
|
1581
|
-
--puck-side-bar-width: 290px;
|
|
1760
|
+
._PuckCanvas_18jay_1 {
|
|
1761
|
+
padding: calc(var(--puck-space-px) * 1.5);
|
|
1762
|
+
padding-top: var(--puck-space-px);
|
|
1582
1763
|
}
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
._PuckLayout_n6ob8_36 ._PuckLayout-inner_n6ob8_36 {
|
|
1586
|
-
--puck-side-bar-width: 320px;
|
|
1764
|
+
._PuckCanvas_18jay_1:not(._PuckCanvas_18jay_1:has(._PuckCanvas-controls_18jay_16)) {
|
|
1765
|
+
padding-top: calc(var(--puck-space-px) * 1.5);
|
|
1587
1766
|
}
|
|
1588
1767
|
}
|
|
1589
|
-
.
|
|
1590
|
-
background: var(--puck-color-grey-12);
|
|
1591
|
-
border-inline-end: 1px solid var(--puck-color-grey-09);
|
|
1768
|
+
._PuckCanvas-inner_18jay_21 {
|
|
1592
1769
|
display: flex;
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1770
|
+
height: 100%;
|
|
1771
|
+
justify-content: center;
|
|
1772
|
+
min-width: 358px;
|
|
1773
|
+
position: relative;
|
|
1774
|
+
width: 100%;
|
|
1597
1775
|
}
|
|
1598
|
-
.
|
|
1599
|
-
background:
|
|
1600
|
-
border
|
|
1776
|
+
._PuckCanvas-root_18jay_30 {
|
|
1777
|
+
background: white;
|
|
1778
|
+
border: 1px solid var(--puck-color-grey-09);
|
|
1779
|
+
box-sizing: content-box;
|
|
1780
|
+
min-width: 321px;
|
|
1781
|
+
position: absolute;
|
|
1782
|
+
pointer-events: none;
|
|
1783
|
+
transform-origin: top;
|
|
1784
|
+
top: 0;
|
|
1785
|
+
bottom: 0;
|
|
1786
|
+
opacity: 0;
|
|
1787
|
+
}
|
|
1788
|
+
@media (min-width: 1198px) {
|
|
1789
|
+
._PuckCanvas-root_18jay_30 {
|
|
1790
|
+
min-width: unset;
|
|
1791
|
+
}
|
|
1792
|
+
}
|
|
1793
|
+
@media (prefers-reduced-motion: reduce) {
|
|
1794
|
+
._PuckCanvas-root_18jay_30 {
|
|
1795
|
+
transition: none !important;
|
|
1796
|
+
}
|
|
1797
|
+
}
|
|
1798
|
+
._PuckCanvas--ready_18jay_55 ._PuckCanvas-root_18jay_30 {
|
|
1799
|
+
pointer-events: unset;
|
|
1800
|
+
opacity: 1;
|
|
1801
|
+
}
|
|
1802
|
+
._PuckCanvas-loader_18jay_60 {
|
|
1803
|
+
align-items: center;
|
|
1804
|
+
color: var(--puck-color-grey-06);
|
|
1601
1805
|
display: flex;
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1806
|
+
height: 100%;
|
|
1807
|
+
justify-content: center;
|
|
1808
|
+
transition: opacity 250ms ease-out;
|
|
1809
|
+
opacity: 0;
|
|
1605
1810
|
}
|
|
1606
|
-
.
|
|
1607
|
-
|
|
1608
|
-
|
|
1811
|
+
._PuckCanvas--showLoader_18jay_70 ._PuckCanvas-loader_18jay_60 {
|
|
1812
|
+
opacity: 1;
|
|
1813
|
+
}
|
|
1814
|
+
._PuckCanvas--showLoader_18jay_70._PuckCanvas--ready_18jay_55 ._PuckCanvas-loader_18jay_60 {
|
|
1815
|
+
opacity: 0;
|
|
1816
|
+
height: 0;
|
|
1817
|
+
transition: none;
|
|
1609
1818
|
}
|
|
1610
1819
|
|
|
1611
1820
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/MenuBar/styles.module.css/#css-module-data */
|
|
@@ -1653,7 +1862,7 @@ body:has(._DropZone--isAnimating_1i2sv_68:empty) [data-puck-overlay] {
|
|
|
1653
1862
|
}
|
|
1654
1863
|
|
|
1655
1864
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Header/styles.module.css/#css-module-data */
|
|
1656
|
-
.
|
|
1865
|
+
._PuckHeader_15xnq_1 {
|
|
1657
1866
|
background: var(--puck-color-white);
|
|
1658
1867
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
1659
1868
|
color: var(--puck-color-black);
|
|
@@ -1661,343 +1870,111 @@ body:has(._DropZone--isAnimating_1i2sv_68:empty) [data-puck-overlay] {
|
|
|
1661
1870
|
position: relative;
|
|
1662
1871
|
max-width: 100vw;
|
|
1663
1872
|
}
|
|
1664
|
-
|
|
1665
|
-
._PuckHeader_dlc6d_1 {
|
|
1666
|
-
padding-left: 67px;
|
|
1667
|
-
}
|
|
1668
|
-
}
|
|
1669
|
-
._PuckHeader-inner_dlc6d_16 {
|
|
1873
|
+
._PuckHeader-inner_15xnq_10 {
|
|
1670
1874
|
align-items: end;
|
|
1671
1875
|
display: grid;
|
|
1672
1876
|
gap: var(--puck-space-px);
|
|
1673
1877
|
grid-template-areas: "left middle right";
|
|
1674
1878
|
grid-template-columns: 1fr auto 1fr;
|
|
1675
1879
|
grid-template-rows: auto;
|
|
1676
|
-
border-left: 1px solid var(--puck-color-grey-09);
|
|
1677
1880
|
padding: var(--puck-space-px);
|
|
1678
1881
|
}
|
|
1679
|
-
|
|
1680
|
-
._PuckHeader-inner_dlc6d_16 {
|
|
1681
|
-
border-left: 1px solid var(--puck-color-grey-09);
|
|
1682
|
-
}
|
|
1683
|
-
}
|
|
1684
|
-
._PuckHeader-toggle_dlc6d_33 {
|
|
1882
|
+
._PuckHeader-toggle_15xnq_20 {
|
|
1685
1883
|
color: var(--puck-color-grey-05);
|
|
1686
1884
|
display: flex;
|
|
1687
1885
|
margin-inline-start: -4px;
|
|
1688
1886
|
padding-top: 2px;
|
|
1689
1887
|
}
|
|
1690
|
-
._PuckHeader--
|
|
1691
|
-
._PuckHeader--
|
|
1888
|
+
._PuckHeader--rightSideBarVisible_15xnq_27 ._PuckHeader-rightSideBarToggle_15xnq_27,
|
|
1889
|
+
._PuckHeader--leftSideBarVisible_15xnq_28 ._PuckHeader-leftSideBarToggle_15xnq_28 {
|
|
1692
1890
|
color: var(--puck-color-black);
|
|
1693
1891
|
}
|
|
1694
|
-
._PuckHeader-
|
|
1892
|
+
._PuckHeader-title_15xnq_32 {
|
|
1695
1893
|
align-self: center;
|
|
1696
1894
|
}
|
|
1697
|
-
._PuckHeader-
|
|
1895
|
+
._PuckHeader-path_15xnq_36 {
|
|
1698
1896
|
font-family: var(--puck-font-family-monospaced);
|
|
1699
1897
|
font-size: var(--puck-font-size-xxs);
|
|
1700
1898
|
font-weight: normal;
|
|
1701
1899
|
word-break: break-all;
|
|
1702
1900
|
}
|
|
1703
|
-
._PuckHeader-
|
|
1901
|
+
._PuckHeader-tools_15xnq_43 {
|
|
1704
1902
|
display: flex;
|
|
1705
1903
|
gap: 16px;
|
|
1706
1904
|
justify-content: flex-end;
|
|
1707
1905
|
}
|
|
1708
|
-
._PuckHeader-
|
|
1906
|
+
._PuckHeader-menuButton_15xnq_49 {
|
|
1709
1907
|
color: var(--puck-color-grey-05);
|
|
1710
1908
|
margin-inline-start: -4px;
|
|
1711
1909
|
}
|
|
1712
|
-
._PuckHeader--
|
|
1910
|
+
._PuckHeader--menuOpen_15xnq_54 ._PuckHeader-menuButton_15xnq_49 {
|
|
1713
1911
|
color: var(--puck-color-black);
|
|
1714
1912
|
}
|
|
1715
1913
|
@media (min-width: 638px) {
|
|
1716
|
-
._PuckHeader-
|
|
1914
|
+
._PuckHeader-menuButton_15xnq_49 {
|
|
1717
1915
|
display: none;
|
|
1718
1916
|
}
|
|
1719
1917
|
}
|
|
1720
1918
|
|
|
1721
|
-
/* css-module:/home/runner/work/puck/puck/packages/core/components/
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
._SidebarSection-title_8boj8_12 {
|
|
1732
|
-
background: var(--puck-color-white);
|
|
1733
|
-
padding: 16px;
|
|
1734
|
-
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
1735
|
-
border-top: 1px solid var(--puck-color-grey-09);
|
|
1736
|
-
overflow-x: auto;
|
|
1737
|
-
}
|
|
1738
|
-
._SidebarSection--noBorderTop_8boj8_20 > ._SidebarSection-title_8boj8_12 {
|
|
1739
|
-
border-top: 0px;
|
|
1740
|
-
}
|
|
1741
|
-
._SidebarSection-content_8boj8_24 {
|
|
1742
|
-
padding: 16px;
|
|
1743
|
-
}
|
|
1744
|
-
._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24 {
|
|
1745
|
-
padding: 0px;
|
|
1746
|
-
}
|
|
1747
|
-
._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24:last-child {
|
|
1748
|
-
padding-bottom: 4px;
|
|
1749
|
-
}
|
|
1750
|
-
._SidebarSection_8boj8_1:last-of-type ._SidebarSection-content_8boj8_24 {
|
|
1751
|
-
border-bottom: none;
|
|
1752
|
-
flex-grow: 1;
|
|
1753
|
-
}
|
|
1754
|
-
._SidebarSection-breadcrumbLabel_8boj8_41 {
|
|
1755
|
-
background: none;
|
|
1756
|
-
border: 0;
|
|
1757
|
-
border-radius: 2px;
|
|
1758
|
-
color: var(--puck-color-azure-04);
|
|
1759
|
-
cursor: pointer;
|
|
1760
|
-
font: inherit;
|
|
1761
|
-
flex-shrink: 0;
|
|
1762
|
-
padding: 0;
|
|
1763
|
-
transition: color 50ms ease-in;
|
|
1764
|
-
}
|
|
1765
|
-
._SidebarSection-breadcrumbLabel_8boj8_41:focus-visible {
|
|
1766
|
-
outline: 2px solid var(--puck-color-azure-05);
|
|
1767
|
-
outline-offset: 2px;
|
|
1768
|
-
}
|
|
1769
|
-
@media (hover: hover) and (pointer: fine) {
|
|
1770
|
-
._SidebarSection-breadcrumbLabel_8boj8_41:hover {
|
|
1771
|
-
color: var(--puck-color-azure-03);
|
|
1772
|
-
transition: none;
|
|
1919
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/ResizeHandle/styles.module.css/#css-module-data */
|
|
1920
|
+
@media (min-width: 766px) {
|
|
1921
|
+
._ResizeHandle_144bf_2 {
|
|
1922
|
+
position: absolute;
|
|
1923
|
+
width: 5px;
|
|
1924
|
+
height: 100%;
|
|
1925
|
+
cursor: col-resize;
|
|
1926
|
+
z-index: 10;
|
|
1927
|
+
background: transparent;
|
|
1928
|
+
top: 0;
|
|
1773
1929
|
}
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
color: var(--puck-color-azure-02);
|
|
1777
|
-
transition: none;
|
|
1778
|
-
}
|
|
1779
|
-
._SidebarSection-breadcrumbs_8boj8_70 {
|
|
1780
|
-
align-items: center;
|
|
1781
|
-
display: flex;
|
|
1782
|
-
gap: 4px;
|
|
1783
|
-
}
|
|
1784
|
-
._SidebarSection-breadcrumb_8boj8_41 {
|
|
1785
|
-
align-items: center;
|
|
1786
|
-
display: flex;
|
|
1787
|
-
gap: 4px;
|
|
1788
|
-
}
|
|
1789
|
-
._SidebarSection-heading_8boj8_82 {
|
|
1790
|
-
padding-inline-end: 16px;
|
|
1791
|
-
}
|
|
1792
|
-
._SidebarSection-loadingOverlay_8boj8_86 {
|
|
1793
|
-
background: var(--puck-color-white);
|
|
1794
|
-
display: flex;
|
|
1795
|
-
justify-content: center;
|
|
1796
|
-
align-items: center;
|
|
1797
|
-
height: 100%;
|
|
1798
|
-
width: 100%;
|
|
1799
|
-
top: 0;
|
|
1800
|
-
position: absolute;
|
|
1801
|
-
z-index: 1;
|
|
1802
|
-
pointer-events: all;
|
|
1803
|
-
box-sizing: border-box;
|
|
1804
|
-
opacity: 0.8;
|
|
1805
|
-
}
|
|
1806
|
-
|
|
1807
|
-
/* css-module:/home/runner/work/puck/puck/packages/core/components/ViewportControls/styles.module.css/#css-module-data */
|
|
1808
|
-
._ViewportControls_gejzr_1 {
|
|
1809
|
-
display: flex;
|
|
1810
|
-
background: var(--puck-color-grey-11);
|
|
1811
|
-
box-sizing: border-box;
|
|
1812
|
-
border-inline-start: 2px solid var(--puck-color-grey-11);
|
|
1813
|
-
justify-content: center;
|
|
1814
|
-
gap: 8px;
|
|
1815
|
-
min-width: 358px;
|
|
1816
|
-
padding-bottom: 16px;
|
|
1817
|
-
padding-inline-start: var(--puck-space-px);
|
|
1818
|
-
padding-inline-end: var(--puck-space-px);
|
|
1819
|
-
z-index: 1;
|
|
1820
|
-
}
|
|
1821
|
-
._ViewportControls-divider_gejzr_15 {
|
|
1822
|
-
border-inline-end: 1px solid var(--puck-color-grey-09);
|
|
1823
|
-
margin-inline-start: 8px;
|
|
1824
|
-
margin-inline-end: 8px;
|
|
1825
|
-
}
|
|
1826
|
-
._ViewportControls-zoomSelect_gejzr_21 {
|
|
1827
|
-
appearance: none;
|
|
1828
|
-
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;
|
|
1829
|
-
background-size: 10px;
|
|
1830
|
-
background-position: calc(100% - 12px) calc(50% + 3px);
|
|
1831
|
-
background-repeat: no-repeat;
|
|
1832
|
-
border: 0;
|
|
1833
|
-
font-size: var(--puck-font-size-xxxs);
|
|
1834
|
-
padding: 0;
|
|
1835
|
-
width: 96px;
|
|
1836
|
-
}
|
|
1837
|
-
._ViewportControls-zoomSelect_gejzr_21:dir(rtl) {
|
|
1838
|
-
background-position: 12px calc(50% + 3px);
|
|
1839
|
-
}
|
|
1840
|
-
._ViewportButton--isActive_gejzr_38 ._ViewportButton-inner_gejzr_38 {
|
|
1841
|
-
color: var(--puck-color-azure-04);
|
|
1842
|
-
}
|
|
1843
|
-
|
|
1844
|
-
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Canvas/styles.module.css/#css-module-data */
|
|
1845
|
-
._PuckCanvas_18jay_1 {
|
|
1846
|
-
background: var(--puck-color-grey-11);
|
|
1847
|
-
display: flex;
|
|
1848
|
-
grid-area: editor;
|
|
1849
|
-
flex-direction: column;
|
|
1850
|
-
padding: var(--puck-space-px);
|
|
1851
|
-
overflow: auto;
|
|
1852
|
-
}
|
|
1853
|
-
@media (min-width: 1198px) {
|
|
1854
|
-
._PuckCanvas_18jay_1 {
|
|
1855
|
-
padding: calc(var(--puck-space-px) * 1.5);
|
|
1856
|
-
padding-top: var(--puck-space-px);
|
|
1930
|
+
._ResizeHandle_144bf_2:hover {
|
|
1931
|
+
background: rgba(0, 0, 0, 0.1);
|
|
1857
1932
|
}
|
|
1858
|
-
.
|
|
1859
|
-
|
|
1933
|
+
._ResizeHandle--left_144bf_16 {
|
|
1934
|
+
right: -3px;
|
|
1935
|
+
}
|
|
1936
|
+
._ResizeHandle--right_144bf_20 {
|
|
1937
|
+
left: -3px;
|
|
1860
1938
|
}
|
|
1861
1939
|
}
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
min-width: 358px;
|
|
1867
|
-
position: relative;
|
|
1868
|
-
width: 100%;
|
|
1869
|
-
}
|
|
1870
|
-
._PuckCanvas-root_18jay_30 {
|
|
1871
|
-
background: white;
|
|
1872
|
-
border: 1px solid var(--puck-color-grey-09);
|
|
1873
|
-
box-sizing: content-box;
|
|
1874
|
-
min-width: 321px;
|
|
1875
|
-
position: absolute;
|
|
1876
|
-
pointer-events: none;
|
|
1877
|
-
transform-origin: top;
|
|
1940
|
+
|
|
1941
|
+
/* components/Puck/components/ResizeHandle/styles.css */
|
|
1942
|
+
[data-resize-overlay] {
|
|
1943
|
+
position: fixed;
|
|
1878
1944
|
top: 0;
|
|
1945
|
+
left: 0;
|
|
1946
|
+
right: 0;
|
|
1879
1947
|
bottom: 0;
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
@media (min-width: 1198px) {
|
|
1883
|
-
._PuckCanvas-root_18jay_30 {
|
|
1884
|
-
min-width: unset;
|
|
1885
|
-
}
|
|
1886
|
-
}
|
|
1887
|
-
@media (prefers-reduced-motion: reduce) {
|
|
1888
|
-
._PuckCanvas-root_18jay_30 {
|
|
1889
|
-
transition: none !important;
|
|
1890
|
-
}
|
|
1891
|
-
}
|
|
1892
|
-
._PuckCanvas--ready_18jay_55 ._PuckCanvas-root_18jay_30 {
|
|
1893
|
-
pointer-events: unset;
|
|
1894
|
-
opacity: 1;
|
|
1895
|
-
}
|
|
1896
|
-
._PuckCanvas-loader_18jay_60 {
|
|
1897
|
-
align-items: center;
|
|
1898
|
-
color: var(--puck-color-grey-06);
|
|
1899
|
-
display: flex;
|
|
1900
|
-
height: 100%;
|
|
1901
|
-
justify-content: center;
|
|
1902
|
-
transition: opacity 250ms ease-out;
|
|
1903
|
-
opacity: 0;
|
|
1904
|
-
}
|
|
1905
|
-
._PuckCanvas--showLoader_18jay_70 ._PuckCanvas-loader_18jay_60 {
|
|
1906
|
-
opacity: 1;
|
|
1907
|
-
}
|
|
1908
|
-
._PuckCanvas--showLoader_18jay_70._PuckCanvas--ready_18jay_55 ._PuckCanvas-loader_18jay_60 {
|
|
1909
|
-
opacity: 0;
|
|
1910
|
-
height: 0;
|
|
1911
|
-
transition: none;
|
|
1948
|
+
z-index: 9999;
|
|
1949
|
+
cursor: col-resize;
|
|
1912
1950
|
}
|
|
1913
1951
|
|
|
1914
|
-
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/
|
|
1915
|
-
.
|
|
1916
|
-
|
|
1917
|
-
margin: 0;
|
|
1918
|
-
padding: 0;
|
|
1919
|
-
}
|
|
1920
|
-
._NavSection_b6txo_7 {
|
|
1921
|
-
padding: 16px;
|
|
1922
|
-
}
|
|
1923
|
-
._NavSection_b6txo_7:first-of-type {
|
|
1924
|
-
padding-top: 32px;
|
|
1925
|
-
}
|
|
1926
|
-
._Nav--slim_b6txo_15 ._NavSection_b6txo_7 {
|
|
1927
|
-
padding-left: 0;
|
|
1928
|
-
padding-right: 0;
|
|
1929
|
-
}
|
|
1930
|
-
._Nav--slim_b6txo_15 ._NavSection_b6txo_7 + ._NavSection_b6txo_7 {
|
|
1931
|
-
border-top: 1px solid var(--puck-color-grey-09);
|
|
1932
|
-
}
|
|
1933
|
-
._NavSection-list_b6txo_24 {
|
|
1934
|
-
display: flex;
|
|
1935
|
-
flex-direction: column;
|
|
1936
|
-
list-style: none;
|
|
1937
|
-
margin: 0;
|
|
1938
|
-
padding: 0;
|
|
1939
|
-
}
|
|
1940
|
-
._Nav--slim_b6txo_15 ._NavSection-list_b6txo_24 {
|
|
1941
|
-
gap: 16px;
|
|
1942
|
-
}
|
|
1943
|
-
._NavSection-title_b6txo_36 {
|
|
1944
|
-
font-weight: 700;
|
|
1945
|
-
margin-bottom: 8px;
|
|
1946
|
-
padding-left: 8px;
|
|
1947
|
-
padding-right: 8px;
|
|
1948
|
-
}
|
|
1949
|
-
._Nav--slim_b6txo_15 ._NavSection-title_b6txo_36 {
|
|
1950
|
-
opacity: 0;
|
|
1951
|
-
}
|
|
1952
|
-
._NavItem-link_b6txo_47 {
|
|
1953
|
-
align-items: center;
|
|
1954
|
-
color: var(--puck-color-grey-03);
|
|
1952
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Sidebar/styles.module.css/#css-module-data */
|
|
1953
|
+
._Sidebar_1xksb_1 {
|
|
1954
|
+
position: relative;
|
|
1955
1955
|
display: flex;
|
|
1956
|
-
gap: 8px;
|
|
1957
|
-
text-decoration: none;
|
|
1958
|
-
cursor: pointer;
|
|
1959
|
-
border-radius: 4px;
|
|
1960
|
-
padding: 8px 4px;
|
|
1961
|
-
}
|
|
1962
|
-
._Nav--slim_b6txo_15 ._NavItem-link_b6txo_47 {
|
|
1963
|
-
border-left: 4px solid transparent;
|
|
1964
|
-
border-right: 4px solid transparent;
|
|
1965
|
-
border-radius: 0;
|
|
1966
1956
|
flex-direction: column;
|
|
1967
|
-
|
|
1968
|
-
}
|
|
1969
|
-
._NavItem-linkIcon_b6txo_67 {
|
|
1970
|
-
height: 24px;
|
|
1971
|
-
width: 24px;
|
|
1957
|
+
overflow-y: auto;
|
|
1972
1958
|
}
|
|
1973
|
-
.
|
|
1974
|
-
background
|
|
1975
|
-
|
|
1976
|
-
|
|
1959
|
+
._Sidebar--left_1xksb_8 {
|
|
1960
|
+
background: var(--puck-color-grey-12);
|
|
1961
|
+
border-inline-end: 1px solid var(--puck-color-grey-09);
|
|
1962
|
+
grid-area: left;
|
|
1977
1963
|
}
|
|
1978
|
-
.
|
|
1979
|
-
background-color
|
|
1980
|
-
border-
|
|
1981
|
-
|
|
1982
|
-
border-bottom-right-radius: 0;
|
|
1983
|
-
font-weight: 600;
|
|
1964
|
+
._Sidebar--right_1xksb_14 {
|
|
1965
|
+
background: var(--puck-color-white);
|
|
1966
|
+
border-inline-start: 1px solid var(--puck-color-grey-09);
|
|
1967
|
+
grid-area: right;
|
|
1984
1968
|
}
|
|
1985
|
-
.
|
|
1986
|
-
|
|
1987
|
-
|
|
1969
|
+
._Sidebar-resizeHandle_1xksb_20 {
|
|
1970
|
+
position: absolute;
|
|
1971
|
+
height: 100%;
|
|
1988
1972
|
}
|
|
1989
|
-
.
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
flex-direction: column;
|
|
1993
|
-
list-style: none;
|
|
1994
|
-
margin-top: 8px;
|
|
1995
|
-
margin-left: 4px;
|
|
1996
|
-
padding: 0;
|
|
1997
|
-
padding-left: 8px;
|
|
1973
|
+
._Sidebar--left_1xksb_8 + ._Sidebar-resizeHandle_1xksb_20 {
|
|
1974
|
+
grid-area: left;
|
|
1975
|
+
justify-self: end;
|
|
1998
1976
|
}
|
|
1999
|
-
.
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
margin-left: 0;
|
|
1977
|
+
._Sidebar--right_1xksb_14 + ._Sidebar-resizeHandle_1xksb_20 {
|
|
1978
|
+
grid-area: right;
|
|
1979
|
+
justify-self: start;
|
|
2003
1980
|
}
|