@deque/cauldron-styles 6.4.2-canary.2657ce8b → 6.4.2-canary.37be24aa
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 +178 -47
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -166,7 +166,6 @@
|
|
|
166
166
|
--font-weight-light: 300;
|
|
167
167
|
--font-weight-normal: 400;
|
|
168
168
|
--font-weight-medium: 500;
|
|
169
|
-
--font-weight-semi-bold: 600;
|
|
170
169
|
--font-weight-bold: 700;
|
|
171
170
|
--font-weight-ultra-bold: 900;
|
|
172
171
|
|
|
@@ -1165,32 +1164,36 @@ textarea.Field--has-error:focus:hover,
|
|
|
1165
1164
|
--button-background-color-error-active: var(--accent-error-active);
|
|
1166
1165
|
--button-outline-color-error: var(--error);
|
|
1167
1166
|
|
|
1167
|
+
--button-text-size: var(--text-size-body);
|
|
1168
|
+
--button-thin-text-size: var(--text-size-body-small);
|
|
1168
1169
|
--button-text-color-dark: var(--gray-90);
|
|
1169
|
-
--button-text-color-light:
|
|
1170
|
+
--button-text-color-light: #fff;
|
|
1171
|
+
--button-text-color-disabled: var(--disabled);
|
|
1170
1172
|
--button-focus-ring-color: var(--focus-light);
|
|
1171
1173
|
--button-thin-height: var(--target-size-minimum);
|
|
1172
1174
|
|
|
1173
|
-
--button-height:
|
|
1175
|
+
--button-height: 2.25rem;
|
|
1174
1176
|
}
|
|
1175
1177
|
|
|
1176
1178
|
.Button--primary,
|
|
1177
1179
|
.Button--secondary,
|
|
1180
|
+
.Button--tertiary,
|
|
1178
1181
|
.Button--clear,
|
|
1179
1182
|
.Button--error {
|
|
1180
1183
|
border-radius: 3px;
|
|
1181
1184
|
border: 1px solid transparent;
|
|
1182
|
-
font-size: var(--text-size
|
|
1185
|
+
font-size: var(--button-text-size);
|
|
1183
1186
|
box-sizing: border-box;
|
|
1184
|
-
padding: 0
|
|
1187
|
+
padding: 0 var(--space-small);
|
|
1185
1188
|
position: relative;
|
|
1186
1189
|
text-align: center;
|
|
1187
1190
|
min-height: var(--button-height);
|
|
1188
|
-
min-width:
|
|
1191
|
+
min-width: 6.25rem;
|
|
1189
1192
|
display: inline-grid;
|
|
1190
1193
|
grid-auto-flow: column;
|
|
1191
1194
|
align-items: center;
|
|
1192
1195
|
justify-items: center;
|
|
1193
|
-
gap:
|
|
1196
|
+
gap: var(--space-smallest);
|
|
1194
1197
|
}
|
|
1195
1198
|
|
|
1196
1199
|
.Button--tag {
|
|
@@ -1204,6 +1207,7 @@ button.Link {
|
|
|
1204
1207
|
|
|
1205
1208
|
.Button--primary:focus,
|
|
1206
1209
|
.Button--secondary:focus,
|
|
1210
|
+
.Button--tertiary:focus,
|
|
1207
1211
|
.Button--clear:focus,
|
|
1208
1212
|
.Button--error:focus {
|
|
1209
1213
|
outline: none;
|
|
@@ -1211,6 +1215,7 @@ button.Link {
|
|
|
1211
1215
|
|
|
1212
1216
|
.Button--primary:before,
|
|
1213
1217
|
.Button--secondary:before,
|
|
1218
|
+
.Button--tertiary:before,
|
|
1214
1219
|
.Button--clear:before,
|
|
1215
1220
|
.Button--error:before,
|
|
1216
1221
|
.Button--tag:before {
|
|
@@ -1232,7 +1237,8 @@ button.Link {
|
|
|
1232
1237
|
box-shadow: 0 0 0 1px var(--button-outline-color-primary);
|
|
1233
1238
|
}
|
|
1234
1239
|
|
|
1235
|
-
.Button--secondary:not([disabled]):not([aria-disabled='true']):hover:before
|
|
1240
|
+
.Button--secondary:not([disabled]):not([aria-disabled='true']):hover:before,
|
|
1241
|
+
.Button--tertiary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
1236
1242
|
box-shadow: 0 0 0 1px var(--button-outline-color-secondary);
|
|
1237
1243
|
}
|
|
1238
1244
|
|
|
@@ -1246,6 +1252,7 @@ button.Link {
|
|
|
1246
1252
|
|
|
1247
1253
|
.Button--primary:focus:before,
|
|
1248
1254
|
.Button--secondary:focus:before,
|
|
1255
|
+
.Button--tertiary:focus:before,
|
|
1249
1256
|
.Button--error:focus:before {
|
|
1250
1257
|
box-shadow: 0 0 1px 2px var(--button-focus-ring-color, --focus);
|
|
1251
1258
|
}
|
|
@@ -1264,19 +1271,29 @@ button.Link {
|
|
|
1264
1271
|
background: var(--button-background-color-primary-active);
|
|
1265
1272
|
}
|
|
1266
1273
|
|
|
1267
|
-
.Button--secondary
|
|
1274
|
+
.Button--secondary,
|
|
1275
|
+
.Button--tertiary {
|
|
1268
1276
|
background-color: var(--button-background-color-secondary);
|
|
1269
1277
|
color: var(--button-text-color-dark);
|
|
1270
1278
|
border: 1px solid var(--field-border-color);
|
|
1271
1279
|
}
|
|
1272
1280
|
|
|
1273
|
-
.Button--
|
|
1274
|
-
|
|
1275
|
-
color:
|
|
1281
|
+
.Button--tertiary:is(:not(:hover, :focus), [disabled], [aria-disabled='true']) {
|
|
1282
|
+
border-color: transparent;
|
|
1283
|
+
background-color: transparent;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.Button--secondary:is([aria-disabled='true'], [disabled]) {
|
|
1287
|
+
color: var(--button-text-color-disabled);
|
|
1276
1288
|
background-color: var(--button-background-color-secondary-disabled);
|
|
1277
1289
|
}
|
|
1278
1290
|
|
|
1279
|
-
.Button--
|
|
1291
|
+
.Button--tertiary:is([aria-disabled='true'], [disabled]) {
|
|
1292
|
+
color: var(--button-text-color-disabled);
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1295
|
+
.Button--secondary:not([disabled], [aria-disabled='true']):active,
|
|
1296
|
+
.Button--tertiary:not([disabled], [aria-disabled='true']):active {
|
|
1280
1297
|
background-color: var(--button-background-color-secondary-active);
|
|
1281
1298
|
}
|
|
1282
1299
|
|
|
@@ -1297,13 +1314,13 @@ button.Link {
|
|
|
1297
1314
|
background-color: var(--button-background-color-error-active);
|
|
1298
1315
|
}
|
|
1299
1316
|
|
|
1300
|
-
.Button--tag[aria-disabled='true']
|
|
1301
|
-
.Button--tag[disabled] {
|
|
1317
|
+
.Button--tag:is([disabled], [aria-disabled='true']) {
|
|
1302
1318
|
color: var(--disabled);
|
|
1303
1319
|
}
|
|
1304
1320
|
|
|
1305
1321
|
.Button--primary .Icon,
|
|
1306
1322
|
.Button--secondary .Icon,
|
|
1323
|
+
.Button--tertiary .Icon,
|
|
1307
1324
|
.Button--clear .Icon,
|
|
1308
1325
|
.Button--error .Icon {
|
|
1309
1326
|
margin: 0 -4px;
|
|
@@ -1327,7 +1344,7 @@ button.Link {
|
|
|
1327
1344
|
.DefinitionButton button {
|
|
1328
1345
|
background-color: transparent;
|
|
1329
1346
|
color: var(--text-color-base);
|
|
1330
|
-
font-weight: var(--font-weight-
|
|
1347
|
+
font-weight: var(--font-weight-medium);
|
|
1331
1348
|
border-bottom: 1px dotted;
|
|
1332
1349
|
display: inline-block;
|
|
1333
1350
|
margin: 0 2px;
|
|
@@ -1341,9 +1358,9 @@ button.Link {
|
|
|
1341
1358
|
|
|
1342
1359
|
.Button--thin {
|
|
1343
1360
|
min-height: var(--button-thin-height);
|
|
1344
|
-
min-width:
|
|
1345
|
-
font-size: var(--text-size
|
|
1346
|
-
padding: 0
|
|
1361
|
+
min-width: 6.25rem;
|
|
1362
|
+
font-size: var(--button-thin-text-size);
|
|
1363
|
+
padding: 0 var(--space-small);
|
|
1347
1364
|
}
|
|
1348
1365
|
|
|
1349
1366
|
[class*='Button--'] + [class*='Button--'] {
|
|
@@ -1378,26 +1395,33 @@ button.Link {
|
|
|
1378
1395
|
border: 2px solid var(--accent-light);
|
|
1379
1396
|
}
|
|
1380
1397
|
|
|
1398
|
+
.cauldron--theme-dark .Button--tertiary {
|
|
1399
|
+
color: var(--accent-light);
|
|
1400
|
+
}
|
|
1401
|
+
|
|
1402
|
+
.cauldron--theme-dark .Button--tertiary:not(:hover, :focus) {
|
|
1403
|
+
color: #fff;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1381
1406
|
.cauldron--theme-dark .Button--error {
|
|
1382
1407
|
background-color: var(--accent-medium);
|
|
1383
|
-
color:
|
|
1408
|
+
color: #fff;
|
|
1384
1409
|
border: 2px solid var(--accent-danger);
|
|
1385
1410
|
}
|
|
1386
1411
|
|
|
1387
|
-
.cauldron--theme-dark .Button--primary[aria-disabled='true'],
|
|
1388
|
-
.cauldron--theme-dark .Button--
|
|
1389
|
-
.cauldron--theme-dark .Button--
|
|
1390
|
-
.cauldron--theme-dark .Button--
|
|
1391
|
-
.cauldron--theme-dark .Button--error[aria-disabled='true'],
|
|
1392
|
-
.cauldron--theme-dark .Button--error[disabled],
|
|
1393
|
-
.cauldron--theme-dark .Button--tag[disabled] {
|
|
1412
|
+
.cauldron--theme-dark .Button--primary:is([disabled], [aria-disabled='true']),
|
|
1413
|
+
.cauldron--theme-dark .Button--secondary:is([disabled], [aria-disabled='true']),
|
|
1414
|
+
.cauldron--theme-dark .Button--error:is([disabled], [aria-disabled='true']),
|
|
1415
|
+
.cauldron--theme-dark .Button--tag:is([disabled], [aria-disabled='true']) {
|
|
1394
1416
|
color: var(--dark-workspace-color);
|
|
1395
1417
|
}
|
|
1396
1418
|
|
|
1397
1419
|
.cauldron--theme-dark
|
|
1398
1420
|
.Button--primary:not([disabled]):not([aria-disabled='true']):active,
|
|
1399
1421
|
.cauldron--theme-dark
|
|
1400
|
-
.Button--secondary:not([disabled]):not([aria-disabled='true']):active
|
|
1422
|
+
.Button--secondary:not([disabled]):not([aria-disabled='true']):active,
|
|
1423
|
+
.cauldron--theme-dark
|
|
1424
|
+
.Button--tertiary:not([disabled]):not([aria-disabled='true']):active {
|
|
1401
1425
|
color: var(--accent-medium);
|
|
1402
1426
|
}
|
|
1403
1427
|
|
|
@@ -1412,7 +1436,7 @@ button.Link {
|
|
|
1412
1436
|
}
|
|
1413
1437
|
|
|
1414
1438
|
.cauldron--theme-dark button.Link:hover {
|
|
1415
|
-
color:
|
|
1439
|
+
color: #fff;
|
|
1416
1440
|
}
|
|
1417
1441
|
|
|
1418
1442
|
.cauldron--theme-dark
|
|
@@ -1422,7 +1446,9 @@ button.Link {
|
|
|
1422
1446
|
}
|
|
1423
1447
|
|
|
1424
1448
|
.cauldron--theme-dark
|
|
1425
|
-
.Button--secondary:not([disabled]):not([aria-disabled='true']):hover:before
|
|
1449
|
+
.Button--secondary:not([disabled]):not([aria-disabled='true']):hover:before,
|
|
1450
|
+
.cauldron--theme-dark
|
|
1451
|
+
.Button--tertiary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
1426
1452
|
box-shadow: 0 0 0 1px var(--dark-workspace-color),
|
|
1427
1453
|
0 0 0 2px var(--accent-light);
|
|
1428
1454
|
}
|
|
@@ -1439,6 +1465,10 @@ button.Link {
|
|
|
1439
1465
|
0 0 0 2px var(--accent-info);
|
|
1440
1466
|
}
|
|
1441
1467
|
|
|
1468
|
+
.cauldron--theme-dark .Button--tertiary:is([disabled], [aria-disabled='true']) {
|
|
1469
|
+
color: #74818b;
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1442
1472
|
:root {
|
|
1443
1473
|
/* Primary */
|
|
1444
1474
|
--icon-button-primary-color: var(--button-text-color-light);
|
|
@@ -1470,6 +1500,8 @@ button.Link {
|
|
|
1470
1500
|
--button-background-color-error-active
|
|
1471
1501
|
);
|
|
1472
1502
|
|
|
1503
|
+
--icon-button-text-color-disabled: var(--button-text-color-disabled);
|
|
1504
|
+
|
|
1473
1505
|
/* Deprecated variables */
|
|
1474
1506
|
--icon-button-content-color-light-disabled: #ccc;
|
|
1475
1507
|
--icon-button-background-color-light: #dadada;
|
|
@@ -1545,11 +1577,16 @@ a.IconButton {
|
|
|
1545
1577
|
|
|
1546
1578
|
.IconButton--secondary:is([aria-disabled='true'], [disabled]),
|
|
1547
1579
|
.IconButton--secondary:is([aria-disabled='true'], [disabled]):active {
|
|
1548
|
-
color: var(--disabled);
|
|
1580
|
+
color: var(--icon-button-text-color-disabled);
|
|
1549
1581
|
background-color: var(--button-background-color-secondary-disabled);
|
|
1550
1582
|
cursor: default;
|
|
1551
1583
|
}
|
|
1552
1584
|
|
|
1585
|
+
.IconButton--tertiary:is([aria-disabled='true'], [disabled]),
|
|
1586
|
+
.IconButton--tertiary:is([aria-disabled='true'], [disabled]):active {
|
|
1587
|
+
color: var(--icon-button-text-color-disabled);
|
|
1588
|
+
}
|
|
1589
|
+
|
|
1553
1590
|
.IconButton--primary:is([aria-disabled='true'], [disabled]),
|
|
1554
1591
|
.IconButton--primary:is([aria-disabled='true'], [disabled]):active {
|
|
1555
1592
|
background-color: var(--button-background-color-primary-disabled);
|
|
@@ -1580,19 +1617,32 @@ a.IconButton {
|
|
|
1580
1617
|
background-color: var(--icon-button-background-color-primary-active);
|
|
1581
1618
|
}
|
|
1582
1619
|
|
|
1583
|
-
.IconButton--secondary
|
|
1620
|
+
.IconButton--secondary,
|
|
1621
|
+
.IconButton--tertiary,
|
|
1622
|
+
.IconButton--tertiary:is(:active) {
|
|
1584
1623
|
border: 1px solid var(--icon-button-border-color-secondary);
|
|
1585
1624
|
background-color: var(--icon-button-background-color-secondary);
|
|
1586
1625
|
color: var(--icon-button-secondary-color);
|
|
1587
1626
|
}
|
|
1588
1627
|
|
|
1589
|
-
.IconButton--secondary:not([disabled]):not(
|
|
1590
|
-
|
|
1591
|
-
|
|
1628
|
+
.IconButton--secondary:not([disabled]):not([aria-disabled='true']):hover:before,
|
|
1629
|
+
.IconButton--tertiary:not([disabled]):not([aria-disabled='true']):is(
|
|
1630
|
+
:hover
|
|
1631
|
+
):before {
|
|
1592
1632
|
box-shadow: 0 0 0 1px var(--icon-button-outline-color-secondary);
|
|
1593
1633
|
}
|
|
1594
1634
|
|
|
1595
|
-
.IconButton--
|
|
1635
|
+
.IconButton--tertiary:is(
|
|
1636
|
+
:not(:hover, :focus, :active),
|
|
1637
|
+
[disabled],
|
|
1638
|
+
[aria-disabled='true']
|
|
1639
|
+
) {
|
|
1640
|
+
border-color: transparent;
|
|
1641
|
+
background-color: transparent;
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1644
|
+
.IconButton--secondary:active,
|
|
1645
|
+
.IconButton--tertiary:active {
|
|
1596
1646
|
background-color: var(--icon-button-background-color-secondary-active);
|
|
1597
1647
|
}
|
|
1598
1648
|
|
|
@@ -1644,7 +1694,8 @@ a.IconButton {
|
|
|
1644
1694
|
border: 2px solid var(--icon-button-border-color-primary);
|
|
1645
1695
|
}
|
|
1646
1696
|
|
|
1647
|
-
.cauldron--theme-dark .IconButton--secondary
|
|
1697
|
+
.cauldron--theme-dark .IconButton--secondary,
|
|
1698
|
+
.cauldron--theme-dark .IconButton--tertiary {
|
|
1648
1699
|
border-width: 2px;
|
|
1649
1700
|
}
|
|
1650
1701
|
|
|
@@ -1663,6 +1714,7 @@ a.IconButton {
|
|
|
1663
1714
|
|
|
1664
1715
|
.cauldron--theme-dark .IconButton--primary:active,
|
|
1665
1716
|
.cauldron--theme-dark .IconButton--secondary:active,
|
|
1717
|
+
.cauldron--theme-dark .IconButton--tertiary:active,
|
|
1666
1718
|
.cauldron--theme-dark .IconButton--error:active {
|
|
1667
1719
|
color: var(--icon-button-active-color);
|
|
1668
1720
|
}
|
|
@@ -1683,6 +1735,10 @@ a.IconButton {
|
|
|
1683
1735
|
.cauldron--theme-dark
|
|
1684
1736
|
.IconButton--secondary:not([disabled]):not(
|
|
1685
1737
|
[aria-disabled='true']
|
|
1738
|
+
):hover:before,
|
|
1739
|
+
.cauldron--theme-dark
|
|
1740
|
+
.IconButton--tertiary:not([disabled]):not(
|
|
1741
|
+
[aria-disabled='true']
|
|
1686
1742
|
):hover:before {
|
|
1687
1743
|
box-shadow: 0 0 0 1px var(--icon-button-outline-shadow-color),
|
|
1688
1744
|
0 0 0 2px var(--icon-button-outline-color-secondary);
|
|
@@ -1699,6 +1755,11 @@ a.IconButton {
|
|
|
1699
1755
|
0 0 0 4px var(--button-focus-ring-color, --focus);
|
|
1700
1756
|
}
|
|
1701
1757
|
|
|
1758
|
+
.cauldron--theme-dark
|
|
1759
|
+
.IconButton--tertiary:is([disabled], [aria-disabled='true']) {
|
|
1760
|
+
color: #74818b;
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1702
1763
|
:root {
|
|
1703
1764
|
--dialog-background-color: #fff;
|
|
1704
1765
|
--dialog-border-color: var(--gray-40);
|
|
@@ -4474,17 +4535,20 @@ fieldset.Panel {
|
|
|
4474
4535
|
}
|
|
4475
4536
|
|
|
4476
4537
|
.Breadcrumb__Link {
|
|
4477
|
-
font-weight: 400;
|
|
4478
4538
|
padding: 0;
|
|
4479
4539
|
display: inline;
|
|
4480
4540
|
}
|
|
4481
4541
|
|
|
4482
4542
|
.Breadcrumb__Item {
|
|
4483
|
-
font-weight:
|
|
4543
|
+
font-weight: var(--font-weight-medium);
|
|
4484
4544
|
color: var(--link-text-color);
|
|
4485
4545
|
display: inline;
|
|
4486
4546
|
}
|
|
4487
4547
|
|
|
4548
|
+
.Breadcrumb__Item:last-child {
|
|
4549
|
+
font-weight: var(--font-weight-normal);
|
|
4550
|
+
}
|
|
4551
|
+
|
|
4488
4552
|
:root {
|
|
4489
4553
|
--two-column-panel-border-color: var(--gray-40);
|
|
4490
4554
|
--two-column-panel-background-color: #fff;
|
|
@@ -4873,7 +4937,7 @@ button.Accordion__trigger {
|
|
|
4873
4937
|
--notice-background-color: var(--notice-info-color);
|
|
4874
4938
|
--notice-border-color: var(--accent-dark);
|
|
4875
4939
|
--notice-link-hover-color: var(--accent-medium);
|
|
4876
|
-
--notice-icon-size:
|
|
4940
|
+
--notice-icon-size: 1rem;
|
|
4877
4941
|
}
|
|
4878
4942
|
|
|
4879
4943
|
.Notice--info {
|
|
@@ -4889,20 +4953,35 @@ button.Accordion__trigger {
|
|
|
4889
4953
|
}
|
|
4890
4954
|
|
|
4891
4955
|
.Notice {
|
|
4892
|
-
display:
|
|
4893
|
-
|
|
4956
|
+
display: grid;
|
|
4957
|
+
grid-template-columns: auto 1fr;
|
|
4958
|
+
gap: var(--space-small);
|
|
4959
|
+
padding: var(--space-large);
|
|
4960
|
+
align-items: start;
|
|
4961
|
+
border-radius: 4px;
|
|
4894
4962
|
border: 1px solid var(--notice-border-color);
|
|
4895
4963
|
background-color: var(--notice-background-color);
|
|
4896
4964
|
color: var(--notice-text-color);
|
|
4897
|
-
|
|
4898
|
-
|
|
4965
|
+
}
|
|
4966
|
+
|
|
4967
|
+
.Notice--condensed {
|
|
4968
|
+
grid-template-columns: 1fr;
|
|
4969
|
+
padding: var(--space-small);
|
|
4970
|
+
gap: var(--space-smallest);
|
|
4971
|
+
}
|
|
4972
|
+
|
|
4973
|
+
.Notice__content {
|
|
4974
|
+
grid-column: 2;
|
|
4975
|
+
}
|
|
4976
|
+
|
|
4977
|
+
.Notice--condensed .Notice__content {
|
|
4978
|
+
grid-column: 1;
|
|
4899
4979
|
}
|
|
4900
4980
|
|
|
4901
4981
|
.Notice .Notice__title,
|
|
4902
4982
|
.Notice .Notice__title > :is(h1, h2, h3, h4, h5, h6) {
|
|
4903
4983
|
display: flex;
|
|
4904
4984
|
align-items: flex-start;
|
|
4905
|
-
font-size: var(--text-size-small);
|
|
4906
4985
|
font-weight: var(--notice-title-font-weight);
|
|
4907
4986
|
margin: 0;
|
|
4908
4987
|
padding: 0;
|
|
@@ -4910,7 +4989,7 @@ button.Accordion__trigger {
|
|
|
4910
4989
|
color: var(--notice-title-text-color);
|
|
4911
4990
|
}
|
|
4912
4991
|
|
|
4913
|
-
.Notice .
|
|
4992
|
+
.Notice .Notice__content {
|
|
4914
4993
|
margin-top: var(--space-smallest);
|
|
4915
4994
|
}
|
|
4916
4995
|
|
|
@@ -4929,7 +5008,6 @@ button.Accordion__trigger {
|
|
|
4929
5008
|
.Notice button.Link,
|
|
4930
5009
|
.Notice a.Link {
|
|
4931
5010
|
color: var(--accent-dark);
|
|
4932
|
-
font-size: var(--text-size-small);
|
|
4933
5011
|
font-weight: var(--font-weight-light);
|
|
4934
5012
|
text-decoration: underline;
|
|
4935
5013
|
}
|
|
@@ -4950,6 +5028,15 @@ button.Accordion__trigger {
|
|
|
4950
5028
|
margin-bottom: var(--space-smallest);
|
|
4951
5029
|
}
|
|
4952
5030
|
|
|
5031
|
+
.Notice ul {
|
|
5032
|
+
margin: var(--space-smallest) 0;
|
|
5033
|
+
padding-left: var(--space-small);
|
|
5034
|
+
}
|
|
5035
|
+
|
|
5036
|
+
.Notice li {
|
|
5037
|
+
margin-bottom: var(--space-smallest);
|
|
5038
|
+
}
|
|
5039
|
+
|
|
4953
5040
|
:root {
|
|
4954
5041
|
--combobox-listbox-border-color: var(--gray-40);
|
|
4955
5042
|
--combobox-listbox-background-color: #fff;
|
|
@@ -5393,3 +5480,47 @@ button.Accordion__trigger {
|
|
|
5393
5480
|
-webkit-box-orient: vertical;
|
|
5394
5481
|
white-space: normal;
|
|
5395
5482
|
}
|
|
5483
|
+
|
|
5484
|
+
:root {
|
|
5485
|
+
--badge-text-color: var(--gray-90);
|
|
5486
|
+
--badge-background-color: transparent;
|
|
5487
|
+
--badge-border-color: var(--gray-30);
|
|
5488
|
+
|
|
5489
|
+
--badge-height: var(--button-height);
|
|
5490
|
+
--badge-small-height: 1.5rem;
|
|
5491
|
+
|
|
5492
|
+
--badge-font-size: 1rem;
|
|
5493
|
+
}
|
|
5494
|
+
|
|
5495
|
+
.cauldron--theme-dark {
|
|
5496
|
+
--badge-text-color: var(--white);
|
|
5497
|
+
--badge-background-color: var(--accent-medium);
|
|
5498
|
+
--badge-border-color: var(--stroke-dark);
|
|
5499
|
+
}
|
|
5500
|
+
|
|
5501
|
+
.Badge {
|
|
5502
|
+
color: var(--badge-text-color);
|
|
5503
|
+
background-color: var(--badge-background-color);
|
|
5504
|
+
border: 1px solid var(--badge-border-color);
|
|
5505
|
+
display: inline-flex;
|
|
5506
|
+
justify-content: center;
|
|
5507
|
+
align-items: center;
|
|
5508
|
+
padding: 0 var(--space-small) 0 var(--space-smaller);
|
|
5509
|
+
min-height: var(--badge-height);
|
|
5510
|
+
border-radius: var(--badge-height);
|
|
5511
|
+
font-size: var(--badge-font-size);
|
|
5512
|
+
}
|
|
5513
|
+
|
|
5514
|
+
.Badge--small {
|
|
5515
|
+
border-radius: var(--badge-small-height);
|
|
5516
|
+
min-height: var(--badge-small-height);
|
|
5517
|
+
}
|
|
5518
|
+
|
|
5519
|
+
.Badge__Label {
|
|
5520
|
+
margin-right: 3px;
|
|
5521
|
+
font-weight: var(--font-weight-medium);
|
|
5522
|
+
}
|
|
5523
|
+
|
|
5524
|
+
.Badge .Icon {
|
|
5525
|
+
margin: 0 var(--space-half) 0 -4px;
|
|
5526
|
+
}
|
package/package.json
CHANGED