@deque/cauldron-styles 6.4.2-canary.2657ce8b → 6.4.2-canary.295ba5f8
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 +225 -49
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
--accent-success-dark: #57a711;
|
|
28
28
|
--accent-error: #d93251;
|
|
29
29
|
--accent-error-active: #c92e40;
|
|
30
|
+
--accent-danger-active: #fea7a6;
|
|
30
31
|
--accent-danger: #fe6d6b;
|
|
31
32
|
--accent-danger-light: #f7846c;
|
|
32
33
|
--accent-warning: #ffdd75;
|
|
@@ -45,8 +46,8 @@
|
|
|
45
46
|
--light-workspace-color: #f7f7f7;
|
|
46
47
|
--focus-light: #b51ad1;
|
|
47
48
|
--focus-dark: #f5a4ff;
|
|
48
|
-
--issue-critical: var(--accent-danger);
|
|
49
|
-
--issue-serious: var(--accent-
|
|
49
|
+
--issue-critical: var(--accent-danger-active);
|
|
50
|
+
--issue-serious: var(--accent-caution);
|
|
50
51
|
--issue-moderate: #f0c4f8;
|
|
51
52
|
--issue-minor: var(--gray-20);
|
|
52
53
|
|
|
@@ -166,7 +167,6 @@
|
|
|
166
167
|
--font-weight-light: 300;
|
|
167
168
|
--font-weight-normal: 400;
|
|
168
169
|
--font-weight-medium: 500;
|
|
169
|
-
--font-weight-semi-bold: 600;
|
|
170
170
|
--font-weight-bold: 700;
|
|
171
171
|
--font-weight-ultra-bold: 900;
|
|
172
172
|
|
|
@@ -1165,32 +1165,36 @@ textarea.Field--has-error:focus:hover,
|
|
|
1165
1165
|
--button-background-color-error-active: var(--accent-error-active);
|
|
1166
1166
|
--button-outline-color-error: var(--error);
|
|
1167
1167
|
|
|
1168
|
+
--button-text-size: var(--text-size-body);
|
|
1169
|
+
--button-thin-text-size: var(--text-size-body-small);
|
|
1168
1170
|
--button-text-color-dark: var(--gray-90);
|
|
1169
|
-
--button-text-color-light:
|
|
1171
|
+
--button-text-color-light: #fff;
|
|
1172
|
+
--button-text-color-disabled: var(--disabled);
|
|
1170
1173
|
--button-focus-ring-color: var(--focus-light);
|
|
1171
1174
|
--button-thin-height: var(--target-size-minimum);
|
|
1172
1175
|
|
|
1173
|
-
--button-height:
|
|
1176
|
+
--button-height: 2.25rem;
|
|
1174
1177
|
}
|
|
1175
1178
|
|
|
1176
1179
|
.Button--primary,
|
|
1177
1180
|
.Button--secondary,
|
|
1181
|
+
.Button--tertiary,
|
|
1178
1182
|
.Button--clear,
|
|
1179
1183
|
.Button--error {
|
|
1180
1184
|
border-radius: 3px;
|
|
1181
1185
|
border: 1px solid transparent;
|
|
1182
|
-
font-size: var(--text-size
|
|
1186
|
+
font-size: var(--button-text-size);
|
|
1183
1187
|
box-sizing: border-box;
|
|
1184
|
-
padding: 0
|
|
1188
|
+
padding: 0 var(--space-small);
|
|
1185
1189
|
position: relative;
|
|
1186
1190
|
text-align: center;
|
|
1187
1191
|
min-height: var(--button-height);
|
|
1188
|
-
min-width:
|
|
1192
|
+
min-width: 6.25rem;
|
|
1189
1193
|
display: inline-grid;
|
|
1190
1194
|
grid-auto-flow: column;
|
|
1191
1195
|
align-items: center;
|
|
1192
1196
|
justify-items: center;
|
|
1193
|
-
gap:
|
|
1197
|
+
gap: var(--space-smallest);
|
|
1194
1198
|
}
|
|
1195
1199
|
|
|
1196
1200
|
.Button--tag {
|
|
@@ -1204,6 +1208,7 @@ button.Link {
|
|
|
1204
1208
|
|
|
1205
1209
|
.Button--primary:focus,
|
|
1206
1210
|
.Button--secondary:focus,
|
|
1211
|
+
.Button--tertiary:focus,
|
|
1207
1212
|
.Button--clear:focus,
|
|
1208
1213
|
.Button--error:focus {
|
|
1209
1214
|
outline: none;
|
|
@@ -1211,6 +1216,7 @@ button.Link {
|
|
|
1211
1216
|
|
|
1212
1217
|
.Button--primary:before,
|
|
1213
1218
|
.Button--secondary:before,
|
|
1219
|
+
.Button--tertiary:before,
|
|
1214
1220
|
.Button--clear:before,
|
|
1215
1221
|
.Button--error:before,
|
|
1216
1222
|
.Button--tag:before {
|
|
@@ -1232,7 +1238,8 @@ button.Link {
|
|
|
1232
1238
|
box-shadow: 0 0 0 1px var(--button-outline-color-primary);
|
|
1233
1239
|
}
|
|
1234
1240
|
|
|
1235
|
-
.Button--secondary:not([disabled]):not([aria-disabled='true']):hover:before
|
|
1241
|
+
.Button--secondary:not([disabled]):not([aria-disabled='true']):hover:before,
|
|
1242
|
+
.Button--tertiary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
1236
1243
|
box-shadow: 0 0 0 1px var(--button-outline-color-secondary);
|
|
1237
1244
|
}
|
|
1238
1245
|
|
|
@@ -1246,6 +1253,7 @@ button.Link {
|
|
|
1246
1253
|
|
|
1247
1254
|
.Button--primary:focus:before,
|
|
1248
1255
|
.Button--secondary:focus:before,
|
|
1256
|
+
.Button--tertiary:focus:before,
|
|
1249
1257
|
.Button--error:focus:before {
|
|
1250
1258
|
box-shadow: 0 0 1px 2px var(--button-focus-ring-color, --focus);
|
|
1251
1259
|
}
|
|
@@ -1264,19 +1272,29 @@ button.Link {
|
|
|
1264
1272
|
background: var(--button-background-color-primary-active);
|
|
1265
1273
|
}
|
|
1266
1274
|
|
|
1267
|
-
.Button--secondary
|
|
1275
|
+
.Button--secondary,
|
|
1276
|
+
.Button--tertiary {
|
|
1268
1277
|
background-color: var(--button-background-color-secondary);
|
|
1269
1278
|
color: var(--button-text-color-dark);
|
|
1270
1279
|
border: 1px solid var(--field-border-color);
|
|
1271
1280
|
}
|
|
1272
1281
|
|
|
1273
|
-
.Button--
|
|
1274
|
-
|
|
1275
|
-
color:
|
|
1282
|
+
.Button--tertiary:is(:not(:hover, :focus), [disabled], [aria-disabled='true']) {
|
|
1283
|
+
border-color: transparent;
|
|
1284
|
+
background-color: transparent;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
.Button--secondary:is([aria-disabled='true'], [disabled]) {
|
|
1288
|
+
color: var(--button-text-color-disabled);
|
|
1276
1289
|
background-color: var(--button-background-color-secondary-disabled);
|
|
1277
1290
|
}
|
|
1278
1291
|
|
|
1279
|
-
.Button--
|
|
1292
|
+
.Button--tertiary:is([aria-disabled='true'], [disabled]) {
|
|
1293
|
+
color: var(--button-text-color-disabled);
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.Button--secondary:not([disabled], [aria-disabled='true']):active,
|
|
1297
|
+
.Button--tertiary:not([disabled], [aria-disabled='true']):active {
|
|
1280
1298
|
background-color: var(--button-background-color-secondary-active);
|
|
1281
1299
|
}
|
|
1282
1300
|
|
|
@@ -1297,13 +1315,13 @@ button.Link {
|
|
|
1297
1315
|
background-color: var(--button-background-color-error-active);
|
|
1298
1316
|
}
|
|
1299
1317
|
|
|
1300
|
-
.Button--tag[aria-disabled='true']
|
|
1301
|
-
.Button--tag[disabled] {
|
|
1318
|
+
.Button--tag:is([disabled], [aria-disabled='true']) {
|
|
1302
1319
|
color: var(--disabled);
|
|
1303
1320
|
}
|
|
1304
1321
|
|
|
1305
1322
|
.Button--primary .Icon,
|
|
1306
1323
|
.Button--secondary .Icon,
|
|
1324
|
+
.Button--tertiary .Icon,
|
|
1307
1325
|
.Button--clear .Icon,
|
|
1308
1326
|
.Button--error .Icon {
|
|
1309
1327
|
margin: 0 -4px;
|
|
@@ -1327,7 +1345,7 @@ button.Link {
|
|
|
1327
1345
|
.DefinitionButton button {
|
|
1328
1346
|
background-color: transparent;
|
|
1329
1347
|
color: var(--text-color-base);
|
|
1330
|
-
font-weight: var(--font-weight-
|
|
1348
|
+
font-weight: var(--font-weight-medium);
|
|
1331
1349
|
border-bottom: 1px dotted;
|
|
1332
1350
|
display: inline-block;
|
|
1333
1351
|
margin: 0 2px;
|
|
@@ -1341,9 +1359,9 @@ button.Link {
|
|
|
1341
1359
|
|
|
1342
1360
|
.Button--thin {
|
|
1343
1361
|
min-height: var(--button-thin-height);
|
|
1344
|
-
min-width:
|
|
1345
|
-
font-size: var(--text-size
|
|
1346
|
-
padding: 0
|
|
1362
|
+
min-width: 6.25rem;
|
|
1363
|
+
font-size: var(--button-thin-text-size);
|
|
1364
|
+
padding: 0 var(--space-small);
|
|
1347
1365
|
}
|
|
1348
1366
|
|
|
1349
1367
|
[class*='Button--'] + [class*='Button--'] {
|
|
@@ -1378,26 +1396,37 @@ button.Link {
|
|
|
1378
1396
|
border: 2px solid var(--accent-light);
|
|
1379
1397
|
}
|
|
1380
1398
|
|
|
1399
|
+
.cauldron--theme-dark .Button--tertiary {
|
|
1400
|
+
color: var(--accent-light);
|
|
1401
|
+
}
|
|
1402
|
+
|
|
1403
|
+
.cauldron--theme-dark .Button--tertiary:is(:hover, :active, :focus) {
|
|
1404
|
+
border: 2px solid var(--accent-light);
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
.cauldron--theme-dark .Button--tertiary:not(:hover, :focus) {
|
|
1408
|
+
color: #fff;
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1381
1411
|
.cauldron--theme-dark .Button--error {
|
|
1382
1412
|
background-color: var(--accent-medium);
|
|
1383
|
-
color:
|
|
1413
|
+
color: #fff;
|
|
1384
1414
|
border: 2px solid var(--accent-danger);
|
|
1385
1415
|
}
|
|
1386
1416
|
|
|
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] {
|
|
1417
|
+
.cauldron--theme-dark .Button--primary:is([disabled], [aria-disabled='true']),
|
|
1418
|
+
.cauldron--theme-dark .Button--secondary:is([disabled], [aria-disabled='true']),
|
|
1419
|
+
.cauldron--theme-dark .Button--error:is([disabled], [aria-disabled='true']),
|
|
1420
|
+
.cauldron--theme-dark .Button--tag:is([disabled], [aria-disabled='true']) {
|
|
1394
1421
|
color: var(--dark-workspace-color);
|
|
1395
1422
|
}
|
|
1396
1423
|
|
|
1397
1424
|
.cauldron--theme-dark
|
|
1398
1425
|
.Button--primary:not([disabled]):not([aria-disabled='true']):active,
|
|
1399
1426
|
.cauldron--theme-dark
|
|
1400
|
-
.Button--secondary:not([disabled]):not([aria-disabled='true']):active
|
|
1427
|
+
.Button--secondary:not([disabled]):not([aria-disabled='true']):active,
|
|
1428
|
+
.cauldron--theme-dark
|
|
1429
|
+
.Button--tertiary:not([disabled]):not([aria-disabled='true']):active {
|
|
1401
1430
|
color: var(--accent-medium);
|
|
1402
1431
|
}
|
|
1403
1432
|
|
|
@@ -1412,7 +1441,7 @@ button.Link {
|
|
|
1412
1441
|
}
|
|
1413
1442
|
|
|
1414
1443
|
.cauldron--theme-dark button.Link:hover {
|
|
1415
|
-
color:
|
|
1444
|
+
color: #fff;
|
|
1416
1445
|
}
|
|
1417
1446
|
|
|
1418
1447
|
.cauldron--theme-dark
|
|
@@ -1422,7 +1451,9 @@ button.Link {
|
|
|
1422
1451
|
}
|
|
1423
1452
|
|
|
1424
1453
|
.cauldron--theme-dark
|
|
1425
|
-
.Button--secondary:not([disabled]):not([aria-disabled='true']):hover:before
|
|
1454
|
+
.Button--secondary:not([disabled]):not([aria-disabled='true']):hover:before,
|
|
1455
|
+
.cauldron--theme-dark
|
|
1456
|
+
.Button--tertiary:not([disabled]):not([aria-disabled='true']):hover:before {
|
|
1426
1457
|
box-shadow: 0 0 0 1px var(--dark-workspace-color),
|
|
1427
1458
|
0 0 0 2px var(--accent-light);
|
|
1428
1459
|
}
|
|
@@ -1439,6 +1470,10 @@ button.Link {
|
|
|
1439
1470
|
0 0 0 2px var(--accent-info);
|
|
1440
1471
|
}
|
|
1441
1472
|
|
|
1473
|
+
.cauldron--theme-dark .Button--tertiary:is([disabled], [aria-disabled='true']) {
|
|
1474
|
+
color: #74818b;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1442
1477
|
:root {
|
|
1443
1478
|
/* Primary */
|
|
1444
1479
|
--icon-button-primary-color: var(--button-text-color-light);
|
|
@@ -1470,6 +1505,8 @@ button.Link {
|
|
|
1470
1505
|
--button-background-color-error-active
|
|
1471
1506
|
);
|
|
1472
1507
|
|
|
1508
|
+
--icon-button-text-color-disabled: var(--button-text-color-disabled);
|
|
1509
|
+
|
|
1473
1510
|
/* Deprecated variables */
|
|
1474
1511
|
--icon-button-content-color-light-disabled: #ccc;
|
|
1475
1512
|
--icon-button-background-color-light: #dadada;
|
|
@@ -1545,11 +1582,16 @@ a.IconButton {
|
|
|
1545
1582
|
|
|
1546
1583
|
.IconButton--secondary:is([aria-disabled='true'], [disabled]),
|
|
1547
1584
|
.IconButton--secondary:is([aria-disabled='true'], [disabled]):active {
|
|
1548
|
-
color: var(--disabled);
|
|
1585
|
+
color: var(--icon-button-text-color-disabled);
|
|
1549
1586
|
background-color: var(--button-background-color-secondary-disabled);
|
|
1550
1587
|
cursor: default;
|
|
1551
1588
|
}
|
|
1552
1589
|
|
|
1590
|
+
.IconButton--tertiary:is([aria-disabled='true'], [disabled]),
|
|
1591
|
+
.IconButton--tertiary:is([aria-disabled='true'], [disabled]):active {
|
|
1592
|
+
color: var(--icon-button-text-color-disabled);
|
|
1593
|
+
}
|
|
1594
|
+
|
|
1553
1595
|
.IconButton--primary:is([aria-disabled='true'], [disabled]),
|
|
1554
1596
|
.IconButton--primary:is([aria-disabled='true'], [disabled]):active {
|
|
1555
1597
|
background-color: var(--button-background-color-primary-disabled);
|
|
@@ -1580,19 +1622,32 @@ a.IconButton {
|
|
|
1580
1622
|
background-color: var(--icon-button-background-color-primary-active);
|
|
1581
1623
|
}
|
|
1582
1624
|
|
|
1583
|
-
.IconButton--secondary
|
|
1625
|
+
.IconButton--secondary,
|
|
1626
|
+
.IconButton--tertiary,
|
|
1627
|
+
.IconButton--tertiary:is(:active) {
|
|
1584
1628
|
border: 1px solid var(--icon-button-border-color-secondary);
|
|
1585
1629
|
background-color: var(--icon-button-background-color-secondary);
|
|
1586
1630
|
color: var(--icon-button-secondary-color);
|
|
1587
1631
|
}
|
|
1588
1632
|
|
|
1589
|
-
.IconButton--secondary:not([disabled]):not(
|
|
1590
|
-
|
|
1591
|
-
|
|
1633
|
+
.IconButton--secondary:not([disabled]):not([aria-disabled='true']):hover:before,
|
|
1634
|
+
.IconButton--tertiary:not([disabled]):not([aria-disabled='true']):is(
|
|
1635
|
+
:hover
|
|
1636
|
+
):before {
|
|
1592
1637
|
box-shadow: 0 0 0 1px var(--icon-button-outline-color-secondary);
|
|
1593
1638
|
}
|
|
1594
1639
|
|
|
1595
|
-
.IconButton--
|
|
1640
|
+
.IconButton--tertiary:is(
|
|
1641
|
+
:not(:hover, :focus, :active),
|
|
1642
|
+
[disabled],
|
|
1643
|
+
[aria-disabled='true']
|
|
1644
|
+
) {
|
|
1645
|
+
border-color: transparent;
|
|
1646
|
+
background-color: transparent;
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.IconButton--secondary:active,
|
|
1650
|
+
.IconButton--tertiary:active {
|
|
1596
1651
|
background-color: var(--icon-button-background-color-secondary-active);
|
|
1597
1652
|
}
|
|
1598
1653
|
|
|
@@ -1644,7 +1699,8 @@ a.IconButton {
|
|
|
1644
1699
|
border: 2px solid var(--icon-button-border-color-primary);
|
|
1645
1700
|
}
|
|
1646
1701
|
|
|
1647
|
-
.cauldron--theme-dark .IconButton--secondary
|
|
1702
|
+
.cauldron--theme-dark .IconButton--secondary,
|
|
1703
|
+
.cauldron--theme-dark .IconButton--tertiary {
|
|
1648
1704
|
border-width: 2px;
|
|
1649
1705
|
}
|
|
1650
1706
|
|
|
@@ -1663,6 +1719,7 @@ a.IconButton {
|
|
|
1663
1719
|
|
|
1664
1720
|
.cauldron--theme-dark .IconButton--primary:active,
|
|
1665
1721
|
.cauldron--theme-dark .IconButton--secondary:active,
|
|
1722
|
+
.cauldron--theme-dark .IconButton--tertiary:active,
|
|
1666
1723
|
.cauldron--theme-dark .IconButton--error:active {
|
|
1667
1724
|
color: var(--icon-button-active-color);
|
|
1668
1725
|
}
|
|
@@ -1683,6 +1740,10 @@ a.IconButton {
|
|
|
1683
1740
|
.cauldron--theme-dark
|
|
1684
1741
|
.IconButton--secondary:not([disabled]):not(
|
|
1685
1742
|
[aria-disabled='true']
|
|
1743
|
+
):hover:before,
|
|
1744
|
+
.cauldron--theme-dark
|
|
1745
|
+
.IconButton--tertiary:not([disabled]):not(
|
|
1746
|
+
[aria-disabled='true']
|
|
1686
1747
|
):hover:before {
|
|
1687
1748
|
box-shadow: 0 0 0 1px var(--icon-button-outline-shadow-color),
|
|
1688
1749
|
0 0 0 2px var(--icon-button-outline-color-secondary);
|
|
@@ -1699,6 +1760,11 @@ a.IconButton {
|
|
|
1699
1760
|
0 0 0 4px var(--button-focus-ring-color, --focus);
|
|
1700
1761
|
}
|
|
1701
1762
|
|
|
1763
|
+
.cauldron--theme-dark
|
|
1764
|
+
.IconButton--tertiary:is([disabled], [aria-disabled='true']) {
|
|
1765
|
+
color: #74818b;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1702
1768
|
:root {
|
|
1703
1769
|
--dialog-background-color: #fff;
|
|
1704
1770
|
--dialog-border-color: var(--gray-40);
|
|
@@ -4474,17 +4540,20 @@ fieldset.Panel {
|
|
|
4474
4540
|
}
|
|
4475
4541
|
|
|
4476
4542
|
.Breadcrumb__Link {
|
|
4477
|
-
font-weight: 400;
|
|
4478
4543
|
padding: 0;
|
|
4479
4544
|
display: inline;
|
|
4480
4545
|
}
|
|
4481
4546
|
|
|
4482
4547
|
.Breadcrumb__Item {
|
|
4483
|
-
font-weight:
|
|
4548
|
+
font-weight: var(--font-weight-medium);
|
|
4484
4549
|
color: var(--link-text-color);
|
|
4485
4550
|
display: inline;
|
|
4486
4551
|
}
|
|
4487
4552
|
|
|
4553
|
+
.Breadcrumb__Item:last-child {
|
|
4554
|
+
font-weight: var(--font-weight-normal);
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4488
4557
|
:root {
|
|
4489
4558
|
--two-column-panel-border-color: var(--gray-40);
|
|
4490
4559
|
--two-column-panel-background-color: #fff;
|
|
@@ -4873,7 +4942,7 @@ button.Accordion__trigger {
|
|
|
4873
4942
|
--notice-background-color: var(--notice-info-color);
|
|
4874
4943
|
--notice-border-color: var(--accent-dark);
|
|
4875
4944
|
--notice-link-hover-color: var(--accent-medium);
|
|
4876
|
-
--notice-icon-size:
|
|
4945
|
+
--notice-icon-size: 1rem;
|
|
4877
4946
|
}
|
|
4878
4947
|
|
|
4879
4948
|
.Notice--info {
|
|
@@ -4889,20 +4958,35 @@ button.Accordion__trigger {
|
|
|
4889
4958
|
}
|
|
4890
4959
|
|
|
4891
4960
|
.Notice {
|
|
4892
|
-
display:
|
|
4893
|
-
|
|
4961
|
+
display: grid;
|
|
4962
|
+
grid-template-columns: auto 1fr;
|
|
4963
|
+
gap: var(--space-small);
|
|
4964
|
+
padding: var(--space-large);
|
|
4965
|
+
align-items: start;
|
|
4966
|
+
border-radius: 4px;
|
|
4894
4967
|
border: 1px solid var(--notice-border-color);
|
|
4895
4968
|
background-color: var(--notice-background-color);
|
|
4896
4969
|
color: var(--notice-text-color);
|
|
4897
|
-
|
|
4898
|
-
|
|
4970
|
+
}
|
|
4971
|
+
|
|
4972
|
+
.Notice--condensed {
|
|
4973
|
+
grid-template-columns: 1fr;
|
|
4974
|
+
padding: var(--space-small);
|
|
4975
|
+
gap: var(--space-smallest);
|
|
4976
|
+
}
|
|
4977
|
+
|
|
4978
|
+
.Notice__content {
|
|
4979
|
+
grid-column: 2;
|
|
4980
|
+
}
|
|
4981
|
+
|
|
4982
|
+
.Notice--condensed .Notice__content {
|
|
4983
|
+
grid-column: 1;
|
|
4899
4984
|
}
|
|
4900
4985
|
|
|
4901
4986
|
.Notice .Notice__title,
|
|
4902
4987
|
.Notice .Notice__title > :is(h1, h2, h3, h4, h5, h6) {
|
|
4903
4988
|
display: flex;
|
|
4904
4989
|
align-items: flex-start;
|
|
4905
|
-
font-size: var(--text-size-small);
|
|
4906
4990
|
font-weight: var(--notice-title-font-weight);
|
|
4907
4991
|
margin: 0;
|
|
4908
4992
|
padding: 0;
|
|
@@ -4910,7 +4994,7 @@ button.Accordion__trigger {
|
|
|
4910
4994
|
color: var(--notice-title-text-color);
|
|
4911
4995
|
}
|
|
4912
4996
|
|
|
4913
|
-
.Notice .
|
|
4997
|
+
.Notice .Notice__content {
|
|
4914
4998
|
margin-top: var(--space-smallest);
|
|
4915
4999
|
}
|
|
4916
5000
|
|
|
@@ -4929,7 +5013,6 @@ button.Accordion__trigger {
|
|
|
4929
5013
|
.Notice button.Link,
|
|
4930
5014
|
.Notice a.Link {
|
|
4931
5015
|
color: var(--accent-dark);
|
|
4932
|
-
font-size: var(--text-size-small);
|
|
4933
5016
|
font-weight: var(--font-weight-light);
|
|
4934
5017
|
text-decoration: underline;
|
|
4935
5018
|
}
|
|
@@ -4950,6 +5033,15 @@ button.Accordion__trigger {
|
|
|
4950
5033
|
margin-bottom: var(--space-smallest);
|
|
4951
5034
|
}
|
|
4952
5035
|
|
|
5036
|
+
.Notice ul {
|
|
5037
|
+
margin: var(--space-smallest) 0;
|
|
5038
|
+
padding-left: var(--space-small);
|
|
5039
|
+
}
|
|
5040
|
+
|
|
5041
|
+
.Notice li {
|
|
5042
|
+
margin-bottom: var(--space-smallest);
|
|
5043
|
+
}
|
|
5044
|
+
|
|
4953
5045
|
:root {
|
|
4954
5046
|
--combobox-listbox-border-color: var(--gray-40);
|
|
4955
5047
|
--combobox-listbox-background-color: #fff;
|
|
@@ -5393,3 +5485,87 @@ button.Accordion__trigger {
|
|
|
5393
5485
|
-webkit-box-orient: vertical;
|
|
5394
5486
|
white-space: normal;
|
|
5395
5487
|
}
|
|
5488
|
+
|
|
5489
|
+
:root {
|
|
5490
|
+
--badge-text-color: var(--gray-90);
|
|
5491
|
+
--badge-background-color: transparent;
|
|
5492
|
+
--badge-border-color: var(--gray-30);
|
|
5493
|
+
|
|
5494
|
+
--badge-height: var(--button-height);
|
|
5495
|
+
--badge-small-height: 1.5rem;
|
|
5496
|
+
|
|
5497
|
+
--badge-font-size: 1rem;
|
|
5498
|
+
}
|
|
5499
|
+
|
|
5500
|
+
.cauldron--theme-dark {
|
|
5501
|
+
--badge-text-color: var(--white);
|
|
5502
|
+
--badge-background-color: var(--accent-medium);
|
|
5503
|
+
--badge-border-color: var(--stroke-dark);
|
|
5504
|
+
}
|
|
5505
|
+
|
|
5506
|
+
.Badge {
|
|
5507
|
+
color: var(--badge-text-color);
|
|
5508
|
+
background-color: var(--badge-background-color);
|
|
5509
|
+
border: 1px solid var(--badge-border-color);
|
|
5510
|
+
display: inline-flex;
|
|
5511
|
+
justify-content: center;
|
|
5512
|
+
align-items: center;
|
|
5513
|
+
padding: 0 var(--space-small) 0 var(--space-smaller);
|
|
5514
|
+
min-height: var(--badge-height);
|
|
5515
|
+
border-radius: var(--badge-height);
|
|
5516
|
+
font-size: var(--badge-font-size);
|
|
5517
|
+
}
|
|
5518
|
+
|
|
5519
|
+
.Badge--small {
|
|
5520
|
+
border-radius: var(--badge-small-height);
|
|
5521
|
+
min-height: var(--badge-small-height);
|
|
5522
|
+
}
|
|
5523
|
+
|
|
5524
|
+
.Badge__Label {
|
|
5525
|
+
margin-right: 3px;
|
|
5526
|
+
font-weight: var(--font-weight-medium);
|
|
5527
|
+
}
|
|
5528
|
+
|
|
5529
|
+
.Badge .Icon {
|
|
5530
|
+
margin: 0 var(--space-half) 0 -4px;
|
|
5531
|
+
}
|
|
5532
|
+
|
|
5533
|
+
:root {
|
|
5534
|
+
--impact-badge-critical-background-color: var(--issue-critical);
|
|
5535
|
+
--impact-badge-critical-border-color: var(--accent-error-disabled);
|
|
5536
|
+
|
|
5537
|
+
--impact-badge-serious-background-color: var(--issue-serious);
|
|
5538
|
+
--impact-badge-serious-border-color: var(--accent-warning);
|
|
5539
|
+
|
|
5540
|
+
--impact-badge-moderate-background-color: var(--issue-moderate);
|
|
5541
|
+
--impact-badge-moderate-border-color: #eb94ff;
|
|
5542
|
+
|
|
5543
|
+
--impact-badge-minor-background-color: var(--issue-minor);
|
|
5544
|
+
--impact-badge-minor-border-color: var(--gray-30);
|
|
5545
|
+
|
|
5546
|
+
--impact-badge-text-color: var(--gray-90);
|
|
5547
|
+
}
|
|
5548
|
+
|
|
5549
|
+
.ImpactBadge {
|
|
5550
|
+
--badge-text-color: var(--impact-badge-text-color);
|
|
5551
|
+
}
|
|
5552
|
+
|
|
5553
|
+
.ImpactBadge--critical {
|
|
5554
|
+
--badge-background-color: var(--impact-badge-critical-background-color);
|
|
5555
|
+
--badge-border-color: var(--impact-badge-critical-border-color);
|
|
5556
|
+
}
|
|
5557
|
+
|
|
5558
|
+
.ImpactBadge--serious {
|
|
5559
|
+
--badge-background-color: var(--impact-badge-serious-background-color);
|
|
5560
|
+
--badge-border-color: var(--impact-badge-serious-border-color);
|
|
5561
|
+
}
|
|
5562
|
+
|
|
5563
|
+
.ImpactBadge--moderate {
|
|
5564
|
+
--badge-background-color: var(--impact-badge-moderate-background-color);
|
|
5565
|
+
--badge-border-color: var(--impact-badge-moderate-border-color);
|
|
5566
|
+
}
|
|
5567
|
+
|
|
5568
|
+
.ImpactBadge--minor {
|
|
5569
|
+
--badge-background-color: var(--impact-badge-minor-background-color);
|
|
5570
|
+
--badge-border-color: var(--impact-badge-minor-border-color);
|
|
5571
|
+
}
|
package/package.json
CHANGED