@7shifts/sous-chef 4.4.0 → 4.4.1-beta-20260604160732
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 +201 -43
- package/dist/index.css.map +1 -1
- package/dist/index.js +26 -10
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +25 -10
- package/dist/index.modern.js.map +1 -1
- package/dist/overlay/DropdownListItem/DropdownListItem.d.ts +3 -1
- package/dist/overlay/hooks/useSubmenu.d.ts +1 -0
- package/llms-instructions/guidelines/Accordion.guidelines.md +36 -0
- package/llms-instructions/guidelines/ActionList.guidelines.md +59 -0
- package/llms-instructions/guidelines/Avatar.guidelines.md +51 -0
- package/llms-instructions/guidelines/Badge.guidelines.md +40 -0
- package/llms-instructions/guidelines/Breadcrumbs.guidelines.md +41 -0
- package/llms-instructions/guidelines/Button.guidelines.md +41 -0
- package/llms-instructions/guidelines/Calendar.guidelines.md +40 -0
- package/llms-instructions/guidelines/Card.guidelines.md +58 -0
- package/llms-instructions/guidelines/Chip.guidelines.md +64 -0
- package/llms-instructions/guidelines/CircularProgress.guidelines.md +28 -0
- package/llms-instructions/guidelines/DataTable.guidelines.md +88 -0
- package/llms-instructions/guidelines/DateFilter.guidelines.md +32 -0
- package/llms-instructions/guidelines/Dropdown.guidelines.md +54 -0
- package/llms-instructions/guidelines/EmptyState.guidelines.md +58 -0
- package/llms-instructions/guidelines/Forms.guidelines.md +99 -0
- package/llms-instructions/guidelines/HintModal.guidelines.md +47 -0
- package/llms-instructions/guidelines/Icons.guidelines.md +59 -0
- package/llms-instructions/guidelines/InkIllustrations.guidelines.md +38 -0
- package/llms-instructions/guidelines/InlineBanner.guidelines.md +52 -0
- package/llms-instructions/guidelines/Link.guidelines.md +26 -0
- package/llms-instructions/guidelines/MicroBanner.guidelines.md +21 -0
- package/llms-instructions/guidelines/Modal.guidelines.md +52 -0
- package/llms-instructions/guidelines/PaginationControls.guidelines.md +21 -0
- package/llms-instructions/guidelines/Paywall.guidelines.md +57 -0
- package/llms-instructions/guidelines/PersistentBanner.guidelines.md +33 -0
- package/llms-instructions/guidelines/Pill.guidelines.md +55 -0
- package/llms-instructions/guidelines/Popover.guidelines.md +42 -0
- package/llms-instructions/guidelines/ProgressBar.guidelines.md +35 -0
- package/llms-instructions/guidelines/SegmentedControl.guidelines.md +21 -0
- package/llms-instructions/guidelines/Skeleton.guidelines.md +30 -0
- package/llms-instructions/guidelines/Spinner.guidelines.md +32 -0
- package/llms-instructions/guidelines/Toast.guidelines.md +34 -0
- package/llms-instructions/guidelines/Toggle.guidelines.md +19 -0
- package/llms-instructions/guidelines/ToolbarSelect.guidelines.md +22 -0
- package/llms-instructions/guidelines/Tooltip.guidelines.md +45 -0
- package/llms-instructions/llms-components.md +61 -261
- package/llms-instructions/llms-icons-and-illustrations.md +2 -0
- package/llms-instructions/llms-tokens.md +97 -16
- package/package.json +7 -2
package/dist/index.css
CHANGED
|
@@ -1,7 +1,23 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "SF Pro";
|
|
3
|
+
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYTHIN.OTF") format("opentype");
|
|
4
|
+
font-weight: 100;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
/* Preload the font */
|
|
7
|
+
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: "SF Pro";
|
|
11
|
+
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYLIGHT.OTF") format("opentype");
|
|
12
|
+
font-weight: 200;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
/* Preload the font */
|
|
15
|
+
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
16
|
+
}
|
|
1
17
|
@font-face {
|
|
2
18
|
font-family: "SF Pro";
|
|
3
19
|
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYREGULAR.OTF") format("opentype");
|
|
4
|
-
font-weight:
|
|
20
|
+
font-weight: 300;
|
|
5
21
|
font-style: normal;
|
|
6
22
|
/* Preload the font */
|
|
7
23
|
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
@@ -9,11 +25,43 @@
|
|
|
9
25
|
@font-face {
|
|
10
26
|
font-family: "SF Pro";
|
|
11
27
|
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYMEDIUM.OTF") format("opentype");
|
|
28
|
+
font-weight: 400;
|
|
29
|
+
font-style: normal;
|
|
30
|
+
/* Preload the font */
|
|
31
|
+
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
32
|
+
}
|
|
33
|
+
@font-face {
|
|
34
|
+
font-family: "SF Pro";
|
|
35
|
+
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYSEMIBOLD.OTF") format("opentype");
|
|
36
|
+
font-weight: 500;
|
|
37
|
+
font-style: normal;
|
|
38
|
+
/* Preload the font */
|
|
39
|
+
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
40
|
+
}
|
|
41
|
+
@font-face {
|
|
42
|
+
font-family: "SF Pro";
|
|
43
|
+
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYBOLD.OTF") format("opentype");
|
|
12
44
|
font-weight: 600;
|
|
13
45
|
font-style: normal;
|
|
14
46
|
/* Preload the font */
|
|
15
47
|
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
16
48
|
}
|
|
49
|
+
@font-face {
|
|
50
|
+
font-family: "SF Pro";
|
|
51
|
+
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYHEAVY.OTF") format("opentype");
|
|
52
|
+
font-weight: 700;
|
|
53
|
+
font-style: normal;
|
|
54
|
+
/* Preload the font */
|
|
55
|
+
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
56
|
+
}
|
|
57
|
+
@font-face {
|
|
58
|
+
font-family: "SF Pro";
|
|
59
|
+
src: url("https://cdn.7shifts.com/fonts/SFPro/SFPRODISPLAYBLACK.OTF") format("opentype");
|
|
60
|
+
font-weight: 800;
|
|
61
|
+
font-style: normal;
|
|
62
|
+
/* Preload the font */
|
|
63
|
+
unicode-range: U+0000-00FF; /* Basic Latin */
|
|
64
|
+
}
|
|
17
65
|
@font-face {
|
|
18
66
|
font-family: "Universal Sans Display";
|
|
19
67
|
src: url("https://cdn.7shifts.com/fonts/UniversalSans/Universal-Sans-Display-500.ttf");
|
|
@@ -39,10 +87,14 @@
|
|
|
39
87
|
--font-line-height-500: 1.75rem;
|
|
40
88
|
--font-line-height-600: 2rem;
|
|
41
89
|
--font-line-height-700: 2.75rem;
|
|
42
|
-
--p-font-weight-
|
|
43
|
-
--p-font-weight-
|
|
90
|
+
--p-font-weight-thin: 100;
|
|
91
|
+
--p-font-weight-light: 200;
|
|
92
|
+
--p-font-weight-normal: 300;
|
|
93
|
+
--p-font-weight-medium: 400;
|
|
44
94
|
--p-font-weight-semibold: 500;
|
|
45
95
|
--p-font-weight-bold: 600;
|
|
96
|
+
--p-font-weight-heavy: 700;
|
|
97
|
+
--p-font-weight-black: 800;
|
|
46
98
|
}
|
|
47
99
|
:root {
|
|
48
100
|
--color-white: #fff;
|
|
@@ -294,7 +346,30 @@
|
|
|
294
346
|
--color-hover-lighten: var(--color-neutral-white-transparent-20);
|
|
295
347
|
--color-hover-darken: var(--color-neutral-black-transparent-05);
|
|
296
348
|
--color-brand-neutrals-caviar-dynamic: #000;
|
|
349
|
+
--color-brand-neutrals-caviar-hue: #000;
|
|
297
350
|
--color-brand-neutrals-chefscoat-dynamic: #fff;
|
|
351
|
+
--color-brand-neutrals-chefscoat-hue: #fff;
|
|
352
|
+
--color-brand-neutrals-marshmallow-hue: #f1f0ec;
|
|
353
|
+
--color-brand-neutrals-oat-hue: #e2ded6;
|
|
354
|
+
--color-brand-neutrals-earl-hue: #6e6d6c;
|
|
355
|
+
--color-brand-primary-spritz-hue: #ff6808;
|
|
356
|
+
--color-brand-primary-spritz-tint: #fcab91;
|
|
357
|
+
--color-brand-primary-spritz-shade: #cf5406;
|
|
358
|
+
--color-brand-primary-curacao-hue: #4570ff;
|
|
359
|
+
--color-brand-primary-curacao-tint: #a0bbff;
|
|
360
|
+
--color-brand-primary-curacao-shade: #1c5cbb;
|
|
361
|
+
--color-brand-primary-mojito-hue: #00feb2;
|
|
362
|
+
--color-brand-primary-mojito-tint: #81ffac;
|
|
363
|
+
--color-brand-primary-mojito-shade: #3fb994;
|
|
364
|
+
--color-brand-primary-empress-hue: #c293f1;
|
|
365
|
+
--color-brand-primary-empress-tint: #d9bff4;
|
|
366
|
+
--color-brand-primary-empress-shade: #846db3;
|
|
367
|
+
--color-brand-secondary-ice-hue: #d6e0ff;
|
|
368
|
+
--color-brand-secondary-zest-hue: #c6ff94;
|
|
369
|
+
--color-brand-secondary-lavender-hue: #ebdcff;
|
|
370
|
+
--color-brand-secondary-ranch-hue: #193f78;
|
|
371
|
+
--color-brand-secondary-pesto-hue: #244f47;
|
|
372
|
+
--color-brand-secondary-babaganoush-hue: #453e75;
|
|
298
373
|
--color-on-graphic-black: #000;
|
|
299
374
|
--color-on-graphic-white: #fff;
|
|
300
375
|
--color-canvas-background-color: #fff;
|
|
@@ -404,7 +479,30 @@
|
|
|
404
479
|
--color-hover-lighten: var(--color-neutral-black-transparent-20);
|
|
405
480
|
--color-hover-darken: var(--color-neutral-white-transparent-05);
|
|
406
481
|
--color-brand-neutrals-caviar-dynamic: #fff;
|
|
482
|
+
--color-brand-neutrals-caviar-hue: #000;
|
|
407
483
|
--color-brand-neutrals-chefscoat-dynamic: #000;
|
|
484
|
+
--color-brand-neutrals-chefscoat-hue: #fff;
|
|
485
|
+
--color-brand-neutrals-marshmallow-hue: #f1f0ec;
|
|
486
|
+
--color-brand-neutrals-oat-hue: #e2ded6;
|
|
487
|
+
--color-brand-neutrals-earl-hue: #6e6d6c;
|
|
488
|
+
--color-brand-primary-spritz-hue: #ff6808;
|
|
489
|
+
--color-brand-primary-spritz-tint: #fcab91;
|
|
490
|
+
--color-brand-primary-spritz-shade: #cf5406;
|
|
491
|
+
--color-brand-primary-curacao-hue: #4570ff;
|
|
492
|
+
--color-brand-primary-curacao-tint: #a0bbff;
|
|
493
|
+
--color-brand-primary-curacao-shade: #1c5cbb;
|
|
494
|
+
--color-brand-primary-mojito-hue: #00feb2;
|
|
495
|
+
--color-brand-primary-mojito-tint: #81ffac;
|
|
496
|
+
--color-brand-primary-mojito-shade: #3fb994;
|
|
497
|
+
--color-brand-primary-empress-hue: #c293f1;
|
|
498
|
+
--color-brand-primary-empress-tint: #d9bff4;
|
|
499
|
+
--color-brand-primary-empress-shade: #846db3;
|
|
500
|
+
--color-brand-secondary-ice-hue: #d6e0ff;
|
|
501
|
+
--color-brand-secondary-zest-hue: #c6ff94;
|
|
502
|
+
--color-brand-secondary-lavender-hue: #ebdcff;
|
|
503
|
+
--color-brand-secondary-ranch-hue: #193f78;
|
|
504
|
+
--color-brand-secondary-pesto-hue: #244f47;
|
|
505
|
+
--color-brand-secondary-babaganoush-hue: #453e75;
|
|
408
506
|
--color-on-graphic-black: #000;
|
|
409
507
|
--color-on-graphic-white: #fff;
|
|
410
508
|
--color-canvas-background-color: #2c2c2c;
|
|
@@ -496,7 +594,7 @@ body * {
|
|
|
496
594
|
font-size: var(--font-size-200);
|
|
497
595
|
line-height: var(--font-line-height-200);
|
|
498
596
|
font-weight: var(--p-font-weight-normal);
|
|
499
|
-
font-weight: var(--p-font-weight-
|
|
597
|
+
font-weight: var(--p-font-weight-medium);
|
|
500
598
|
padding: 0;
|
|
501
599
|
width: auto;
|
|
502
600
|
float: none;
|
|
@@ -534,7 +632,7 @@ Just for future references:
|
|
|
534
632
|
font-size: var(--font-size-200);
|
|
535
633
|
line-height: var(--font-line-height-200);
|
|
536
634
|
font-weight: var(--p-font-weight-normal);
|
|
537
|
-
font-weight: var(--p-font-weight-
|
|
635
|
+
font-weight: var(--p-font-weight-medium);
|
|
538
636
|
padding: 0;
|
|
539
637
|
width: auto;
|
|
540
638
|
float: none;
|
|
@@ -711,7 +809,7 @@ Just for future references:
|
|
|
711
809
|
font-size: var(--font-size-200);
|
|
712
810
|
line-height: var(--font-line-height-200);
|
|
713
811
|
font-weight: var(--p-font-weight-normal);
|
|
714
|
-
font-weight: var(--p-font-weight-
|
|
812
|
+
font-weight: var(--p-font-weight-medium);
|
|
715
813
|
}
|
|
716
814
|
|
|
717
815
|
._MjV6R {
|
|
@@ -747,7 +845,7 @@ Just for future references:
|
|
|
747
845
|
font-size: var(--font-size-200);
|
|
748
846
|
line-height: var(--font-line-height-200);
|
|
749
847
|
font-weight: var(--p-font-weight-normal);
|
|
750
|
-
font-weight: var(--p-font-weight-
|
|
848
|
+
font-weight: var(--p-font-weight-medium);
|
|
751
849
|
line-height: normal;
|
|
752
850
|
text-align: center;
|
|
753
851
|
padding: 9px 12px;
|
|
@@ -1197,7 +1295,7 @@ Just for future references:
|
|
|
1197
1295
|
font-size: var(--font-size-200);
|
|
1198
1296
|
line-height: var(--font-line-height-200);
|
|
1199
1297
|
font-weight: var(--p-font-weight-normal);
|
|
1200
|
-
font-weight: var(--p-font-weight-
|
|
1298
|
+
font-weight: var(--p-font-weight-medium);
|
|
1201
1299
|
padding: 0;
|
|
1202
1300
|
width: auto;
|
|
1203
1301
|
float: none;
|
|
@@ -1228,30 +1326,30 @@ h1._6SgoN {
|
|
|
1228
1326
|
font-family: var(--font-family-heading);
|
|
1229
1327
|
font-size: var(--font-size-600);
|
|
1230
1328
|
line-height: var(--font-line-height-600);
|
|
1231
|
-
font-weight: var(--p-font-weight-
|
|
1329
|
+
font-weight: var(--p-font-weight-medium);
|
|
1232
1330
|
}
|
|
1233
1331
|
h1._i2LHD {
|
|
1234
|
-
font-weight: var(--p-font-weight-
|
|
1332
|
+
font-weight: var(--p-font-weight-medium);
|
|
1235
1333
|
}
|
|
1236
1334
|
|
|
1237
1335
|
h2._6SgoN {
|
|
1238
1336
|
font-family: var(--font-family-heading);
|
|
1239
1337
|
font-size: var(--font-size-500);
|
|
1240
1338
|
line-height: var(--font-line-height-500);
|
|
1241
|
-
font-weight: var(--p-font-weight-
|
|
1339
|
+
font-weight: var(--p-font-weight-medium);
|
|
1242
1340
|
}
|
|
1243
1341
|
h2._i2LHD {
|
|
1244
|
-
font-weight: var(--p-font-weight-
|
|
1342
|
+
font-weight: var(--p-font-weight-medium);
|
|
1245
1343
|
}
|
|
1246
1344
|
|
|
1247
1345
|
h3._6SgoN {
|
|
1248
1346
|
font-family: var(--font-family-heading);
|
|
1249
1347
|
font-size: var(--font-size-400);
|
|
1250
1348
|
line-height: var(--font-line-height-400);
|
|
1251
|
-
font-weight: var(--p-font-weight-
|
|
1349
|
+
font-weight: var(--p-font-weight-medium);
|
|
1252
1350
|
}
|
|
1253
1351
|
h3._i2LHD {
|
|
1254
|
-
font-weight: var(--p-font-weight-
|
|
1352
|
+
font-weight: var(--p-font-weight-medium);
|
|
1255
1353
|
}
|
|
1256
1354
|
|
|
1257
1355
|
h4._6SgoN {
|
|
@@ -1261,7 +1359,7 @@ h4._6SgoN {
|
|
|
1261
1359
|
font-weight: var(--p-font-weight-normal);
|
|
1262
1360
|
}
|
|
1263
1361
|
h4._i2LHD {
|
|
1264
|
-
font-weight: var(--p-font-weight-
|
|
1362
|
+
font-weight: var(--p-font-weight-medium);
|
|
1265
1363
|
}
|
|
1266
1364
|
|
|
1267
1365
|
h5._6SgoN {
|
|
@@ -1271,7 +1369,7 @@ h5._6SgoN {
|
|
|
1271
1369
|
font-weight: var(--p-font-weight-normal);
|
|
1272
1370
|
}
|
|
1273
1371
|
h5._i2LHD {
|
|
1274
|
-
font-weight: var(--p-font-weight-
|
|
1372
|
+
font-weight: var(--p-font-weight-medium);
|
|
1275
1373
|
}
|
|
1276
1374
|
|
|
1277
1375
|
._6SgoN {
|
|
@@ -1293,7 +1391,7 @@ h5._i2LHD {
|
|
|
1293
1391
|
font-family: var(--font-family-heading);
|
|
1294
1392
|
font-size: var(--font-size-700);
|
|
1295
1393
|
line-height: var(--font-line-height-700);
|
|
1296
|
-
font-weight: var(--p-font-weight-
|
|
1394
|
+
font-weight: var(--p-font-weight-medium);
|
|
1297
1395
|
}
|
|
1298
1396
|
._yZbuO {
|
|
1299
1397
|
font-family: var(--font-family-body);
|
|
@@ -1302,8 +1400,8 @@ h5._i2LHD {
|
|
|
1302
1400
|
font-weight: var(--p-font-weight-normal);
|
|
1303
1401
|
}
|
|
1304
1402
|
._i2LHD {
|
|
1305
|
-
font-weight: var(--p-font-weight-
|
|
1306
|
-
font-weight: var(--p-font-weight-
|
|
1403
|
+
font-weight: var(--p-font-weight-medium);
|
|
1404
|
+
font-weight: var(--p-font-weight-medium);
|
|
1307
1405
|
}
|
|
1308
1406
|
._NgSTT {
|
|
1309
1407
|
font-style: italic;
|
|
@@ -1485,7 +1583,7 @@ h5._i2LHD {
|
|
|
1485
1583
|
}
|
|
1486
1584
|
._Zu9cD ._xS6fS {
|
|
1487
1585
|
color: var(--color-primary-on-container-variant);
|
|
1488
|
-
font-weight: var(--p-font-weight-
|
|
1586
|
+
font-weight: var(--p-font-weight-medium);
|
|
1489
1587
|
}
|
|
1490
1588
|
._Zu9cD ._7EI7m {
|
|
1491
1589
|
color: var(--color-primary-on-container-variant);
|
|
@@ -1555,6 +1653,21 @@ h5._i2LHD {
|
|
|
1555
1653
|
width: 16px;
|
|
1556
1654
|
height: 16px;
|
|
1557
1655
|
}
|
|
1656
|
+
._rvaeI {
|
|
1657
|
+
background: none;
|
|
1658
|
+
border: none;
|
|
1659
|
+
padding: 4px;
|
|
1660
|
+
border-radius: 4px;
|
|
1661
|
+
margin: 0;
|
|
1662
|
+
display: flex;
|
|
1663
|
+
align-items: center;
|
|
1664
|
+
justify-content: center;
|
|
1665
|
+
color: var(--color-surface-on-color-subtle);
|
|
1666
|
+
cursor: pointer;
|
|
1667
|
+
}
|
|
1668
|
+
._rvaeI:hover {
|
|
1669
|
+
background-color: var(--color-hover-darken);
|
|
1670
|
+
}
|
|
1558
1671
|
._dpo67 {
|
|
1559
1672
|
display: flex;
|
|
1560
1673
|
align-items: center;
|
|
@@ -1755,7 +1868,7 @@ h5._i2LHD {
|
|
|
1755
1868
|
font-size: var(--font-size-200);
|
|
1756
1869
|
line-height: var(--font-line-height-200);
|
|
1757
1870
|
font-weight: var(--p-font-weight-normal);
|
|
1758
|
-
font-weight: var(--p-font-weight-
|
|
1871
|
+
font-weight: var(--p-font-weight-medium);
|
|
1759
1872
|
background: var(--color-surface-container-high);
|
|
1760
1873
|
color: var(--color-surface-on-color-bold);
|
|
1761
1874
|
border-left: 2px solid var(--color-outline);
|
|
@@ -1870,7 +1983,7 @@ h5._i2LHD {
|
|
|
1870
1983
|
font-family: var(--font-family-heading);
|
|
1871
1984
|
font-size: var(--font-size-500);
|
|
1872
1985
|
line-height: var(--font-line-height-500);
|
|
1873
|
-
font-weight: var(--p-font-weight-
|
|
1986
|
+
font-weight: var(--p-font-weight-medium);
|
|
1874
1987
|
color: var(--color-surface-on-color-bold);
|
|
1875
1988
|
padding: 0;
|
|
1876
1989
|
}
|
|
@@ -1987,7 +2100,7 @@ h5._i2LHD {
|
|
|
1987
2100
|
|
|
1988
2101
|
._X7MoW:not(._AeJUw) {
|
|
1989
2102
|
color: var(--color-primary-color);
|
|
1990
|
-
font-weight: var(--p-font-weight-
|
|
2103
|
+
font-weight: var(--p-font-weight-medium);
|
|
1991
2104
|
text-decoration: underline;
|
|
1992
2105
|
}
|
|
1993
2106
|
|
|
@@ -2006,6 +2119,21 @@ h5._i2LHD {
|
|
|
2006
2119
|
color: var(--color-surface-on-color-disabled);
|
|
2007
2120
|
}
|
|
2008
2121
|
|
|
2122
|
+
._Mlgd- {
|
|
2123
|
+
position: relative;
|
|
2124
|
+
z-index: 1;
|
|
2125
|
+
display: inline-flex;
|
|
2126
|
+
align-items: center;
|
|
2127
|
+
margin: 0;
|
|
2128
|
+
padding: 0 0.25em;
|
|
2129
|
+
white-space: nowrap;
|
|
2130
|
+
color: currentColor;
|
|
2131
|
+
border: 0;
|
|
2132
|
+
border: 2px solid transparent;
|
|
2133
|
+
font-size: var(--rdp-caption-font-size);
|
|
2134
|
+
font-weight: var(--p-font-weight-medium);
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2009
2137
|
._eK8pw._eK8pw._eK8pw._eK8pw:not(:disabled) {
|
|
2010
2138
|
background-color: var(--color-primary-container-variant);
|
|
2011
2139
|
color: var(--color-primary-on-container-variant);
|
|
@@ -2071,7 +2199,7 @@ h5._i2LHD {
|
|
|
2071
2199
|
|
|
2072
2200
|
._Snv-V:not(._Zf-6C) {
|
|
2073
2201
|
color: var(--color-primary-color);
|
|
2074
|
-
font-weight: var(--p-font-weight-
|
|
2202
|
+
font-weight: var(--p-font-weight-medium);
|
|
2075
2203
|
text-decoration: underline;
|
|
2076
2204
|
}
|
|
2077
2205
|
|
|
@@ -2090,6 +2218,21 @@ h5._i2LHD {
|
|
|
2090
2218
|
color: var(--color-surface-on-color-disabled);
|
|
2091
2219
|
}
|
|
2092
2220
|
|
|
2221
|
+
._-s7XO {
|
|
2222
|
+
position: relative;
|
|
2223
|
+
z-index: 1;
|
|
2224
|
+
display: inline-flex;
|
|
2225
|
+
align-items: center;
|
|
2226
|
+
margin: 0;
|
|
2227
|
+
padding: 0 0.25em;
|
|
2228
|
+
white-space: nowrap;
|
|
2229
|
+
color: currentColor;
|
|
2230
|
+
border: 0;
|
|
2231
|
+
border: 2px solid transparent;
|
|
2232
|
+
font-size: var(--rdp-caption-font-size);
|
|
2233
|
+
font-weight: var(--p-font-weight-medium);
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2093
2236
|
._e0lOH._e0lOH {
|
|
2094
2237
|
color: var(--color-primary-on-container-variant);
|
|
2095
2238
|
border-radius: 0;
|
|
@@ -2292,7 +2435,7 @@ input:disabled + ._kmvBP::after {
|
|
|
2292
2435
|
font-size: var(--font-size-100);
|
|
2293
2436
|
line-height: var(--font-line-height-100);
|
|
2294
2437
|
font-weight: var(--p-font-weight-normal);
|
|
2295
|
-
font-weight: var(--p-font-weight-
|
|
2438
|
+
font-weight: var(--p-font-weight-medium);
|
|
2296
2439
|
padding: 0 16px 8px 16px;
|
|
2297
2440
|
background-color: unset;
|
|
2298
2441
|
color: var(--color-surface-on-color-bold);
|
|
@@ -2396,7 +2539,7 @@ input:disabled + ._kmvBP::after {
|
|
|
2396
2539
|
font-size: var(--font-size-200);
|
|
2397
2540
|
line-height: var(--font-line-height-200);
|
|
2398
2541
|
font-weight: var(--p-font-weight-normal);
|
|
2399
|
-
font-weight: var(--p-font-weight-
|
|
2542
|
+
font-weight: var(--p-font-weight-medium);
|
|
2400
2543
|
}
|
|
2401
2544
|
._mp1Ok tr td {
|
|
2402
2545
|
background: var(--color-surface-container-high);
|
|
@@ -2516,7 +2659,7 @@ input:disabled + ._kmvBP::after {
|
|
|
2516
2659
|
font-size: var(--font-size-200);
|
|
2517
2660
|
line-height: var(--font-line-height-200);
|
|
2518
2661
|
font-weight: var(--p-font-weight-normal);
|
|
2519
|
-
font-weight: var(--p-font-weight-
|
|
2662
|
+
font-weight: var(--p-font-weight-medium);
|
|
2520
2663
|
color: var(--color-surface-on-color-bold);
|
|
2521
2664
|
}
|
|
2522
2665
|
|
|
@@ -2864,8 +3007,7 @@ input:disabled + ._kmvBP::after {
|
|
|
2864
3007
|
border-bottom: 1px solid var(--color-outline-variant);
|
|
2865
3008
|
padding: 16px;
|
|
2866
3009
|
word-break: break-word;
|
|
2867
|
-
|
|
2868
|
-
hyphens: auto;
|
|
3010
|
+
hyphens: auto;
|
|
2869
3011
|
background: var(--color-surface-color);
|
|
2870
3012
|
}
|
|
2871
3013
|
._cp8xi:first-of-type {
|
|
@@ -3326,7 +3468,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3326
3468
|
background-color: var(--color-surface-color);
|
|
3327
3469
|
padding: 16px;
|
|
3328
3470
|
color: var(--color-surface-on-color-bold);
|
|
3329
|
-
font-weight: var(--p-font-weight-
|
|
3471
|
+
font-weight: var(--p-font-weight-medium);
|
|
3330
3472
|
position: sticky;
|
|
3331
3473
|
top: 0;
|
|
3332
3474
|
z-index: 2;
|
|
@@ -3485,7 +3627,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3485
3627
|
box-sizing: border-box;
|
|
3486
3628
|
}
|
|
3487
3629
|
._Mn-1P {
|
|
3488
|
-
font-weight: var(--p-font-weight-
|
|
3630
|
+
font-weight: var(--p-font-weight-medium);
|
|
3489
3631
|
font-size: var(--font-size-normal);
|
|
3490
3632
|
border: none;
|
|
3491
3633
|
background-color: transparent;
|
|
@@ -3528,7 +3670,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3528
3670
|
font-size: var(--font-size-200);
|
|
3529
3671
|
line-height: var(--font-line-height-200);
|
|
3530
3672
|
font-weight: var(--p-font-weight-normal);
|
|
3531
|
-
font-weight: var(--p-font-weight-
|
|
3673
|
+
font-weight: var(--p-font-weight-medium);
|
|
3532
3674
|
position: relative;
|
|
3533
3675
|
background-color: transparent;
|
|
3534
3676
|
color: var(--color-surface-on-color-bold);
|
|
@@ -3562,7 +3704,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3562
3704
|
font-family: var(--font-family-heading);
|
|
3563
3705
|
font-size: var(--font-size-400);
|
|
3564
3706
|
line-height: var(--font-line-height-400);
|
|
3565
|
-
font-weight: var(--p-font-weight-
|
|
3707
|
+
font-weight: var(--p-font-weight-medium);
|
|
3566
3708
|
margin: 0;
|
|
3567
3709
|
}
|
|
3568
3710
|
._zybxx {
|
|
@@ -3669,7 +3811,7 @@ input:disabled + ._kmvBP::after {
|
|
|
3669
3811
|
font-size: var(--font-size-200);
|
|
3670
3812
|
line-height: var(--font-line-height-200);
|
|
3671
3813
|
font-weight: var(--p-font-weight-normal);
|
|
3672
|
-
font-weight: var(--p-font-weight-
|
|
3814
|
+
font-weight: var(--p-font-weight-medium);
|
|
3673
3815
|
color: var(--color-surface-on-color-bold);
|
|
3674
3816
|
display: flex;
|
|
3675
3817
|
align-items: center;
|
|
@@ -3747,7 +3889,7 @@ input:focus-visible + ._JXakU, input:focus-visible + ._ZxEwG {
|
|
|
3747
3889
|
font-size: var(--font-size-200);
|
|
3748
3890
|
line-height: var(--font-line-height-200);
|
|
3749
3891
|
font-weight: var(--p-font-weight-normal);
|
|
3750
|
-
font-weight: var(--p-font-weight-
|
|
3892
|
+
font-weight: var(--p-font-weight-medium);
|
|
3751
3893
|
padding: 0;
|
|
3752
3894
|
width: auto;
|
|
3753
3895
|
float: none;
|
|
@@ -3774,7 +3916,7 @@ input:focus-visible + ._JXakU, input:focus-visible + ._ZxEwG {
|
|
|
3774
3916
|
font-size: var(--font-size-200);
|
|
3775
3917
|
line-height: var(--font-line-height-200);
|
|
3776
3918
|
font-weight: var(--p-font-weight-normal);
|
|
3777
|
-
font-weight: var(--p-font-weight-
|
|
3919
|
+
font-weight: var(--p-font-weight-medium);
|
|
3778
3920
|
padding: 0;
|
|
3779
3921
|
width: auto;
|
|
3780
3922
|
float: none;
|
|
@@ -3793,7 +3935,7 @@ input:focus-visible + ._JXakU, input:focus-visible + ._ZxEwG {
|
|
|
3793
3935
|
font-size: var(--font-size-200);
|
|
3794
3936
|
line-height: var(--font-line-height-200);
|
|
3795
3937
|
font-weight: var(--p-font-weight-normal);
|
|
3796
|
-
font-weight: var(--p-font-weight-
|
|
3938
|
+
font-weight: var(--p-font-weight-medium);
|
|
3797
3939
|
padding: 0;
|
|
3798
3940
|
width: auto;
|
|
3799
3941
|
float: none;
|
|
@@ -3867,7 +4009,7 @@ input:checked ~ ._P588B {
|
|
|
3867
4009
|
font-size: var(--font-size-200);
|
|
3868
4010
|
line-height: var(--font-line-height-200);
|
|
3869
4011
|
font-weight: var(--p-font-weight-normal);
|
|
3870
|
-
font-weight: var(--p-font-weight-
|
|
4012
|
+
font-weight: var(--p-font-weight-medium);
|
|
3871
4013
|
padding: 0;
|
|
3872
4014
|
width: auto;
|
|
3873
4015
|
float: none;
|
|
@@ -4234,7 +4376,7 @@ input:disabled + ._Yfxkl::after {
|
|
|
4234
4376
|
|
|
4235
4377
|
._lFzs7:not(._TjttB) {
|
|
4236
4378
|
color: var(--color-primary-color);
|
|
4237
|
-
font-weight: var(--p-font-weight-
|
|
4379
|
+
font-weight: var(--p-font-weight-medium);
|
|
4238
4380
|
text-decoration: underline;
|
|
4239
4381
|
}
|
|
4240
4382
|
|
|
@@ -4253,6 +4395,21 @@ input:disabled + ._Yfxkl::after {
|
|
|
4253
4395
|
color: var(--color-surface-on-color-disabled);
|
|
4254
4396
|
}
|
|
4255
4397
|
|
|
4398
|
+
._rpq6- {
|
|
4399
|
+
position: relative;
|
|
4400
|
+
z-index: 1;
|
|
4401
|
+
display: inline-flex;
|
|
4402
|
+
align-items: center;
|
|
4403
|
+
margin: 0;
|
|
4404
|
+
padding: 0 0.25em;
|
|
4405
|
+
white-space: nowrap;
|
|
4406
|
+
color: currentColor;
|
|
4407
|
+
border: 0;
|
|
4408
|
+
border: 2px solid transparent;
|
|
4409
|
+
font-size: var(--rdp-caption-font-size);
|
|
4410
|
+
font-weight: var(--p-font-weight-medium);
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4256
4413
|
._rJolM._rJolM {
|
|
4257
4414
|
color: var(--color-primary-color);
|
|
4258
4415
|
border-radius: 0;
|
|
@@ -5553,7 +5710,7 @@ input._TEU6N {
|
|
|
5553
5710
|
font-family: var(--font-family-heading);
|
|
5554
5711
|
font-size: var(--font-size-500);
|
|
5555
5712
|
line-height: var(--font-line-height-500);
|
|
5556
|
-
font-weight: var(--p-font-weight-
|
|
5713
|
+
font-weight: var(--p-font-weight-medium);
|
|
5557
5714
|
width: 40px;
|
|
5558
5715
|
height: 40px;
|
|
5559
5716
|
}
|
|
@@ -5565,7 +5722,7 @@ input._TEU6N {
|
|
|
5565
5722
|
font-family: var(--font-family-heading);
|
|
5566
5723
|
font-size: var(--font-size-600);
|
|
5567
5724
|
line-height: var(--font-line-height-600);
|
|
5568
|
-
font-weight: var(--p-font-weight-
|
|
5725
|
+
font-weight: var(--p-font-weight-medium);
|
|
5569
5726
|
width: 80px;
|
|
5570
5727
|
height: 80px;
|
|
5571
5728
|
}
|
|
@@ -5587,7 +5744,7 @@ input._TEU6N {
|
|
|
5587
5744
|
font-size: var(--font-size-100);
|
|
5588
5745
|
line-height: var(--font-line-height-100);
|
|
5589
5746
|
font-weight: var(--p-font-weight-normal);
|
|
5590
|
-
font-weight: var(--p-font-weight-
|
|
5747
|
+
font-weight: var(--p-font-weight-medium);
|
|
5591
5748
|
border-radius: var(--border-radius-300);
|
|
5592
5749
|
padding: 2px 8px;
|
|
5593
5750
|
display: inline-block;
|
|
@@ -5638,7 +5795,7 @@ input._TEU6N {
|
|
|
5638
5795
|
font-size: var(--font-size-200);
|
|
5639
5796
|
line-height: var(--font-line-height-200);
|
|
5640
5797
|
font-weight: var(--p-font-weight-normal);
|
|
5641
|
-
font-weight: var(--p-font-weight-
|
|
5798
|
+
font-weight: var(--p-font-weight-medium);
|
|
5642
5799
|
border-radius: 25px;
|
|
5643
5800
|
padding: 5px 12px;
|
|
5644
5801
|
max-width: -moz-fit-content;
|
|
@@ -5828,6 +5985,7 @@ input._TEU6N {
|
|
|
5828
5985
|
text-overflow: ellipsis;
|
|
5829
5986
|
color: var(--nav-object-normal-color);
|
|
5830
5987
|
font-family: var(--font-family-body);
|
|
5988
|
+
font-weight: var(--p-font-weight-medium);
|
|
5831
5989
|
}
|
|
5832
5990
|
._MFqwx {
|
|
5833
5991
|
position: absolute;
|