@puckeditor/plugin-ai 0.1.0-canary.cc0c9a13 → 0.1.0-canary.dfd624ec
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/dist/index.css +307 -750
- package/dist/index.d.mts +107 -27
- package/dist/index.d.ts +107 -27
- package/dist/index.js +20917 -481
- package/dist/index.mjs +20938 -498
- package/package.json +8 -8
package/dist/index.css
CHANGED
|
@@ -1,3 +1,68 @@
|
|
|
1
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/plugin-ai/src/components/Chat/styles.module.css/#css-module-data */
|
|
2
|
+
._Chat_1mv7h_1 {
|
|
3
|
+
background: white;
|
|
4
|
+
height: 100%;
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
}
|
|
8
|
+
._Chat-header_1mv7h_8 {
|
|
9
|
+
display: block;
|
|
10
|
+
padding: 8px 16px;
|
|
11
|
+
font-weight: 600;
|
|
12
|
+
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
13
|
+
}
|
|
14
|
+
@media (min-width: 638px) {
|
|
15
|
+
._Chat-header_1mv7h_8 {
|
|
16
|
+
display: block;
|
|
17
|
+
padding: 16px;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
._Chat-placeholder_1mv7h_22 {
|
|
21
|
+
align-items: center;
|
|
22
|
+
color: var(--puck-color-grey-06);
|
|
23
|
+
display: none;
|
|
24
|
+
justify-content: center;
|
|
25
|
+
flex-direction: column;
|
|
26
|
+
height: 100%;
|
|
27
|
+
text-align: center;
|
|
28
|
+
padding: 32px;
|
|
29
|
+
gap: 8px;
|
|
30
|
+
}
|
|
31
|
+
@media (min-width: 638px) {
|
|
32
|
+
._Chat-placeholder_1mv7h_22 {
|
|
33
|
+
display: flex;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
._Chat-actions_1mv7h_40 {
|
|
37
|
+
display: flex;
|
|
38
|
+
gap: 8px;
|
|
39
|
+
justify-content: center;
|
|
40
|
+
flex-wrap: wrap;
|
|
41
|
+
margin-top: 4px;
|
|
42
|
+
}
|
|
43
|
+
._Chat-action_1mv7h_40,
|
|
44
|
+
._Chat-actionOutlined_1mv7h_49 {
|
|
45
|
+
border: 1px solid var(--puck-color-azure-04);
|
|
46
|
+
border-radius: 16px;
|
|
47
|
+
padding: 4px 12px;
|
|
48
|
+
font-size: 12px;
|
|
49
|
+
cursor: pointer;
|
|
50
|
+
}
|
|
51
|
+
._Chat-action_1mv7h_40 {
|
|
52
|
+
background: var(--puck-color-azure-04);
|
|
53
|
+
color: white;
|
|
54
|
+
}
|
|
55
|
+
._Chat-action_1mv7h_40:hover {
|
|
56
|
+
opacity: 0.8;
|
|
57
|
+
}
|
|
58
|
+
._Chat-actionOutlined_1mv7h_49 {
|
|
59
|
+
background: transparent;
|
|
60
|
+
color: var(--puck-color-azure-04);
|
|
61
|
+
}
|
|
62
|
+
._Chat-actionOutlined_1mv7h_49:hover {
|
|
63
|
+
background: var(--puck-color-azure-11);
|
|
64
|
+
}
|
|
65
|
+
|
|
1
66
|
/* ../platform-client/styles/color.css */
|
|
2
67
|
:root {
|
|
3
68
|
--puck-color-rose-01: #4a001c;
|
|
@@ -169,7 +234,7 @@ p {
|
|
|
169
234
|
}
|
|
170
235
|
|
|
171
236
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Modal/Modal.module.css/#css-module-data */
|
|
172
|
-
._Modal-
|
|
237
|
+
._Modal-background_1bedq_1 {
|
|
173
238
|
align-items: center;
|
|
174
239
|
display: flex;
|
|
175
240
|
justify-content: center;
|
|
@@ -183,24 +248,26 @@ p {
|
|
|
183
248
|
opacity: 0;
|
|
184
249
|
pointer-events: none;
|
|
185
250
|
}
|
|
186
|
-
._Modal--
|
|
251
|
+
._Modal--visible_1bedq_16 ._Modal-background_1bedq_1 {
|
|
187
252
|
opacity: 1;
|
|
188
253
|
transition: opacity ease 100ms;
|
|
189
254
|
pointer-events: auto;
|
|
190
255
|
}
|
|
191
|
-
._Modal-
|
|
256
|
+
._Modal-modal_1bedq_22 {
|
|
192
257
|
background: white;
|
|
193
|
-
border-radius:
|
|
258
|
+
border-radius: 16px;
|
|
194
259
|
display: block;
|
|
195
|
-
|
|
260
|
+
max-height: calc(100vh - 24px);
|
|
261
|
+
margin-inline: 24px;
|
|
262
|
+
overflow: auto;
|
|
196
263
|
}
|
|
197
264
|
|
|
198
265
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Button/Button.module.css/#css-module-data */
|
|
199
|
-
.
|
|
266
|
+
._Button_1wyvm_1 {
|
|
200
267
|
appearance: none;
|
|
201
268
|
background: none;
|
|
202
269
|
border: 1px solid transparent;
|
|
203
|
-
border-radius:
|
|
270
|
+
border-radius: 8px;
|
|
204
271
|
color: var(--puck-color-white);
|
|
205
272
|
display: inline-flex;
|
|
206
273
|
align-items: center;
|
|
@@ -218,69 +285,80 @@ p {
|
|
|
218
285
|
white-space: nowrap;
|
|
219
286
|
margin: 0;
|
|
220
287
|
}
|
|
221
|
-
.
|
|
222
|
-
.
|
|
288
|
+
._Button_1wyvm_1:hover,
|
|
289
|
+
._Button_1wyvm_1:active {
|
|
223
290
|
transition: none;
|
|
224
291
|
}
|
|
225
|
-
._Button--
|
|
292
|
+
._Button--medium_1wyvm_29 {
|
|
226
293
|
min-height: 34px;
|
|
227
294
|
padding-bottom: 7px;
|
|
228
295
|
padding-left: 19px;
|
|
229
296
|
padding-right: 19px;
|
|
230
297
|
padding-top: 7px;
|
|
231
298
|
}
|
|
232
|
-
._Button--
|
|
299
|
+
._Button--large_1wyvm_37 {
|
|
233
300
|
padding-bottom: 11px;
|
|
234
301
|
padding-left: 19px;
|
|
235
302
|
padding-right: 19px;
|
|
236
303
|
padding-top: 11px;
|
|
237
304
|
}
|
|
238
|
-
._Button-
|
|
305
|
+
._Button-icon_1wyvm_44 {
|
|
239
306
|
margin-top: 2px;
|
|
240
307
|
}
|
|
241
|
-
._Button--
|
|
308
|
+
._Button--primary_1wyvm_48 {
|
|
242
309
|
background: var(--puck-color-azure-04);
|
|
243
310
|
}
|
|
244
|
-
.
|
|
311
|
+
._Button_1wyvm_1:focus-visible {
|
|
245
312
|
outline: 2px solid var(--puck-color-azure-05);
|
|
246
313
|
outline-offset: 2px;
|
|
247
314
|
}
|
|
248
315
|
@media (hover: hover) and (pointer: fine) {
|
|
249
|
-
._Button--
|
|
316
|
+
._Button--primary_1wyvm_48:hover {
|
|
250
317
|
background-color: var(--puck-color-azure-03);
|
|
251
318
|
}
|
|
252
319
|
}
|
|
253
|
-
._Button--
|
|
320
|
+
._Button--primary_1wyvm_48:active {
|
|
254
321
|
background-color: var(--puck-color-azure-02);
|
|
255
322
|
}
|
|
256
|
-
._Button--
|
|
323
|
+
._Button--secondary_1wyvm_67 {
|
|
257
324
|
border: 1px solid currentColor;
|
|
258
325
|
color: currentColor;
|
|
259
326
|
}
|
|
260
327
|
@media (hover: hover) and (pointer: fine) {
|
|
261
|
-
._Button--
|
|
328
|
+
._Button--secondary_1wyvm_67:hover {
|
|
262
329
|
background-color: var(--puck-color-azure-12);
|
|
263
330
|
color: var(--puck-color-black);
|
|
264
331
|
}
|
|
265
332
|
}
|
|
266
|
-
._Button--
|
|
333
|
+
._Button--secondary_1wyvm_67:active {
|
|
267
334
|
background-color: var(--puck-color-azure-11);
|
|
268
335
|
color: var(--puck-color-black);
|
|
269
336
|
}
|
|
270
|
-
._Button--
|
|
337
|
+
._Button--danger_1wyvm_84 {
|
|
338
|
+
background: var(--puck-color-red-04);
|
|
339
|
+
}
|
|
340
|
+
@media (hover: hover) and (pointer: fine) {
|
|
341
|
+
._Button--danger_1wyvm_84:hover {
|
|
342
|
+
background-color: var(--puck-color-red-03);
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
._Button--danger_1wyvm_84:active {
|
|
346
|
+
background-color: var(--puck-color-red-02);
|
|
347
|
+
}
|
|
348
|
+
._Button--flush_1wyvm_98 {
|
|
271
349
|
border-radius: 0;
|
|
272
350
|
}
|
|
273
|
-
._Button--
|
|
274
|
-
._Button--
|
|
351
|
+
._Button--disabled_1wyvm_102,
|
|
352
|
+
._Button--disabled_1wyvm_102:hover {
|
|
275
353
|
background-color: var(--puck-color-grey-09);
|
|
276
354
|
color: var(--puck-color-grey-03);
|
|
277
355
|
cursor: not-allowed;
|
|
278
356
|
}
|
|
279
|
-
._Button--
|
|
357
|
+
._Button--fullWidth_1wyvm_109 {
|
|
280
358
|
justify-content: center;
|
|
281
359
|
width: 100%;
|
|
282
360
|
}
|
|
283
|
-
._Button-
|
|
361
|
+
._Button-spinner_1wyvm_114 {
|
|
284
362
|
padding-left: 8px;
|
|
285
363
|
}
|
|
286
364
|
|
|
@@ -307,43 +385,72 @@ p {
|
|
|
307
385
|
}
|
|
308
386
|
|
|
309
387
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Heading/Heading.module.css/#css-module-data */
|
|
310
|
-
.
|
|
388
|
+
._Heading_qkzg9_1 {
|
|
311
389
|
display: block;
|
|
312
390
|
font-weight: 700;
|
|
313
391
|
margin: 0;
|
|
314
392
|
}
|
|
315
|
-
.
|
|
393
|
+
._Heading_qkzg9_1 b {
|
|
316
394
|
font-weight: 700;
|
|
317
395
|
}
|
|
318
|
-
._Heading--
|
|
319
|
-
font-size: var(--puck-font-size-xxxxl);
|
|
320
|
-
letter-spacing: 0.08ch;
|
|
321
|
-
font-weight: 800;
|
|
322
|
-
}
|
|
323
|
-
._Heading--xxxl_1czuc_17 {
|
|
396
|
+
._Heading--xxxxl_qkzg9_11 {
|
|
324
397
|
font-size: var(--puck-font-size-xxxl);
|
|
325
398
|
}
|
|
326
|
-
._Heading--
|
|
399
|
+
._Heading--xxxl_qkzg9_15 {
|
|
327
400
|
font-size: var(--puck-font-size-xxl);
|
|
328
401
|
}
|
|
329
|
-
._Heading--
|
|
402
|
+
._Heading--xxl_qkzg9_19 {
|
|
330
403
|
font-size: var(--puck-font-size-xl);
|
|
331
404
|
}
|
|
332
|
-
._Heading--
|
|
405
|
+
._Heading--xl_qkzg9_23 {
|
|
333
406
|
font-size: var(--puck-font-size-l);
|
|
334
407
|
}
|
|
335
|
-
._Heading--
|
|
408
|
+
._Heading--l_qkzg9_27 {
|
|
336
409
|
font-size: var(--puck-font-size-m);
|
|
337
410
|
}
|
|
338
|
-
._Heading--
|
|
411
|
+
._Heading--m_qkzg9_31 {
|
|
339
412
|
font-size: var(--puck-font-size-s);
|
|
340
413
|
}
|
|
341
|
-
._Heading--
|
|
414
|
+
._Heading--s_qkzg9_35 {
|
|
342
415
|
font-size: var(--puck-font-size-xs);
|
|
343
416
|
}
|
|
344
|
-
._Heading--
|
|
417
|
+
._Heading--xs_qkzg9_39 {
|
|
418
|
+
font-size: var(--puck-font-size-xxs);
|
|
419
|
+
}
|
|
420
|
+
._Heading--xxs_qkzg9_43 {
|
|
345
421
|
font-size: var(--puck-font-size-xxs);
|
|
346
422
|
}
|
|
423
|
+
@media (min-width: 768px) {
|
|
424
|
+
._Heading--xxxxl_qkzg9_11 {
|
|
425
|
+
font-size: var(--puck-font-size-xxxxl);
|
|
426
|
+
letter-spacing: 0.08ch;
|
|
427
|
+
font-weight: 800;
|
|
428
|
+
}
|
|
429
|
+
._Heading--xxxl_qkzg9_15 {
|
|
430
|
+
font-size: var(--puck-font-size-xxxl);
|
|
431
|
+
}
|
|
432
|
+
._Heading--xxl_qkzg9_19 {
|
|
433
|
+
font-size: var(--puck-font-size-xxl);
|
|
434
|
+
}
|
|
435
|
+
._Heading--xl_qkzg9_23 {
|
|
436
|
+
font-size: var(--puck-font-size-xl);
|
|
437
|
+
}
|
|
438
|
+
._Heading--l_qkzg9_27 {
|
|
439
|
+
font-size: var(--puck-font-size-l);
|
|
440
|
+
}
|
|
441
|
+
._Heading--m_qkzg9_31 {
|
|
442
|
+
font-size: var(--puck-font-size-m);
|
|
443
|
+
}
|
|
444
|
+
._Heading--s_qkzg9_35 {
|
|
445
|
+
font-size: var(--puck-font-size-s);
|
|
446
|
+
}
|
|
447
|
+
._Heading--xs_qkzg9_39 {
|
|
448
|
+
font-size: var(--puck-font-size-xs);
|
|
449
|
+
}
|
|
450
|
+
._Heading--xxs_qkzg9_43 {
|
|
451
|
+
font-size: var(--puck-font-size-xxs);
|
|
452
|
+
}
|
|
453
|
+
}
|
|
347
454
|
|
|
348
455
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Align/Align.module.css/#css-module-data */
|
|
349
456
|
._Align_oewlu_1 {
|
|
@@ -380,59 +487,6 @@ p {
|
|
|
380
487
|
padding: 0px !important;
|
|
381
488
|
}
|
|
382
489
|
|
|
383
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Avatar/Avatar.module.css/#css-module-data */
|
|
384
|
-
._Avatar_meij0_1 {
|
|
385
|
-
align-items: center;
|
|
386
|
-
border-radius: 4px;
|
|
387
|
-
display: flex;
|
|
388
|
-
gap: 16px;
|
|
389
|
-
height: 100%;
|
|
390
|
-
padding: 8px 12px;
|
|
391
|
-
text-decoration: none;
|
|
392
|
-
}
|
|
393
|
-
a._Avatar_meij0_1:hover {
|
|
394
|
-
background-color: var(--puck-color-azure-11);
|
|
395
|
-
}
|
|
396
|
-
a._Avatar--onLightGrey_meij0_15:hover {
|
|
397
|
-
background-color: var(--puck-color-azure-10);
|
|
398
|
-
}
|
|
399
|
-
._Avatar--flush_meij0_19 {
|
|
400
|
-
gap: 8px;
|
|
401
|
-
padding: 0;
|
|
402
|
-
}
|
|
403
|
-
._Avatar-image_meij0_24 {
|
|
404
|
-
align-items: center;
|
|
405
|
-
border-radius: 100%;
|
|
406
|
-
background-color: var(--puck-color-grey-10);
|
|
407
|
-
border: 1px solid var(--puck-color-grey-10);
|
|
408
|
-
color: var(--puck-color-grey-06);
|
|
409
|
-
display: flex;
|
|
410
|
-
justify-content: center;
|
|
411
|
-
font-size: var(--puck-font-size-xxs);
|
|
412
|
-
overflow: hidden;
|
|
413
|
-
}
|
|
414
|
-
._Avatar-image_meij0_24 img {
|
|
415
|
-
width: 100%;
|
|
416
|
-
height: 100%;
|
|
417
|
-
}
|
|
418
|
-
._Avatar-name_meij0_41 {
|
|
419
|
-
color: black;
|
|
420
|
-
font-weight: 600;
|
|
421
|
-
}
|
|
422
|
-
a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
423
|
-
color: var(--puck-color-azure-04);
|
|
424
|
-
}
|
|
425
|
-
._Avatar--smallText_meij0_50 ._Avatar-name_meij0_41 {
|
|
426
|
-
font-size: var(--puck-font-size-xxs);
|
|
427
|
-
}
|
|
428
|
-
._Avatar--inline_meij0_54 {
|
|
429
|
-
align-self: baseline;
|
|
430
|
-
display: inline-flex;
|
|
431
|
-
}
|
|
432
|
-
._Avatar--muted_meij0_59 ._Avatar-name_meij0_41 {
|
|
433
|
-
color: var(--puck-color-grey-06);
|
|
434
|
-
}
|
|
435
|
-
|
|
436
490
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Card/Card.module.css/#css-module-data */
|
|
437
491
|
._Card_jzb6b_1 {
|
|
438
492
|
background-color: white;
|
|
@@ -472,100 +526,6 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
472
526
|
color: var(--puck-color-azure-04);
|
|
473
527
|
}
|
|
474
528
|
|
|
475
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Footer/styles.module.css/#css-module-data */
|
|
476
|
-
._Footer_eew04_1 {
|
|
477
|
-
background-color: var(--puck-color-grey-11);
|
|
478
|
-
border-top: 1px solid var(--puck-color-grey-09);
|
|
479
|
-
color: var(--puck-color-grey-01);
|
|
480
|
-
}
|
|
481
|
-
._Footer--dark_eew04_7 {
|
|
482
|
-
background-color: var(--puck-color-grey-02);
|
|
483
|
-
border-top: 1px solid var(--puck-color-grey-03);
|
|
484
|
-
color: var(--puck-color-grey-10);
|
|
485
|
-
}
|
|
486
|
-
._Footer-inner_eew04_13 {
|
|
487
|
-
font-size: var(--puck-font-size-xxs);
|
|
488
|
-
margin-left: auto;
|
|
489
|
-
margin-right: auto;
|
|
490
|
-
max-width: 1440px;
|
|
491
|
-
padding: 32px 24px;
|
|
492
|
-
}
|
|
493
|
-
._Footer-brand_eew04_21 {
|
|
494
|
-
display: flex;
|
|
495
|
-
flex-direction: column;
|
|
496
|
-
}
|
|
497
|
-
._Footer-main_eew04_26 {
|
|
498
|
-
display: flex;
|
|
499
|
-
flex-direction: column;
|
|
500
|
-
gap: 16px;
|
|
501
|
-
margin-bottom: 64px;
|
|
502
|
-
}
|
|
503
|
-
@media (min-width: 768px) {
|
|
504
|
-
._Footer-main_eew04_26 {
|
|
505
|
-
gap: 128px;
|
|
506
|
-
flex-direction: row;
|
|
507
|
-
margin-bottom: 16px;
|
|
508
|
-
}
|
|
509
|
-
}
|
|
510
|
-
._Footer-logo_eew04_41 {
|
|
511
|
-
flex-grow: 1;
|
|
512
|
-
margin-bottom: 16px;
|
|
513
|
-
}
|
|
514
|
-
._Footer-copyright_eew04_46 {
|
|
515
|
-
color: var(--puck-color-grey-05);
|
|
516
|
-
}
|
|
517
|
-
._Footer--dark_eew04_7 ._Footer-copyright_eew04_46 {
|
|
518
|
-
color: var(--puck-color-grey-08);
|
|
519
|
-
}
|
|
520
|
-
._Footer-sections_eew04_54 {
|
|
521
|
-
display: flex;
|
|
522
|
-
gap: 32px;
|
|
523
|
-
flex-grow: 1;
|
|
524
|
-
flex-direction: column;
|
|
525
|
-
}
|
|
526
|
-
@media (min-width: 768px) {
|
|
527
|
-
._Footer-sections_eew04_54 {
|
|
528
|
-
gap: 16px;
|
|
529
|
-
flex-direction: row;
|
|
530
|
-
}
|
|
531
|
-
}
|
|
532
|
-
._Footer-section_eew04_54 {
|
|
533
|
-
flex-grow: 1;
|
|
534
|
-
}
|
|
535
|
-
._Footer-sectionHeader_eew04_72 {
|
|
536
|
-
margin-bottom: 8px;
|
|
537
|
-
font-weight: 600;
|
|
538
|
-
}
|
|
539
|
-
._Footer-icon_eew04_77 {
|
|
540
|
-
color: var(--puck-color-grey-05);
|
|
541
|
-
width: 16px;
|
|
542
|
-
}
|
|
543
|
-
._Footer--dark_eew04_7 ._Footer-icon_eew04_77 {
|
|
544
|
-
color: var(--puck-color-grey-08);
|
|
545
|
-
}
|
|
546
|
-
._Footer-link_eew04_86 {
|
|
547
|
-
align-items: center;
|
|
548
|
-
display: flex;
|
|
549
|
-
gap: 8px;
|
|
550
|
-
padding-top: 4px;
|
|
551
|
-
padding-bottom: 4px;
|
|
552
|
-
}
|
|
553
|
-
._Footer--dark_eew04_7 ._Footer-link_eew04_86 {
|
|
554
|
-
color: var(--puck-color-grey-08);
|
|
555
|
-
}
|
|
556
|
-
._Footer-link_eew04_86:hover {
|
|
557
|
-
color: var(--puck-color-azure-04);
|
|
558
|
-
}
|
|
559
|
-
._Footer--dark_eew04_7 ._Footer-link_eew04_86:hover {
|
|
560
|
-
color: var(--puck-color-azure-08);
|
|
561
|
-
}
|
|
562
|
-
._Footer-link_eew04_86:hover ._Footer-icon_eew04_77 {
|
|
563
|
-
color: var(--puck-color-azure-05);
|
|
564
|
-
}
|
|
565
|
-
._Footer--dark_eew04_7 ._Footer-link_eew04_86:hover ._Footer-icon_eew04_77 {
|
|
566
|
-
color: var(--puck-color-azure-09);
|
|
567
|
-
}
|
|
568
|
-
|
|
569
529
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/IconButton/IconButton.module.css/#css-module-data */
|
|
570
530
|
._IconButton_thegm_1 {
|
|
571
531
|
align-items: center;
|
|
@@ -674,127 +634,6 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
674
634
|
flex-grow: 1;
|
|
675
635
|
}
|
|
676
636
|
|
|
677
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Layout/Layout.module.css/#css-module-data */
|
|
678
|
-
._Layout_hy65k_1 {
|
|
679
|
-
--header-height: 76px;
|
|
680
|
-
--nav-width: 256px;
|
|
681
|
-
display: grid;
|
|
682
|
-
background-color: white;
|
|
683
|
-
grid-template-areas: "switcher bar" "nav page";
|
|
684
|
-
grid-template-columns: var(--nav-width) auto;
|
|
685
|
-
grid-template-rows: var(--header-height) auto;
|
|
686
|
-
height: 100vh;
|
|
687
|
-
}
|
|
688
|
-
._Layout-switcher_hy65k_12 {
|
|
689
|
-
border-right: 1px solid var(--puck-color-grey-09);
|
|
690
|
-
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
691
|
-
grid-area: switcher;
|
|
692
|
-
}
|
|
693
|
-
._Layout-bar_hy65k_18 {
|
|
694
|
-
align-items: center;
|
|
695
|
-
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
696
|
-
grid-area: bar;
|
|
697
|
-
display: flex;
|
|
698
|
-
}
|
|
699
|
-
._Layout-nav_hy65k_25 {
|
|
700
|
-
border-right: 1px solid var(--puck-color-grey-09);
|
|
701
|
-
grid-area: nav;
|
|
702
|
-
}
|
|
703
|
-
._Layout-page_hy65k_30 {
|
|
704
|
-
grid-area: page;
|
|
705
|
-
}
|
|
706
|
-
|
|
707
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Nav/Nav.module.css/#css-module-data */
|
|
708
|
-
._Nav-list_b6txo_1 {
|
|
709
|
-
list-style: none;
|
|
710
|
-
margin: 0;
|
|
711
|
-
padding: 0;
|
|
712
|
-
}
|
|
713
|
-
._NavSection_b6txo_7 {
|
|
714
|
-
padding: 16px;
|
|
715
|
-
}
|
|
716
|
-
._NavSection_b6txo_7:first-of-type {
|
|
717
|
-
padding-top: 32px;
|
|
718
|
-
}
|
|
719
|
-
._Nav--slim_b6txo_15 ._NavSection_b6txo_7 {
|
|
720
|
-
padding-left: 0;
|
|
721
|
-
padding-right: 0;
|
|
722
|
-
}
|
|
723
|
-
._Nav--slim_b6txo_15 ._NavSection_b6txo_7 + ._NavSection_b6txo_7 {
|
|
724
|
-
border-top: 1px solid var(--puck-color-grey-09);
|
|
725
|
-
}
|
|
726
|
-
._NavSection-list_b6txo_24 {
|
|
727
|
-
display: flex;
|
|
728
|
-
flex-direction: column;
|
|
729
|
-
list-style: none;
|
|
730
|
-
margin: 0;
|
|
731
|
-
padding: 0;
|
|
732
|
-
}
|
|
733
|
-
._Nav--slim_b6txo_15 ._NavSection-list_b6txo_24 {
|
|
734
|
-
gap: 16px;
|
|
735
|
-
}
|
|
736
|
-
._NavSection-title_b6txo_36 {
|
|
737
|
-
font-weight: 700;
|
|
738
|
-
margin-bottom: 8px;
|
|
739
|
-
padding-left: 8px;
|
|
740
|
-
padding-right: 8px;
|
|
741
|
-
}
|
|
742
|
-
._Nav--slim_b6txo_15 ._NavSection-title_b6txo_36 {
|
|
743
|
-
opacity: 0;
|
|
744
|
-
}
|
|
745
|
-
._NavItem-link_b6txo_47 {
|
|
746
|
-
align-items: center;
|
|
747
|
-
color: var(--puck-color-grey-03);
|
|
748
|
-
display: flex;
|
|
749
|
-
gap: 8px;
|
|
750
|
-
text-decoration: none;
|
|
751
|
-
cursor: pointer;
|
|
752
|
-
border-radius: 4px;
|
|
753
|
-
padding: 8px 4px;
|
|
754
|
-
}
|
|
755
|
-
._Nav--slim_b6txo_15 ._NavItem-link_b6txo_47 {
|
|
756
|
-
border-left: 4px solid transparent;
|
|
757
|
-
border-right: 4px solid transparent;
|
|
758
|
-
border-radius: 0;
|
|
759
|
-
flex-direction: column;
|
|
760
|
-
font-size: var(--puck-font-size-xxxs);
|
|
761
|
-
}
|
|
762
|
-
._NavItem-linkIcon_b6txo_67 {
|
|
763
|
-
height: 24px;
|
|
764
|
-
width: 24px;
|
|
765
|
-
}
|
|
766
|
-
._NavItem--active_b6txo_72 > ._NavItem-link_b6txo_47 {
|
|
767
|
-
background-color: var(--puck-color-azure-10);
|
|
768
|
-
color: var(--puck-color-azure-04);
|
|
769
|
-
font-weight: 600;
|
|
770
|
-
}
|
|
771
|
-
._Nav--slim_b6txo_15 ._NavItem--active_b6txo_72 > ._NavItem-link_b6txo_47 {
|
|
772
|
-
background-color: transparent;
|
|
773
|
-
border-right-color: var(--puck-color-azure-04);
|
|
774
|
-
border-top-right-radius: 0;
|
|
775
|
-
border-bottom-right-radius: 0;
|
|
776
|
-
font-weight: 600;
|
|
777
|
-
}
|
|
778
|
-
._NavItem_b6txo_47:not(._NavItem--active_b6txo_72) > ._NavItem-link_b6txo_47:hover {
|
|
779
|
-
background-color: var(--puck-color-azure-11);
|
|
780
|
-
color: var(--puck-color-azure-04);
|
|
781
|
-
}
|
|
782
|
-
._NavItem-list_b6txo_91 {
|
|
783
|
-
border-left: 1px solid var(--puck-color-grey-09);
|
|
784
|
-
display: flex;
|
|
785
|
-
flex-direction: column;
|
|
786
|
-
list-style: none;
|
|
787
|
-
margin-top: 8px;
|
|
788
|
-
margin-left: 4px;
|
|
789
|
-
padding: 0;
|
|
790
|
-
padding-left: 8px;
|
|
791
|
-
}
|
|
792
|
-
._Nav--slim_b6txo_15 ._NavItem-list_b6txo_91 {
|
|
793
|
-
border-left: 0;
|
|
794
|
-
padding-left: 0;
|
|
795
|
-
margin-left: 0;
|
|
796
|
-
}
|
|
797
|
-
|
|
798
637
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Link/Link.module.css/#css-module-data */
|
|
799
638
|
._Link_1j70m_1 {
|
|
800
639
|
color: var(--puck-color-azure-04);
|
|
@@ -805,13 +644,13 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
805
644
|
}
|
|
806
645
|
|
|
807
646
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Page/Page.module.css/#css-module-data */
|
|
808
|
-
.
|
|
647
|
+
._Page_1ajs1_1 {
|
|
809
648
|
display: flex;
|
|
810
649
|
flex-direction: column;
|
|
811
650
|
height: 100%;
|
|
812
651
|
overflow: hidden;
|
|
813
652
|
}
|
|
814
|
-
._Page-
|
|
653
|
+
._Page-masthead_1ajs1_8 {
|
|
815
654
|
align-items: center;
|
|
816
655
|
display: flex;
|
|
817
656
|
gap: 16px;
|
|
@@ -819,107 +658,95 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
819
658
|
box-sizing: border-box;
|
|
820
659
|
border-bottom: 1px solid var(--puck-color-grey-10);
|
|
821
660
|
min-height: 64px;
|
|
661
|
+
overflow-x: auto;
|
|
822
662
|
}
|
|
823
|
-
._Page-
|
|
663
|
+
._Page-crumbs_1ajs1_19 {
|
|
824
664
|
display: flex;
|
|
825
665
|
gap: 32px;
|
|
826
666
|
}
|
|
827
|
-
._Page-
|
|
667
|
+
._Page-crumb_1ajs1_19 {
|
|
828
668
|
color: var(--puck-color-grey-05);
|
|
829
669
|
position: relative;
|
|
670
|
+
white-space: nowrap;
|
|
830
671
|
}
|
|
831
|
-
._Page-
|
|
672
|
+
._Page-crumbLink_1ajs1_30 {
|
|
832
673
|
color: var(--puck-color-grey-05);
|
|
833
674
|
text-decoration: none;
|
|
834
675
|
}
|
|
835
|
-
._Page-
|
|
676
|
+
._Page-crumbLink_1ajs1_30:hover {
|
|
836
677
|
color: var(--puck-color-azure-04);
|
|
837
678
|
}
|
|
838
|
-
._Page-
|
|
679
|
+
._Page-crumb_1ajs1_19:last-of-type {
|
|
839
680
|
color: var(--puck-color-grey-01);
|
|
840
681
|
font-weight: 600;
|
|
841
682
|
}
|
|
842
|
-
._Page-
|
|
683
|
+
._Page-crumb_1ajs1_19::before {
|
|
843
684
|
position: absolute;
|
|
844
685
|
content: "/";
|
|
845
686
|
left: -19px;
|
|
846
687
|
color: var(--puck-color-grey-09);
|
|
847
688
|
font-weight: 400;
|
|
848
689
|
}
|
|
849
|
-
._Page-
|
|
690
|
+
._Page-crumb_1ajs1_19:first-of-type::before {
|
|
850
691
|
display: none;
|
|
851
692
|
}
|
|
852
|
-
._Page-
|
|
693
|
+
._Page-crumb_1ajs1_19 {
|
|
853
694
|
color: var(--puck-color-grey-05);
|
|
854
695
|
position: relative;
|
|
855
696
|
text-decoration: none;
|
|
856
697
|
}
|
|
857
|
-
._Page-
|
|
698
|
+
._Page-actions_1ajs1_62 {
|
|
858
699
|
margin-left: auto;
|
|
859
700
|
}
|
|
701
|
+
._Page-footer_1ajs1_66 {
|
|
702
|
+
border-top: 1px solid var(--puck-color-grey-10);
|
|
703
|
+
padding: 16px 24px;
|
|
704
|
+
}
|
|
860
705
|
|
|
861
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/
|
|
862
|
-
.
|
|
863
|
-
align-items:
|
|
864
|
-
background-color: var(--puck-color-grey-12);
|
|
865
|
-
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
866
|
-
display: grid;
|
|
867
|
-
box-sizing: border-box;
|
|
868
|
-
grid-area: header;
|
|
869
|
-
grid-template-columns: min-content auto 256px;
|
|
870
|
-
height: var(--header-height);
|
|
871
|
-
width: 100%;
|
|
872
|
-
}
|
|
873
|
-
._PuckHeader-left_19h0f_16 {
|
|
874
|
-
align-items: center;
|
|
875
|
-
display: flex;
|
|
876
|
-
padding-left: 16px;
|
|
877
|
-
}
|
|
878
|
-
._PuckHeader-center_19h0f_22 {
|
|
879
|
-
padding-left: 16px;
|
|
880
|
-
padding-right: 16px;
|
|
881
|
-
}
|
|
882
|
-
._PuckHeader-right_19h0f_27 {
|
|
706
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Pagination/Pagination.module.css/#css-module-data */
|
|
707
|
+
._Pagination_1okv2_1 {
|
|
708
|
+
align-items: baseline;
|
|
883
709
|
display: flex;
|
|
884
|
-
|
|
885
|
-
gap: 8px;
|
|
886
|
-
padding-right: 16px;
|
|
710
|
+
gap: 4px;
|
|
887
711
|
}
|
|
888
|
-
.
|
|
712
|
+
._PaginationButton_1okv2_8 {
|
|
889
713
|
align-items: center;
|
|
890
|
-
background-color: var(--puck-color-grey-10);
|
|
891
|
-
border: none;
|
|
892
714
|
border-radius: 4px;
|
|
893
|
-
|
|
894
|
-
color: var(--puck-color-grey-04);
|
|
715
|
+
color: var(--puck-color-grey-05);
|
|
895
716
|
display: flex;
|
|
896
|
-
|
|
897
|
-
|
|
717
|
+
justify-content: center;
|
|
718
|
+
text-decoration: none;
|
|
719
|
+
min-width: 40px;
|
|
720
|
+
height: 40px;
|
|
898
721
|
}
|
|
899
|
-
.
|
|
900
|
-
|
|
722
|
+
._PaginationButton--isActive_1okv2_20 {
|
|
723
|
+
background-color: var(--puck-color-azure-11);
|
|
724
|
+
color: var(--puck-color-azure-04);
|
|
901
725
|
}
|
|
902
|
-
.
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
padding-right: 12px;
|
|
726
|
+
._PaginationButton_1okv2_8:hover {
|
|
727
|
+
background-color: var(--puck-color-azure-11);
|
|
728
|
+
color: var(--puck-color-azure-04);
|
|
906
729
|
}
|
|
907
|
-
.
|
|
908
|
-
|
|
909
|
-
border: none;
|
|
910
|
-
color: var(--puck-color-grey-04);
|
|
911
|
-
font-weight: 600;
|
|
912
|
-
padding: 12px 16px;
|
|
913
|
-
width: 100%;
|
|
730
|
+
._Pagination-ellipsis_1okv2_30 {
|
|
731
|
+
color: var(--puck-color-grey-05);
|
|
914
732
|
}
|
|
915
|
-
|
|
916
|
-
|
|
733
|
+
|
|
734
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Section/Section.module.css/#css-module-data */
|
|
735
|
+
._Section-inner_1uwo0_1 {
|
|
736
|
+
margin-left: auto;
|
|
737
|
+
margin-right: auto;
|
|
738
|
+
max-width: 1280px;
|
|
739
|
+
padding: 16px;
|
|
917
740
|
}
|
|
918
|
-
.
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
741
|
+
._Section--flush_1uwo0_8 ._Section-inner_1uwo0_1 {
|
|
742
|
+
padding-bottom: 0;
|
|
743
|
+
padding-top: 0;
|
|
744
|
+
}
|
|
745
|
+
._Section_1uwo0_1 + ._Section_1uwo0_1 {
|
|
746
|
+
border-top: 1px solid var(--puck-color-grey-09);
|
|
747
|
+
}
|
|
748
|
+
._Section--full_1uwo0_17 ._Section-inner_1uwo0_1 {
|
|
749
|
+
max-width: unset;
|
|
923
750
|
}
|
|
924
751
|
|
|
925
752
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Tag/Tag.module.css/#css-module-data */
|
|
@@ -985,248 +812,27 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
985
812
|
}
|
|
986
813
|
}
|
|
987
814
|
|
|
988
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/AppSwitchers/AppSwitchers.module.css/#css-module-data */
|
|
989
|
-
._AppSwitchers_b7m1z_1 {
|
|
990
|
-
align-items: center;
|
|
991
|
-
display: flex;
|
|
992
|
-
gap: 8px;
|
|
993
|
-
padding: 12px 16px;
|
|
994
|
-
}
|
|
995
|
-
._AppSwitchers-divider_b7m1z_8 {
|
|
996
|
-
color: var(--puck-color-grey-10);
|
|
997
|
-
font-size: var(--puck-font-size-l);
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Switcher/Switcher.module.css/#css-module-data */
|
|
1001
|
-
._Switcher_134wo_1 {
|
|
1002
|
-
--switcher-width: 32px;
|
|
1003
|
-
align-items: center;
|
|
1004
|
-
display: flex;
|
|
1005
|
-
position: relative;
|
|
1006
|
-
}
|
|
1007
|
-
._Switcher-link_134wo_8 {
|
|
1008
|
-
align-items: center;
|
|
1009
|
-
border-radius: 4px;
|
|
1010
|
-
display: flex;
|
|
1011
|
-
gap: 16px;
|
|
1012
|
-
height: 100%;
|
|
1013
|
-
padding: 8px 12px;
|
|
1014
|
-
text-decoration: none;
|
|
1015
|
-
}
|
|
1016
|
-
._Switcher-switcher_134wo_18 {
|
|
1017
|
-
align-items: center;
|
|
1018
|
-
background-color: transparent;
|
|
1019
|
-
border: none;
|
|
1020
|
-
border-radius: 4px;
|
|
1021
|
-
color: var(--puck-color-grey-08);
|
|
1022
|
-
padding: 8px;
|
|
1023
|
-
display: flex;
|
|
1024
|
-
width: var(--switcher-width);
|
|
1025
|
-
}
|
|
1026
|
-
._Switcher--hasHref_134wo_29 ._Switcher-switcher_134wo_18:hover {
|
|
1027
|
-
background-color: var(--puck-color-azure-11);
|
|
1028
|
-
color: var(--puck-color-azure-04);
|
|
1029
|
-
cursor: pointer;
|
|
1030
|
-
}
|
|
1031
|
-
._Switcher-logoInner_134wo_35 {
|
|
1032
|
-
border-radius: 100%;
|
|
1033
|
-
background-color: var(--puck-color-grey-09);
|
|
1034
|
-
height: 24px;
|
|
1035
|
-
width: 24px;
|
|
1036
|
-
}
|
|
1037
|
-
._Switcher-label_134wo_42 {
|
|
1038
|
-
color: black;
|
|
1039
|
-
font-weight: 600;
|
|
1040
|
-
}
|
|
1041
|
-
._Switcher-link_134wo_8:hover {
|
|
1042
|
-
background-color: var(--puck-color-azure-11);
|
|
1043
|
-
}
|
|
1044
|
-
._Switcher-link_134wo_8:hover ._Switcher-label_134wo_42 {
|
|
1045
|
-
color: var(--puck-color-azure-04);
|
|
1046
|
-
}
|
|
1047
|
-
._Switcher--slim_134wo_55 ._Switcher-label_134wo_42 {
|
|
1048
|
-
display: none;
|
|
1049
|
-
}
|
|
1050
|
-
._Switcher--slim_134wo_55 ._Switcher-logo_134wo_35 {
|
|
1051
|
-
transform: translateX(-6px);
|
|
1052
|
-
transition: transform 250ms ease-in;
|
|
1053
|
-
}
|
|
1054
|
-
._Switcher-menu_134wo_64 {
|
|
1055
|
-
background: white;
|
|
1056
|
-
border: 1px solid var(--puck-color-grey-09);
|
|
1057
|
-
border-radius: 4px;
|
|
1058
|
-
display: none;
|
|
1059
|
-
position: absolute;
|
|
1060
|
-
top: 100%;
|
|
1061
|
-
left: calc(100% - var(--switcher-width));
|
|
1062
|
-
z-index: 1;
|
|
1063
|
-
}
|
|
1064
|
-
._Switcher--menuVisible_134wo_75 ._Switcher-menu_134wo_64 {
|
|
1065
|
-
display: block;
|
|
1066
|
-
}
|
|
1067
|
-
._Switcher-menuList_134wo_79 {
|
|
1068
|
-
list-style: none;
|
|
1069
|
-
margin: 0;
|
|
1070
|
-
padding: 8px;
|
|
1071
|
-
}
|
|
1072
|
-
._Switcher-menuItemAction_134wo_85 {
|
|
1073
|
-
background-color: transparent;
|
|
1074
|
-
border: none;
|
|
1075
|
-
color: black;
|
|
1076
|
-
display: block;
|
|
1077
|
-
font-size: var(--puck-font-size-xs);
|
|
1078
|
-
font-weight: 500;
|
|
1079
|
-
padding: 12px 16px;
|
|
1080
|
-
text-align: left;
|
|
1081
|
-
text-decoration: none;
|
|
1082
|
-
}
|
|
1083
|
-
._Switcher-menuItemAction_134wo_85:hover {
|
|
1084
|
-
background-color: var(--puck-color-azure-11);
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/PuckLayout/PuckLayout.module.css/#css-module-data */
|
|
1088
|
-
._PuckLayout_1yvk1_1 {
|
|
1089
|
-
display: flex;
|
|
1090
|
-
flex-direction: column;
|
|
1091
|
-
width: 100vw;
|
|
1092
|
-
height: 100vh;
|
|
1093
|
-
}
|
|
1094
|
-
._PuckLayout-layout_1yvk1_8 {
|
|
1095
|
-
display: grid;
|
|
1096
|
-
grid-template-columns: 68px 256px auto 256px;
|
|
1097
|
-
flex-grow: 1;
|
|
1098
|
-
min-height: 0;
|
|
1099
|
-
}
|
|
1100
|
-
._PuckLayout-loader_1yvk1_15 {
|
|
1101
|
-
align-items: center;
|
|
1102
|
-
border: 1px solid var(--puck-color-grey-09);
|
|
1103
|
-
display: flex;
|
|
1104
|
-
justify-content: center;
|
|
1105
|
-
background-color: white;
|
|
1106
|
-
height: 100%;
|
|
1107
|
-
}
|
|
1108
|
-
._PuckLayout-sideHeader_1yvk1_24 {
|
|
1109
|
-
align-items: center;
|
|
1110
|
-
display: flex;
|
|
1111
|
-
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
1112
|
-
border-right: 1px solid var(--puck-color-grey-09);
|
|
1113
|
-
padding-left: 16px;
|
|
1114
|
-
}
|
|
1115
|
-
._PuckLayout-switcher_1yvk1_32 {
|
|
1116
|
-
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
1117
|
-
border-right: 1px solid var(--puck-color-grey-09);
|
|
1118
|
-
}
|
|
1119
|
-
._PuckLayout-nav_1yvk1_37 {
|
|
1120
|
-
border-right: 1px solid var(--puck-color-grey-09);
|
|
1121
|
-
background-color: var(--puck-color-grey-12);
|
|
1122
|
-
}
|
|
1123
|
-
._PuckLayout-versionLoader_1yvk1_42 {
|
|
1124
|
-
align-items: center;
|
|
1125
|
-
display: flex;
|
|
1126
|
-
justify-content: center;
|
|
1127
|
-
}
|
|
1128
|
-
._PuckLayout-versionList_1yvk1_48 {
|
|
1129
|
-
list-style: none;
|
|
1130
|
-
display: flex;
|
|
1131
|
-
flex-direction: column;
|
|
1132
|
-
gap: 16px;
|
|
1133
|
-
margin: 0;
|
|
1134
|
-
padding: 16px;
|
|
1135
|
-
}
|
|
1136
|
-
._PuckLayout-version_1yvk1_42 {
|
|
1137
|
-
background-color: white;
|
|
1138
|
-
padding: 8px 12px;
|
|
1139
|
-
border: 1px solid var(--puck-color-grey-10);
|
|
1140
|
-
border-radius: 4px;
|
|
1141
|
-
}
|
|
1142
|
-
._PuckLayout-versionBody_1yvk1_64 {
|
|
1143
|
-
display: flex;
|
|
1144
|
-
padding-bottom: 4px;
|
|
1145
|
-
margin-bottom: 8px;
|
|
1146
|
-
border-bottom: 1px solid var(--puck-color-grey-10);
|
|
1147
|
-
}
|
|
1148
|
-
._PuckLayout-versionDetails_1yvk1_71 {
|
|
1149
|
-
display: flex;
|
|
1150
|
-
}
|
|
1151
|
-
._PuckLayout-version_1yvk1_42:hover {
|
|
1152
|
-
background-color: var(--puck-color-azure-11);
|
|
1153
|
-
border-color: var(--puck-color-azure-04);
|
|
1154
|
-
cursor: pointer;
|
|
1155
|
-
}
|
|
1156
|
-
._PuckLayout-versionInner_1yvk1_81 {
|
|
1157
|
-
color: unset;
|
|
1158
|
-
text-decoration: none;
|
|
1159
|
-
}
|
|
1160
|
-
._PuckLayout-versionVersion_1yvk1_86 {
|
|
1161
|
-
font-weight: 600;
|
|
1162
|
-
}
|
|
1163
|
-
._PuckLayout-versionStatus_1yvk1_90 {
|
|
1164
|
-
margin-left: auto;
|
|
1165
|
-
text-transform: uppercase;
|
|
1166
|
-
font-weight: 600;
|
|
1167
|
-
font-size: var(--puck-font-size-xxs);
|
|
1168
|
-
border-radius: 4px;
|
|
1169
|
-
border: 1px solid var(--puck-color-grey-01);
|
|
1170
|
-
padding: 4px 8px;
|
|
1171
|
-
}
|
|
1172
|
-
._PuckLayout-versionDetails_1yvk1_71 {
|
|
1173
|
-
width: 100%;
|
|
1174
|
-
}
|
|
1175
|
-
._PuckLayout-versionAuthor_1yvk1_104 {
|
|
1176
|
-
flex-grow: 1;
|
|
1177
|
-
}
|
|
1178
|
-
._PuckLayout-versionAuthorName_1yvk1_108 {
|
|
1179
|
-
font-size: var(--puck-font-size-xxs);
|
|
1180
|
-
}
|
|
1181
|
-
._PuckLayout-versionDate_1yvk1_112 {
|
|
1182
|
-
font-size: var(--puck-font-size-xxs);
|
|
1183
|
-
margin-left: auto;
|
|
1184
|
-
}
|
|
1185
|
-
._PuckLayout-fields_1yvk1_117 {
|
|
1186
|
-
border-left: 1px solid var(--puck-color-grey-09);
|
|
1187
|
-
}
|
|
1188
|
-
._PuckLayout-sidebar_1yvk1_121 {
|
|
1189
|
-
background-color: var(--puck-color-grey-12);
|
|
1190
|
-
border-right: 1px solid var(--puck-color-grey-09);
|
|
1191
|
-
overflow: auto;
|
|
1192
|
-
}
|
|
1193
|
-
|
|
1194
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Section/Section.module.css/#css-module-data */
|
|
1195
|
-
._Section-inner_1uwo0_1 {
|
|
1196
|
-
margin-left: auto;
|
|
1197
|
-
margin-right: auto;
|
|
1198
|
-
max-width: 1280px;
|
|
1199
|
-
padding: 16px;
|
|
1200
|
-
}
|
|
1201
|
-
._Section--flush_1uwo0_8 ._Section-inner_1uwo0_1 {
|
|
1202
|
-
padding-bottom: 0;
|
|
1203
|
-
padding-top: 0;
|
|
1204
|
-
}
|
|
1205
|
-
._Section_1uwo0_1 + ._Section_1uwo0_1 {
|
|
1206
|
-
border-top: 1px solid var(--puck-color-grey-09);
|
|
1207
|
-
}
|
|
1208
|
-
._Section--full_1uwo0_17 ._Section-inner_1uwo0_1 {
|
|
1209
|
-
max-width: unset;
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1212
815
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Table/Table.module.css/#css-module-data */
|
|
1213
|
-
.
|
|
816
|
+
._Table_1bbu5_1 {
|
|
1214
817
|
color: black;
|
|
1215
818
|
display: flex;
|
|
1216
819
|
flex-direction: column;
|
|
1217
820
|
flex-grow: 1;
|
|
821
|
+
overflow-y: auto;
|
|
1218
822
|
}
|
|
1219
|
-
._Table-
|
|
823
|
+
._Table-filters_1bbu5_9 {
|
|
1220
824
|
margin: 16px;
|
|
1221
825
|
}
|
|
1222
|
-
._Table-
|
|
826
|
+
._Table-inner_1bbu5_13 {
|
|
1223
827
|
text-align: left;
|
|
1224
828
|
}
|
|
1225
|
-
._Table-
|
|
829
|
+
._Table-table_1bbu5_17 {
|
|
830
|
+
color: var(--puck-color-grey-02);
|
|
831
|
+
font-size: var(--puck-font-size-xxs);
|
|
1226
832
|
position: relative;
|
|
1227
833
|
width: 100%;
|
|
1228
834
|
}
|
|
1229
|
-
.
|
|
835
|
+
._Table_1bbu5_1 thead {
|
|
1230
836
|
background: white;
|
|
1231
837
|
font-size: var(--puck-font-size-xxs);
|
|
1232
838
|
position: sticky;
|
|
@@ -1234,55 +840,61 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1234
840
|
white-space: nowrap;
|
|
1235
841
|
z-index: 1;
|
|
1236
842
|
}
|
|
1237
|
-
.
|
|
843
|
+
._Table_1bbu5_1 thead::after {
|
|
1238
844
|
content: "";
|
|
1239
845
|
position: absolute;
|
|
1240
846
|
height: 1px;
|
|
1241
847
|
width: 100%;
|
|
1242
|
-
background-color: var(--puck-color-grey-
|
|
848
|
+
background-color: var(--puck-color-grey-10);
|
|
849
|
+
}
|
|
850
|
+
._Table--hideHeader_1bbu5_41 thead {
|
|
851
|
+
display: none;
|
|
1243
852
|
}
|
|
1244
|
-
.
|
|
853
|
+
._Table_1bbu5_1 tbody tr {
|
|
1245
854
|
z-index: 0;
|
|
1246
855
|
}
|
|
1247
|
-
.
|
|
1248
|
-
background:
|
|
1249
|
-
font-weight:
|
|
856
|
+
._Table_1bbu5_1 th {
|
|
857
|
+
background: var(--puck-color-grey-12);
|
|
858
|
+
font-weight: 400;
|
|
1250
859
|
padding-left: 24px;
|
|
1251
860
|
padding-right: 24px;
|
|
1252
|
-
padding-bottom:
|
|
1253
|
-
padding-top:
|
|
861
|
+
padding-bottom: 12px;
|
|
862
|
+
padding-top: 12px;
|
|
1254
863
|
}
|
|
1255
864
|
@media (--standard-viewport) {
|
|
1256
|
-
.
|
|
865
|
+
._Table_1bbu5_1 th {
|
|
1257
866
|
padding-left: 32px;
|
|
1258
867
|
padding-right: 32px;
|
|
1259
868
|
}
|
|
1260
869
|
}
|
|
1261
|
-
.
|
|
870
|
+
._Table_1bbu5_1 td {
|
|
1262
871
|
border-bottom: 1px solid var(--puck-color-grey-10);
|
|
1263
872
|
padding-left: 24px;
|
|
1264
873
|
padding-right: 24px;
|
|
1265
|
-
padding-bottom:
|
|
1266
|
-
padding-top:
|
|
874
|
+
padding-bottom: 16px;
|
|
875
|
+
padding-top: 16px;
|
|
1267
876
|
white-space: nowrap;
|
|
1268
877
|
}
|
|
1269
|
-
.
|
|
878
|
+
._Table_1bbu5_1 td:not(:first-of-type) {
|
|
879
|
+
color: var(--puck-color-grey-05);
|
|
880
|
+
}
|
|
881
|
+
._Table_1bbu5_1 tbody tr:last-of-type td {
|
|
1270
882
|
border-bottom: none;
|
|
1271
883
|
}
|
|
1272
884
|
@media (--standard-viewport) {
|
|
1273
|
-
.
|
|
885
|
+
._Table_1bbu5_1 td {
|
|
1274
886
|
padding-left: 32px;
|
|
1275
887
|
padding-right: 32px;
|
|
1276
888
|
}
|
|
1277
889
|
}
|
|
1278
|
-
._Table-
|
|
890
|
+
._Table-footer_1bbu5_89 {
|
|
1279
891
|
border-top: 1px solid var(--puck-color-grey-09);
|
|
1280
892
|
}
|
|
1281
|
-
._Table--
|
|
893
|
+
._Table--clickableRows_1bbu5_93 tbody tr:hover {
|
|
1282
894
|
background: var(--puck-color-azure-12);
|
|
1283
895
|
cursor: pointer;
|
|
1284
896
|
}
|
|
1285
|
-
._Table-
|
|
897
|
+
._Table-placeholder_1bbu5_98 {
|
|
1286
898
|
align-items: center;
|
|
1287
899
|
color: var(--puck-color-grey-06);
|
|
1288
900
|
justify-content: center;
|
|
@@ -1292,37 +904,11 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1292
904
|
width: 100%;
|
|
1293
905
|
height: 100%;
|
|
1294
906
|
}
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
._Tabs_1d592_1 {
|
|
1298
|
-
display: flex;
|
|
1299
|
-
margin: 0;
|
|
1300
|
-
padding: 0;
|
|
1301
|
-
list-style: none;
|
|
1302
|
-
}
|
|
1303
|
-
._TabItem_1d592_8 {
|
|
1304
|
-
display: flex;
|
|
1305
|
-
}
|
|
1306
|
-
._TabItem-link_1d592_12 {
|
|
1307
|
-
align-items: center;
|
|
1308
|
-
border-bottom: 3px solid transparent;
|
|
1309
|
-
border-top: 3px solid transparent;
|
|
1310
|
-
color: black;
|
|
1311
|
-
display: flex;
|
|
1312
|
-
gap: 4px;
|
|
1313
|
-
text-decoration: none;
|
|
1314
|
-
padding: 16px;
|
|
1315
|
-
}
|
|
1316
|
-
._TabItem-icon_1d592_23 {
|
|
1317
|
-
align-items: center;
|
|
1318
|
-
color: var(--puck-color-grey-05);
|
|
1319
|
-
display: flex;
|
|
1320
|
-
}
|
|
1321
|
-
._TabItem--isActive_1d592_29 ._TabItem-link_1d592_12 {
|
|
1322
|
-
border-bottom-color: var(--puck-color-azure-04);
|
|
907
|
+
._Table-loader_1bbu5_109 {
|
|
908
|
+
padding: 16px 24px;
|
|
1323
909
|
}
|
|
1324
|
-
.
|
|
1325
|
-
background-color: var(--puck-color-
|
|
910
|
+
._TableRow--highlightRow_1bbu5_113 {
|
|
911
|
+
background-color: var(--puck-color-grey-12);
|
|
1326
912
|
}
|
|
1327
913
|
|
|
1328
914
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/VerticalSpace/VerticalSpace.module.css/#css-module-data */
|
|
@@ -1357,73 +943,43 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1357
943
|
padding-top: 128px;
|
|
1358
944
|
}
|
|
1359
945
|
|
|
1360
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/
|
|
1361
|
-
.
|
|
1362
|
-
background: white;
|
|
1363
|
-
height: 100%;
|
|
1364
|
-
display: flex;
|
|
1365
|
-
flex-direction: column;
|
|
1366
|
-
}
|
|
1367
|
-
._Chat-header_1mv7h_8 {
|
|
1368
|
-
display: block;
|
|
1369
|
-
padding: 8px 16px;
|
|
1370
|
-
font-weight: 600;
|
|
1371
|
-
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
1372
|
-
}
|
|
1373
|
-
@media (min-width: 638px) {
|
|
1374
|
-
._Chat-header_1mv7h_8 {
|
|
1375
|
-
display: block;
|
|
1376
|
-
padding: 16px;
|
|
1377
|
-
}
|
|
946
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Viewport/styles.module.css/#css-module-data */
|
|
947
|
+
._Viewport_1vvhm_3 {
|
|
1378
948
|
}
|
|
1379
|
-
.
|
|
1380
|
-
|
|
1381
|
-
color: var(--puck-color-grey-06);
|
|
949
|
+
._Viewport--standard_1vvhm_6,
|
|
950
|
+
._Viewport--inline_1vvhm_7._Viewport--standard_1vvhm_6 {
|
|
1382
951
|
display: none;
|
|
1383
|
-
justify-content: center;
|
|
1384
|
-
flex-direction: column;
|
|
1385
|
-
height: 100%;
|
|
1386
|
-
text-align: center;
|
|
1387
|
-
padding: 32px;
|
|
1388
|
-
gap: 8px;
|
|
1389
|
-
}
|
|
1390
|
-
@media (min-width: 638px) {
|
|
1391
|
-
._Chat-placeholder_1mv7h_22 {
|
|
1392
|
-
display: flex;
|
|
1393
|
-
}
|
|
1394
952
|
}
|
|
1395
|
-
.
|
|
1396
|
-
display:
|
|
1397
|
-
gap: 8px;
|
|
1398
|
-
justify-content: center;
|
|
1399
|
-
flex-wrap: wrap;
|
|
1400
|
-
margin-top: 4px;
|
|
1401
|
-
}
|
|
1402
|
-
._Chat-action_1mv7h_40,
|
|
1403
|
-
._Chat-actionOutlined_1mv7h_49 {
|
|
1404
|
-
border: 1px solid var(--puck-color-azure-04);
|
|
1405
|
-
border-radius: 16px;
|
|
1406
|
-
padding: 4px 12px;
|
|
1407
|
-
font-size: 12px;
|
|
1408
|
-
cursor: pointer;
|
|
953
|
+
._Viewport--narrow_1vvhm_11 {
|
|
954
|
+
display: block;
|
|
1409
955
|
}
|
|
1410
|
-
.
|
|
1411
|
-
|
|
1412
|
-
color: white;
|
|
956
|
+
._Viewport--inline_1vvhm_7._Viewport--narrow_1vvhm_11 {
|
|
957
|
+
display: inline;
|
|
1413
958
|
}
|
|
1414
|
-
.
|
|
1415
|
-
|
|
959
|
+
._Viewport--flex_1vvhm_19._Viewport--narrow_1vvhm_11 {
|
|
960
|
+
display: flex;
|
|
1416
961
|
}
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
962
|
+
@media (min-width: 768px) {
|
|
963
|
+
._Viewport--narrow_1vvhm_11,
|
|
964
|
+
._Viewport--inline_1vvhm_7._Viewport--narrow_1vvhm_11,
|
|
965
|
+
._Viewport--flex_1vvhm_19._Viewport--narrow_1vvhm_11 {
|
|
966
|
+
display: none;
|
|
967
|
+
}
|
|
1420
968
|
}
|
|
1421
|
-
|
|
1422
|
-
|
|
969
|
+
@media (min-width: 768px) {
|
|
970
|
+
._Viewport--standard_1vvhm_6 {
|
|
971
|
+
display: block;
|
|
972
|
+
}
|
|
973
|
+
._Viewport--inline_1vvhm_7._Viewport--standard_1vvhm_6 {
|
|
974
|
+
display: inline;
|
|
975
|
+
}
|
|
976
|
+
._Viewport--flex_1vvhm_19._Viewport--standard_1vvhm_6 {
|
|
977
|
+
display: flex;
|
|
978
|
+
}
|
|
1423
979
|
}
|
|
1424
980
|
|
|
1425
981
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/plugin-ai/src/components/ChatBody/styles.module.css/#css-module-data */
|
|
1426
|
-
.
|
|
982
|
+
._Chat_150yz_1 {
|
|
1427
983
|
--fade-size: 32px;
|
|
1428
984
|
--chat-background-color: white;
|
|
1429
985
|
display: flex;
|
|
@@ -1433,46 +989,46 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1433
989
|
overflow: hidden;
|
|
1434
990
|
}
|
|
1435
991
|
@media (min-width: 638px) {
|
|
1436
|
-
.
|
|
992
|
+
._Chat_150yz_1 {
|
|
1437
993
|
max-height: none;
|
|
1438
994
|
}
|
|
1439
995
|
}
|
|
1440
|
-
._Chat-
|
|
996
|
+
._Chat-inner_150yz_17 {
|
|
1441
997
|
background-color: var(--chat-background-color);
|
|
1442
998
|
display: flex;
|
|
1443
999
|
flex-direction: column;
|
|
1444
1000
|
max-height: 100%;
|
|
1445
1001
|
position: relative;
|
|
1446
1002
|
}
|
|
1447
|
-
._Chat--
|
|
1003
|
+
._Chat--hasMessages_150yz_25 ._Chat-inner_150yz_17 {
|
|
1448
1004
|
padding-top: 0;
|
|
1449
1005
|
}
|
|
1450
|
-
.
|
|
1006
|
+
._Chat_150yz_1:not(._Chat--hasChildren_150yz_29) ._Chat-inner_150yz_17 {
|
|
1451
1007
|
height: 100%;
|
|
1452
1008
|
padding-top: 0;
|
|
1453
1009
|
}
|
|
1454
|
-
._Chat--
|
|
1010
|
+
._Chat--hasMessages_150yz_25 ._Chat-messages_150yz_34 {
|
|
1455
1011
|
display: flex;
|
|
1456
1012
|
flex-direction: column-reverse;
|
|
1457
1013
|
padding: 16px;
|
|
1458
1014
|
overflow: auto;
|
|
1459
1015
|
}
|
|
1460
|
-
._Chat-
|
|
1016
|
+
._Chat-form_150yz_41 {
|
|
1461
1017
|
background-color: white;
|
|
1462
1018
|
padding: 16px;
|
|
1463
1019
|
}
|
|
1464
|
-
._Chat--
|
|
1020
|
+
._Chat--hideInput_150yz_46 ._Chat-form_150yz_41 {
|
|
1465
1021
|
display: none;
|
|
1466
1022
|
}
|
|
1467
|
-
._Chat--
|
|
1023
|
+
._Chat--hasMessages_150yz_25 ._Chat-form_150yz_41 {
|
|
1468
1024
|
border-top: 1px solid var(--puck-color-grey-09);
|
|
1469
1025
|
}
|
|
1470
1026
|
@media (min-width: 638px) {
|
|
1471
|
-
._Chat-
|
|
1027
|
+
._Chat-form_150yz_41 {
|
|
1472
1028
|
border-top: 1px solid var(--puck-color-grey-09);
|
|
1473
1029
|
}
|
|
1474
1030
|
}
|
|
1475
|
-
._Chat-
|
|
1031
|
+
._Chat-formHelper_150yz_60 {
|
|
1476
1032
|
align-items: center;
|
|
1477
1033
|
display: flex;
|
|
1478
1034
|
color: var(--puck-color-grey-04);
|
|
@@ -1481,11 +1037,11 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1481
1037
|
gap: 8px;
|
|
1482
1038
|
padding-bottom: 12px;
|
|
1483
1039
|
}
|
|
1484
|
-
._Chat--
|
|
1040
|
+
._Chat--hasMessages_150yz_25 ._Chat-formHelper_150yz_60 {
|
|
1485
1041
|
opacity: 0;
|
|
1486
1042
|
transition: opacity 250ms ease-in;
|
|
1487
1043
|
}
|
|
1488
|
-
._Chat-
|
|
1044
|
+
._Chat-examplePrompts_150yz_75 {
|
|
1489
1045
|
align-items: center;
|
|
1490
1046
|
display: flex;
|
|
1491
1047
|
flex-wrap: nowrap;
|
|
@@ -1494,7 +1050,7 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1494
1050
|
width: 100%;
|
|
1495
1051
|
overflow-x: auto;
|
|
1496
1052
|
}
|
|
1497
|
-
._Chat-
|
|
1053
|
+
._Chat-examplePrompt_150yz_75 {
|
|
1498
1054
|
align-items: center;
|
|
1499
1055
|
background: white;
|
|
1500
1056
|
border: 1px solid var(--puck-color-grey-09);
|
|
@@ -1505,33 +1061,34 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1505
1061
|
padding: 6px 12px;
|
|
1506
1062
|
text-wrap: nowrap;
|
|
1507
1063
|
}
|
|
1508
|
-
._Chat-
|
|
1064
|
+
._Chat-examplePrompt_150yz_75:hover {
|
|
1509
1065
|
background: var(--puck-color-azure-11);
|
|
1510
1066
|
border-color: var(--puck-color-azure-08);
|
|
1511
1067
|
color: var(--puck-color-azure-04);
|
|
1512
1068
|
}
|
|
1513
|
-
._Chat-
|
|
1069
|
+
._Chat-examplePromptArrow_150yz_103 {
|
|
1514
1070
|
margin-left: auto;
|
|
1515
1071
|
}
|
|
1516
|
-
._Chat-
|
|
1072
|
+
._Chat-default_150yz_107 {
|
|
1517
1073
|
overflow-y: auto;
|
|
1518
1074
|
flex-grow: 1;
|
|
1519
1075
|
}
|
|
1520
|
-
._Chat--
|
|
1076
|
+
._Chat--hasMessages_150yz_25 ._Chat-default_150yz_107 {
|
|
1521
1077
|
opacity: 0;
|
|
1522
1078
|
padding: 0;
|
|
1523
1079
|
pointer-events: none;
|
|
1524
1080
|
transition: opacity 250ms ease-in;
|
|
1525
1081
|
}
|
|
1526
|
-
._Chat--
|
|
1082
|
+
._Chat--hasMessages_150yz_25 {
|
|
1527
1083
|
background-color: white;
|
|
1528
1084
|
transition: background-color 250ms ease-in;
|
|
1529
1085
|
}
|
|
1530
|
-
.
|
|
1086
|
+
._ChatMessage_150yz_124 {
|
|
1531
1087
|
font-size: var(--puck-font-size-xs);
|
|
1532
1088
|
line-height: var(--line-height-s);
|
|
1089
|
+
overflow-wrap: break-word;
|
|
1533
1090
|
}
|
|
1534
|
-
._ChatMessage--
|
|
1091
|
+
._ChatMessage--userRole_150yz_130 ._ChatMessage-text_150yz_130 {
|
|
1535
1092
|
background: var(--puck-color-azure-10);
|
|
1536
1093
|
border-radius: 16px;
|
|
1537
1094
|
color: var(--puck-color-grey-03);
|
|
@@ -1540,64 +1097,64 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1540
1097
|
margin-top: 8px;
|
|
1541
1098
|
padding: 12px 16px;
|
|
1542
1099
|
}
|
|
1543
|
-
.
|
|
1544
|
-
.
|
|
1100
|
+
._ChatMessage_150yz_124 ul,
|
|
1101
|
+
._ChatMessage_150yz_124 ol {
|
|
1545
1102
|
list-style: decimal;
|
|
1546
1103
|
margin: 0;
|
|
1547
1104
|
margin-bottom: 12px;
|
|
1548
1105
|
margin-top: 12px;
|
|
1549
1106
|
padding-left: 32px;
|
|
1550
1107
|
}
|
|
1551
|
-
.
|
|
1108
|
+
._ChatMessage_150yz_124 li {
|
|
1552
1109
|
margin-bottom: 8px;
|
|
1553
1110
|
margin-top: 8px;
|
|
1554
1111
|
padding-left: 8px;
|
|
1555
1112
|
}
|
|
1556
|
-
.
|
|
1557
|
-
.
|
|
1558
|
-
.
|
|
1559
|
-
.
|
|
1560
|
-
.
|
|
1561
|
-
.
|
|
1113
|
+
._ChatMessage_150yz_124 h1,
|
|
1114
|
+
._ChatMessage_150yz_124 h2,
|
|
1115
|
+
._ChatMessage_150yz_124 h3,
|
|
1116
|
+
._ChatMessage_150yz_124 h4,
|
|
1117
|
+
._ChatMessage_150yz_124 h5,
|
|
1118
|
+
._ChatMessage_150yz_124 h6 {
|
|
1562
1119
|
font-weight: 600;
|
|
1563
1120
|
}
|
|
1564
|
-
.
|
|
1121
|
+
._ChatMessage_150yz_124 h1 {
|
|
1565
1122
|
font-size: var(--puck-font-l);
|
|
1566
1123
|
}
|
|
1567
|
-
.
|
|
1124
|
+
._ChatMessage_150yz_124 h2 {
|
|
1568
1125
|
font-size: var(--puck-font-m);
|
|
1569
1126
|
}
|
|
1570
|
-
.
|
|
1127
|
+
._ChatMessage_150yz_124 h3 {
|
|
1571
1128
|
font-size: var(--puck-font-m);
|
|
1572
1129
|
}
|
|
1573
|
-
.
|
|
1130
|
+
._ChatMessage_150yz_124 h4 {
|
|
1574
1131
|
font-size: var(--puck-font-s);
|
|
1575
1132
|
}
|
|
1576
|
-
.
|
|
1133
|
+
._ChatMessage_150yz_124 h5 {
|
|
1577
1134
|
font-size: var(--puck-font-xs);
|
|
1578
1135
|
}
|
|
1579
|
-
.
|
|
1136
|
+
._ChatMessage_150yz_124 h6 {
|
|
1580
1137
|
font-size: var(--puck-font-xm);
|
|
1581
1138
|
}
|
|
1582
|
-
.
|
|
1139
|
+
._ChatMessage_150yz_124 p {
|
|
1583
1140
|
margin-bottom: 8px;
|
|
1584
1141
|
margin-top: 8px;
|
|
1585
1142
|
}
|
|
1586
|
-
.
|
|
1143
|
+
._ChatMessage_150yz_124 a {
|
|
1587
1144
|
color: var(--puck-color-azure-04);
|
|
1588
1145
|
font-weight: 600;
|
|
1589
1146
|
text-decoration: none;
|
|
1590
1147
|
}
|
|
1591
|
-
.
|
|
1148
|
+
._ChatMessage_150yz_124 a:hover {
|
|
1592
1149
|
color: var(--puck-color-azure-05);
|
|
1593
1150
|
}
|
|
1594
|
-
.
|
|
1151
|
+
._ChatMessage_150yz_124 hr {
|
|
1595
1152
|
border-top: none;
|
|
1596
1153
|
border-bottom-color: var(--puck-color-grey-09);
|
|
1597
1154
|
margin-bottom: 16px;
|
|
1598
1155
|
margin-top: 16px;
|
|
1599
1156
|
}
|
|
1600
|
-
.
|
|
1157
|
+
._ChatMessage_150yz_124 blockquote {
|
|
1601
1158
|
margin-bottom: 8px;
|
|
1602
1159
|
margin-top: 8px;
|
|
1603
1160
|
margin-left: 0;
|
|
@@ -1606,7 +1163,7 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1606
1163
|
padding-bottom: 2px;
|
|
1607
1164
|
padding-top: 2px;
|
|
1608
1165
|
}
|
|
1609
|
-
._ChatMessage-
|
|
1166
|
+
._ChatMessage-data_150yz_220 {
|
|
1610
1167
|
background: var(--puck-color-grey-12);
|
|
1611
1168
|
border: 1px solid var(--puck-color-grey-08);
|
|
1612
1169
|
border-radius: 16px;
|
|
@@ -1616,19 +1173,19 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1616
1173
|
margin-top: 12px;
|
|
1617
1174
|
padding: 12px 16px;
|
|
1618
1175
|
}
|
|
1619
|
-
._ChatMessage-
|
|
1176
|
+
._ChatMessage-dataInner_150yz_231 {
|
|
1620
1177
|
align-items: center;
|
|
1621
1178
|
display: flex;
|
|
1622
1179
|
gap: 8px;
|
|
1623
1180
|
}
|
|
1624
|
-
._ChatMessage-
|
|
1181
|
+
._ChatMessage-dataIcon_150yz_237 {
|
|
1625
1182
|
display: flex;
|
|
1626
1183
|
}
|
|
1627
|
-
._Chat-
|
|
1184
|
+
._Chat-loader_150yz_241 {
|
|
1628
1185
|
padding: 16px;
|
|
1629
1186
|
padding-top: 0;
|
|
1630
1187
|
}
|
|
1631
|
-
._Chat-
|
|
1188
|
+
._Chat-error_150yz_246 {
|
|
1632
1189
|
align-items: center;
|
|
1633
1190
|
display: flex;
|
|
1634
1191
|
gap: 8px;
|
|
@@ -1636,10 +1193,10 @@ a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
|
1636
1193
|
margin: 16px;
|
|
1637
1194
|
margin-top: 0;
|
|
1638
1195
|
}
|
|
1639
|
-
._Chat-
|
|
1196
|
+
._Chat-errorLabel_150yz_255 {
|
|
1640
1197
|
color: var(--puck-color-red-04);
|
|
1641
1198
|
}
|
|
1642
|
-
._Chat-
|
|
1199
|
+
._Chat-errorAction_150yz_259 {
|
|
1643
1200
|
margin-left: auto;
|
|
1644
1201
|
}
|
|
1645
1202
|
|