@stackoverflow/stacks 1.9.4 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -3
- package/dist/css/stacks.css +89 -107
- package/dist/css/stacks.min.css +1 -1
- package/dist/js/stacks.js +33 -69
- package/lib/atomic/border.less +3 -3
- package/lib/atomic/misc.less +4 -4
- package/lib/atomic/typography.less +1 -1
- package/lib/base/body.less +1 -1
- package/lib/base/reset-normalize.less +3 -3
- package/lib/components/anchor/anchor.a11y.test.ts +42 -0
- package/lib/components/anchor/anchor.less +5 -2
- package/lib/components/anchor/anchor.visual.test.ts +53 -0
- package/lib/components/avatar/avatar.less +1 -1
- package/lib/components/banner/banner.less +10 -17
- package/lib/components/block-link/block-link.a11y.test.ts +7 -6
- package/lib/components/block-link/block-link.less +1 -1
- package/lib/components/block-link/block-link.visual.test.ts +7 -6
- package/lib/components/button/button.less +31 -46
- package/lib/components/card/card.visual.test.ts +7 -6
- package/lib/components/input-fill/input-fill.less +2 -2
- package/lib/components/input-icon/input-icon.less +1 -1
- package/lib/components/input_textarea/input_textarea.less +2 -2
- package/lib/components/link/link.a11y.test.ts +36 -0
- package/lib/components/link/link.less +1 -0
- package/lib/components/link/link.visual.test.ts +32 -0
- package/lib/components/navigation/navigation.less +1 -1
- package/lib/components/notice/notice.less +1 -1
- package/lib/components/page-title/page-title.less +1 -1
- package/lib/components/post-summary/post-summary.less +5 -1
- package/lib/components/select/select.less +2 -2
- package/lib/components/sidebar-widget/sidebar-widget.less +3 -3
- package/lib/components/spinner/spinner.less +1 -1
- package/lib/components/table/table.less +3 -3
- package/lib/components/toast/toast.test.ts +24 -23
- package/lib/components/topbar/topbar.less +6 -6
- package/lib/exports/constants-colors.less +19 -31
- package/lib/exports/constants-helpers.less +3 -3
- package/lib/exports/constants-type.less +5 -3
- package/package.json +28 -28
package/README.md
CHANGED
|
@@ -89,9 +89,10 @@ npm run test:unit:watch
|
|
|
89
89
|
|
|
90
90
|
### Visual Regression Tests
|
|
91
91
|
|
|
92
|
-
**
|
|
93
|
-
|
|
94
|
-
|
|
92
|
+
**Prerequisites:**
|
|
93
|
+
- `git lfs` ([installation docs](https://docs.github.com/en/repositories/working-with-files/managing-large-files/installing-git-large-file-storage))
|
|
94
|
+
- `docker` ([installation docs](https://docs.docker.com/engine/install/))
|
|
95
|
+
- `pwsh` ([Installation docs](https://learn.microsoft.com/en-us/powershell/scripting/install/installing-powershell?view=powershell-7.3))
|
|
95
96
|
|
|
96
97
|
This [Web Test Runner plugin](https://www.npmjs.com/package/@web/test-runner-visual-regression) is used to run visual regression tests. [DOM Testing Library](https://testing-library.com/docs/dom-testing-library/intro).
|
|
97
98
|
Visual regression tests end with this suffix `*.visual.test.ts`.
|
package/dist/css/stacks.css
CHANGED
|
@@ -58,7 +58,7 @@ main {
|
|
|
58
58
|
* Add the correct margin in IE 8.
|
|
59
59
|
*/
|
|
60
60
|
figure {
|
|
61
|
-
margin: 1em
|
|
61
|
+
margin: 1em calc(var(--su-static32) + var(--su-static8));
|
|
62
62
|
}
|
|
63
63
|
/**
|
|
64
64
|
* 1. Add the correct box sizing in Firefox.
|
|
@@ -264,7 +264,7 @@ button:-moz-focusring,
|
|
|
264
264
|
[type="button"]:-moz-focusring,
|
|
265
265
|
[type="reset"]:-moz-focusring,
|
|
266
266
|
[type="submit"]:-moz-focusring {
|
|
267
|
-
outline:
|
|
267
|
+
outline: var(--su-static1) dotted ButtonText;
|
|
268
268
|
}
|
|
269
269
|
/**
|
|
270
270
|
* Correct the padding in Firefox.
|
|
@@ -333,8 +333,7 @@ textarea {
|
|
|
333
333
|
[type="search"] {
|
|
334
334
|
-webkit-appearance: textfield;
|
|
335
335
|
/* 1 */
|
|
336
|
-
outline-offset: -
|
|
337
|
-
/* 2 */
|
|
336
|
+
outline-offset: calc(var(--su-static2) * -1);
|
|
338
337
|
}
|
|
339
338
|
/**
|
|
340
339
|
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
|
|
@@ -443,6 +442,9 @@ body.theme-highcontrast .s-activity-indicator {
|
|
|
443
442
|
--_ai-bg: var(--yellow-600);
|
|
444
443
|
--_ai-focus-ring: var(--focus-ring-warning);
|
|
445
444
|
}
|
|
445
|
+
.s-anchors {
|
|
446
|
+
--_an-a-fc-visited: var(--_an-a-fc);
|
|
447
|
+
}
|
|
446
448
|
.s-anchors.s-anchors__underlined a:not(.s-link),
|
|
447
449
|
.s-anchors.s-anchors__underlined .s-btn.s-btn__link {
|
|
448
450
|
text-decoration: underline;
|
|
@@ -454,6 +456,7 @@ body.theme-highcontrast .s-activity-indicator {
|
|
|
454
456
|
.s-anchors.s-anchors__default {
|
|
455
457
|
--_an-a-fc: var(--theme-link-color);
|
|
456
458
|
--_an-a-fc-hover: var(--theme-link-color-hover);
|
|
459
|
+
--_an-a-fc-visited: var(--theme-link-color-visited);
|
|
457
460
|
}
|
|
458
461
|
.s-anchors.s-anchors__grayscale {
|
|
459
462
|
--_an-a-fc: var(--black-700);
|
|
@@ -467,6 +470,18 @@ body.theme-highcontrast .s-activity-indicator {
|
|
|
467
470
|
--_an-a-fc: var(--black-500);
|
|
468
471
|
--_an-a-fc-hover: var(--black-400);
|
|
469
472
|
}
|
|
473
|
+
.s-anchors.s-anchors__danger a:not(.s-link),
|
|
474
|
+
.s-anchors.s-anchors__default a:not(.s-link),
|
|
475
|
+
.s-anchors.s-anchors__grayscale a:not(.s-link),
|
|
476
|
+
.s-anchors.s-anchors__inherit a:not(.s-link),
|
|
477
|
+
.s-anchors.s-anchors__muted a:not(.s-link),
|
|
478
|
+
.s-anchors.s-anchors__danger .s-btn.s-btn__link,
|
|
479
|
+
.s-anchors.s-anchors__default .s-btn.s-btn__link,
|
|
480
|
+
.s-anchors.s-anchors__grayscale .s-btn.s-btn__link,
|
|
481
|
+
.s-anchors.s-anchors__inherit .s-btn.s-btn__link,
|
|
482
|
+
.s-anchors.s-anchors__muted .s-btn.s-btn__link {
|
|
483
|
+
color: var(--_an-a-fc, inherit);
|
|
484
|
+
}
|
|
470
485
|
.s-anchors.s-anchors__danger a:not(.s-link):hover,
|
|
471
486
|
.s-anchors.s-anchors__default a:not(.s-link):hover,
|
|
472
487
|
.s-anchors.s-anchors__grayscale a:not(.s-link):hover,
|
|
@@ -509,16 +524,6 @@ body.theme-highcontrast .s-activity-indicator {
|
|
|
509
524
|
.s-anchors.s-anchors__muted .s-btn.s-btn__link:active:visited {
|
|
510
525
|
color: var(--_an-a-fc-hover);
|
|
511
526
|
}
|
|
512
|
-
.s-anchors.s-anchors__danger a:not(.s-link),
|
|
513
|
-
.s-anchors.s-anchors__default a:not(.s-link),
|
|
514
|
-
.s-anchors.s-anchors__grayscale a:not(.s-link),
|
|
515
|
-
.s-anchors.s-anchors__inherit a:not(.s-link),
|
|
516
|
-
.s-anchors.s-anchors__muted a:not(.s-link),
|
|
517
|
-
.s-anchors.s-anchors__danger .s-btn.s-btn__link,
|
|
518
|
-
.s-anchors.s-anchors__default .s-btn.s-btn__link,
|
|
519
|
-
.s-anchors.s-anchors__grayscale .s-btn.s-btn__link,
|
|
520
|
-
.s-anchors.s-anchors__inherit .s-btn.s-btn__link,
|
|
521
|
-
.s-anchors.s-anchors__muted .s-btn.s-btn__link,
|
|
522
527
|
.s-anchors.s-anchors__danger a:not(.s-link):visited,
|
|
523
528
|
.s-anchors.s-anchors__default a:not(.s-link):visited,
|
|
524
529
|
.s-anchors.s-anchors__grayscale a:not(.s-link):visited,
|
|
@@ -529,7 +534,7 @@ body.theme-highcontrast .s-activity-indicator {
|
|
|
529
534
|
.s-anchors.s-anchors__grayscale .s-btn.s-btn__link:visited,
|
|
530
535
|
.s-anchors.s-anchors__inherit .s-btn.s-btn__link:visited,
|
|
531
536
|
.s-anchors.s-anchors__muted .s-btn.s-btn__link:visited {
|
|
532
|
-
color: var(--_an-a-fc, inherit);
|
|
537
|
+
color: var(--_an-a-fc-visited, inherit);
|
|
533
538
|
}
|
|
534
539
|
.s-avatar {
|
|
535
540
|
--_av-size: var(--su-static16);
|
|
@@ -549,7 +554,7 @@ body.theme-highcontrast .s-activity-indicator {
|
|
|
549
554
|
}
|
|
550
555
|
body.theme-highcontrast .s-avatar {
|
|
551
556
|
background-color: var(--black);
|
|
552
|
-
box-shadow: 0 0 0
|
|
557
|
+
box-shadow: 0 0 0 var(--su-static1) var(--black);
|
|
553
558
|
color: var(--white);
|
|
554
559
|
}
|
|
555
560
|
body.theme-highcontrast .s-avatar .s-avatar--letter {
|
|
@@ -854,12 +859,12 @@ a.s-badge:hover {
|
|
|
854
859
|
color: var(--_no-fc);
|
|
855
860
|
border-style: solid;
|
|
856
861
|
font-size: var(--fs-body1);
|
|
857
|
-
border-width: var(--su-static1)
|
|
862
|
+
border-width: 0 0 var(--su-static1);
|
|
858
863
|
inset: 0 0 auto 0;
|
|
859
864
|
padding: var(--su12);
|
|
860
865
|
position: fixed;
|
|
861
|
-
-webkit-transform: translate3d(0, var(--_no-x-offset), 0);
|
|
862
|
-
transform: translate3d(0, var(--_no-x-offset), 0);
|
|
866
|
+
-webkit-transform: translate3d(0, calc(var(--theme-topbar-height) * var(--_no-x-offset)), 0);
|
|
867
|
+
transform: translate3d(0, calc(var(--theme-topbar-height) * var(--_no-x-offset)), 0);
|
|
863
868
|
width: 100%;
|
|
864
869
|
z-index: calc(var(--zi-navigation-fixed) - 1);
|
|
865
870
|
}
|
|
@@ -1060,16 +1065,17 @@ body.theme-highcontrast .s-banner__warning.s-banner__important {
|
|
|
1060
1065
|
background: var(--_no-btn-bg-focus);
|
|
1061
1066
|
}
|
|
1062
1067
|
.s-banner[aria-hidden="true"] {
|
|
1063
|
-
--_no-x-offset:
|
|
1068
|
+
--_no-x-offset: -1;
|
|
1064
1069
|
opacity: 0;
|
|
1065
1070
|
visibility: hidden;
|
|
1066
1071
|
}
|
|
1067
1072
|
.s-banner[aria-hidden="false"] {
|
|
1068
|
-
--_no-x-offset:
|
|
1073
|
+
--_no-x-offset: 1;
|
|
1069
1074
|
opacity: 1;
|
|
1070
1075
|
visibility: visible;
|
|
1071
1076
|
}
|
|
1072
|
-
.s-banner.is-pinned {
|
|
1077
|
+
.s-banner[aria-hidden="false"].is-pinned {
|
|
1078
|
+
--_no-x-offset: 0;
|
|
1073
1079
|
z-index: calc(var(--zi-navigation-fixed) + 1);
|
|
1074
1080
|
}
|
|
1075
1081
|
.s-banner__body-pt {
|
|
@@ -1161,7 +1167,7 @@ a.s-block-linka.s-block-link__right.is-selected,
|
|
|
1161
1167
|
a.s-block-link.s-block-link__right.is-selected,
|
|
1162
1168
|
.s-block-linka.s-block-link__right.is-selected,
|
|
1163
1169
|
.s-block-link.s-block-link__right.is-selected {
|
|
1164
|
-
--_li-block-bs-offset-x: -
|
|
1170
|
+
--_li-block-bs-offset-x: calc(var(--su-static1) - var(--su-static4));
|
|
1165
1171
|
}
|
|
1166
1172
|
a.s-block-linka.s-block-link__danger,
|
|
1167
1173
|
a.s-block-link.s-block-link__danger,
|
|
@@ -1231,9 +1237,7 @@ body.theme-highcontrast .s-breadcrumbs .s-breadcrumbs--divider {
|
|
|
1231
1237
|
.s-btn {
|
|
1232
1238
|
--_bu-baw: var(--su-static1);
|
|
1233
1239
|
--_bu-bc: transparent;
|
|
1234
|
-
--_bu-
|
|
1235
|
-
--_bu-br: var(--br-sm);
|
|
1236
|
-
--_bu-bs: none;
|
|
1240
|
+
--_bu-br: var(--br-md);
|
|
1237
1241
|
--_bu-fc: var(--theme-button-color);
|
|
1238
1242
|
--_bu-focus-ring: 0 0 0 var(--su-static4) var(--focus-ring);
|
|
1239
1243
|
--_bu-fs: var(--fs-body1);
|
|
@@ -1245,14 +1249,13 @@ body.theme-highcontrast .s-breadcrumbs .s-breadcrumbs--divider {
|
|
|
1245
1249
|
--_bu-fc-active: var(--theme-button-hover-color);
|
|
1246
1250
|
--_bu-fc-hover: var(--theme-button-hover-color);
|
|
1247
1251
|
--_bu-fc-selected: var(--theme-button-selected-color);
|
|
1248
|
-
--_bu-filled-bc:
|
|
1249
|
-
--_bu-filled-bc-active:
|
|
1252
|
+
--_bu-filled-bc: transparent;
|
|
1253
|
+
--_bu-filled-bc-active: transparent;
|
|
1250
1254
|
--_bu-filled-bg-hover: var(--theme-button-filled-hover-background-color);
|
|
1251
|
-
--_bu-filled-bc-selected:
|
|
1255
|
+
--_bu-filled-bc-selected: transparent;
|
|
1252
1256
|
--_bu-filled-bg: var(--theme-button-filled-background-color);
|
|
1253
1257
|
--_bu-filled-bg-active: var(--theme-button-filled-active-background-color);
|
|
1254
1258
|
--_bu-filled-bg-selected: var(--theme-button-filled-selected-background-color);
|
|
1255
|
-
--_bu-filled-bs: inset 0 var(--su-static1) 0 0 hsla(0, 0%, 100%, 0.7);
|
|
1256
1259
|
--_bu-filled-fc: var(--theme-button-filled-color);
|
|
1257
1260
|
--_bu-filled-fc-active: var(--theme-button-filled-hover-color);
|
|
1258
1261
|
--_bu-filled-fc-hover: var(--theme-button-filled-hover-color);
|
|
@@ -1266,10 +1269,10 @@ body.theme-highcontrast .s-breadcrumbs .s-breadcrumbs--divider {
|
|
|
1266
1269
|
--_bu-dropdown-bw: var(--su-static4);
|
|
1267
1270
|
--_bu-number-fc: var(--white);
|
|
1268
1271
|
--_bu-number-fc-selected: var(--_bu-number-fc);
|
|
1269
|
-
background-color: var(--_bu-bg);
|
|
1272
|
+
background-color: var(--_bu-bg, inherit);
|
|
1270
1273
|
border: var(--_bu-baw) solid var(--_bu-bc);
|
|
1271
1274
|
border-radius: var(--_bu-br);
|
|
1272
|
-
box-shadow:
|
|
1275
|
+
box-shadow: none;
|
|
1273
1276
|
color: var(--_bu-fc);
|
|
1274
1277
|
font-size: var(--_bu-fs);
|
|
1275
1278
|
padding: var(--_bu-p);
|
|
@@ -1284,18 +1287,6 @@ body.theme-highcontrast .s-breadcrumbs .s-breadcrumbs--divider {
|
|
|
1284
1287
|
text-decoration: none;
|
|
1285
1288
|
user-select: none;
|
|
1286
1289
|
}
|
|
1287
|
-
@media (prefers-color-scheme: dark) {
|
|
1288
|
-
body.theme-system .s-btn {
|
|
1289
|
-
--_bu-bs: none;
|
|
1290
|
-
--_bu-filled-bs: var(--_bu-bs);
|
|
1291
|
-
}
|
|
1292
|
-
}
|
|
1293
|
-
body.theme-dark .s-btn,
|
|
1294
|
-
.theme-dark__forced .s-btn,
|
|
1295
|
-
body.theme-system .theme-dark__forced .s-btn {
|
|
1296
|
-
--_bu-bs: none;
|
|
1297
|
-
--_bu-filled-bs: var(--_bu-bs);
|
|
1298
|
-
}
|
|
1299
1290
|
body.theme-highcontrast .s-btn {
|
|
1300
1291
|
--_bu-bc: currentColor;
|
|
1301
1292
|
--_bu-filled-bc: var(--_bu-bc);
|
|
@@ -1310,8 +1301,6 @@ body.theme-highcontrast .s-btn:not(.s-btn__primary):not(.s-btn__muted):not(.s-bt
|
|
|
1310
1301
|
fieldset[disabled] .s-btn,
|
|
1311
1302
|
.s-btn[disabled],
|
|
1312
1303
|
.s-btn[aria-disabled="true"] {
|
|
1313
|
-
--_bu-bs: none !important;
|
|
1314
|
-
--_bu-filled-bs: var(--_bu-bs);
|
|
1315
1304
|
opacity: var(--_o-disabled-static);
|
|
1316
1305
|
pointer-events: none;
|
|
1317
1306
|
text-decoration: none;
|
|
@@ -1328,7 +1317,7 @@ button[type="reset"] .s-btn {
|
|
|
1328
1317
|
padding-left: 2.2em;
|
|
1329
1318
|
}
|
|
1330
1319
|
.s-btn.is-loading .svg-icon:first-child {
|
|
1331
|
-
margin-left: -
|
|
1320
|
+
margin-left: calc((var(--su-static24) - var(--su-static1)) * -1);
|
|
1332
1321
|
opacity: 0;
|
|
1333
1322
|
}
|
|
1334
1323
|
.s-btn.is-selected,
|
|
@@ -1360,19 +1349,14 @@ body.theme-highcontrast .s-btn-group.s-btn-group--radio .s-btn--radio:checked +
|
|
|
1360
1349
|
--_bu-outlined-fc-selected: var(--_bu-filled-fc-selected);
|
|
1361
1350
|
--_bu-number-fc-selected: var(--_bu-filled-bg-selected);
|
|
1362
1351
|
}
|
|
1363
|
-
.s-btn.is-selected:not(:focus),
|
|
1364
|
-
.s-btn-group.s-btn-group--radio .s-btn--radio:checked:not(:focus) + .s-btn {
|
|
1365
|
-
box-shadow: none;
|
|
1366
|
-
}
|
|
1367
1352
|
.s-btn.s-btn__filled {
|
|
1368
1353
|
border-color: var(--_bu-filled-bc);
|
|
1369
1354
|
background-color: var(--_bu-filled-bg);
|
|
1370
|
-
box-shadow: var(--_bu-filled-bs);
|
|
1371
1355
|
color: var(--_bu-filled-fc);
|
|
1372
1356
|
}
|
|
1373
1357
|
.s-btn.s-btn__outlined {
|
|
1374
1358
|
border-color: var(--_bu-outlined-bc);
|
|
1375
|
-
background-color: var(--_bu-outlined-bg);
|
|
1359
|
+
background-color: var(--_bu-outlined-bg, inherit);
|
|
1376
1360
|
}
|
|
1377
1361
|
.s-btn.s-btn__link:focus,
|
|
1378
1362
|
.s-btn.s-btn__unset:focus,
|
|
@@ -1383,8 +1367,6 @@ body.theme-highcontrast .s-btn-group.s-btn-group--radio .s-btn--radio:checked +
|
|
|
1383
1367
|
.s-btn.s-btn__link {
|
|
1384
1368
|
--_bu-baw: 0;
|
|
1385
1369
|
--_bu-br: 0;
|
|
1386
|
-
--_bu-bs: none;
|
|
1387
|
-
--_bu-filled-bs: var(--_bu-bs);
|
|
1388
1370
|
--_bu-focus-ring: none;
|
|
1389
1371
|
--_bu-p: 0;
|
|
1390
1372
|
--_li-fc: var(--theme-link-color);
|
|
@@ -1453,6 +1435,7 @@ body.theme-highcontrast .s-btn.s-btn__link {
|
|
|
1453
1435
|
text-decoration: underline !important;
|
|
1454
1436
|
}
|
|
1455
1437
|
.s-btn.s-btn__link.s-link__visited {
|
|
1438
|
+
--_li-fc: var(--theme-link-color-visited);
|
|
1456
1439
|
--_li-fc-hover: var(--theme-link-color-hover);
|
|
1457
1440
|
--_li-fc-visited: var(--theme-link-color-visited);
|
|
1458
1441
|
}
|
|
@@ -1507,8 +1490,6 @@ button.s-btn.s-btn__link:focus {
|
|
|
1507
1490
|
--_bu-baw: 0;
|
|
1508
1491
|
--_bu-bg: none;
|
|
1509
1492
|
--_bu-br: 0;
|
|
1510
|
-
--_bu-bs: none;
|
|
1511
|
-
--_bu-filled-bs: var(--_bu-bs);
|
|
1512
1493
|
--_bu-fc: unset;
|
|
1513
1494
|
--_bu-focus-ring: none;
|
|
1514
1495
|
--_bu-p: 0;
|
|
@@ -1569,7 +1550,6 @@ body.theme-highcontrast .s-btn.s-btn__muted {
|
|
|
1569
1550
|
--_bu-filled-bg-active: var(--red-700);
|
|
1570
1551
|
--_bu-filled-bg-hover: var(--red-600);
|
|
1571
1552
|
--_bu-filled-bg-selected: var(--red-800);
|
|
1572
|
-
--_bu-filled-bs: inset 0 var(--su-static1) 0 0 hsla(0, 0%, 100%, 0.4);
|
|
1573
1553
|
--_bu-filled-fc: var(--white);
|
|
1574
1554
|
--_bu-filled-fc-active: var(--_bu-filled-fc);
|
|
1575
1555
|
--_bu-filled-fc-hover: var(--_bu-filled-fc);
|
|
@@ -1614,9 +1594,9 @@ body.theme-highcontrast.theme-dark .s-btn.s-btn__danger.s-btn__filled {
|
|
|
1614
1594
|
--_bu-bg-active: var(--black-050);
|
|
1615
1595
|
--_bu-bg-hover: var(--black-025);
|
|
1616
1596
|
--_bu-bg-selected: var(--black-075);
|
|
1617
|
-
--_bu-fc: var(--black-
|
|
1597
|
+
--_bu-fc: var(--black-700);
|
|
1618
1598
|
--_bu-fc-active: var(--_bu-fc);
|
|
1619
|
-
--_bu-fc-hover: var(--black-
|
|
1599
|
+
--_bu-fc-hover: var(--black-700);
|
|
1620
1600
|
--_bu-fc-selected: var(--black-700);
|
|
1621
1601
|
--_bu-focus-ring: 0 0 0 var(--su-static4) var(--focus-ring-muted);
|
|
1622
1602
|
--_bu-filled-bc: transparent;
|
|
@@ -1625,13 +1605,12 @@ body.theme-highcontrast.theme-dark .s-btn.s-btn__danger.s-btn__filled {
|
|
|
1625
1605
|
--_bu-filled-bg-active: var(--black-200);
|
|
1626
1606
|
--_bu-filled-bg-hover: var(--black-150);
|
|
1627
1607
|
--_bu-filled-bg-selected: var(--black-350);
|
|
1628
|
-
--_bu-filled-bs: inset 0 var(--su-static1) 0 0 hsla(0, 0%, 100%, 0.4);
|
|
1629
1608
|
--_bu-filled-fc: var(--black-700);
|
|
1630
1609
|
--_bu-filled-fc-active: var(--_bu-filled-fc);
|
|
1631
1610
|
--_bu-filled-fc-hover: var(--_bu-filled-fc);
|
|
1632
1611
|
--_bu-filled-fc-selected: var(--black-800);
|
|
1633
|
-
--_bu-outlined-bc: var(--black-
|
|
1634
|
-
--_bu-outlined-bc-selected: var(--black-
|
|
1612
|
+
--_bu-outlined-bc: var(--black-200);
|
|
1613
|
+
--_bu-outlined-bc-selected: var(--black-200);
|
|
1635
1614
|
--_bu-outlined-bg-selected: var(--_bu-bg-selected);
|
|
1636
1615
|
--_bu-outlined-fc-selected: var(--_bu-fc-selected);
|
|
1637
1616
|
}
|
|
@@ -1652,7 +1631,6 @@ body.theme-highcontrast .s-btn.s-btn__muted.s-btn__filled {
|
|
|
1652
1631
|
--_bu-bg-active: var(--theme-button-primary-active-background-color);
|
|
1653
1632
|
--_bu-bg-hover: var(--theme-button-primary-hover-background-color);
|
|
1654
1633
|
--_bu-bg-selected: var(--theme-button-primary-selected-background-color);
|
|
1655
|
-
--_bu-bs: inset 0 1px 0 0 hsla(0, 0%, 100%, 0.4);
|
|
1656
1634
|
--_bu-fc: var(--theme-button-primary-color);
|
|
1657
1635
|
--_bu-fc-active: var(--theme-button-primary-hover-color);
|
|
1658
1636
|
--_bu-fc-hover: var(--theme-button-primary-hover-color);
|
|
@@ -1753,14 +1731,14 @@ body.theme-highcontrast .s-btn.s-btn__github {
|
|
|
1753
1731
|
.s-btn--radio {
|
|
1754
1732
|
border: 0;
|
|
1755
1733
|
clip-path: inset(50%);
|
|
1756
|
-
clip: rect(
|
|
1757
|
-
height:
|
|
1758
|
-
margin: -
|
|
1734
|
+
clip: rect(var(--su-static1), var(--su-static1), var(--su-static1), var(--su-static1));
|
|
1735
|
+
height: var(--su-static1);
|
|
1736
|
+
margin: calc(var(--su-static1) * -1);
|
|
1759
1737
|
overflow-wrap: normal;
|
|
1760
1738
|
overflow: hidden;
|
|
1761
1739
|
padding: 0;
|
|
1762
1740
|
position: absolute;
|
|
1763
|
-
width:
|
|
1741
|
+
width: var(--su-static1);
|
|
1764
1742
|
}
|
|
1765
1743
|
.s-btn:not(.is-selected):not(.s-btn__link):not(.s-btn__unset):hover,
|
|
1766
1744
|
.s-btn:not(.is-selected):not(.s-btn__link):not(.s-btn__unset):focus {
|
|
@@ -2293,7 +2271,7 @@ pre.s-code-block::-webkit-scrollbar-corner {
|
|
|
2293
2271
|
--_in-bc: var(--bc-darker);
|
|
2294
2272
|
--_in-bc-focus: var(--theme-secondary-300);
|
|
2295
2273
|
--_in-bg: var(--white);
|
|
2296
|
-
--_in-br: var(--br-
|
|
2274
|
+
--_in-br: var(--br-md);
|
|
2297
2275
|
--_in-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring);
|
|
2298
2276
|
--_in-c: unset;
|
|
2299
2277
|
--_in-fc: var(--fc-dark);
|
|
@@ -2418,7 +2396,7 @@ body.theme-highcontrast .has-warning .s-textarea {
|
|
|
2418
2396
|
.s-input.s-textarea__md,
|
|
2419
2397
|
.s-textarea.s-input__md,
|
|
2420
2398
|
.s-textarea.s-textarea__md {
|
|
2421
|
-
--_in-fs:
|
|
2399
|
+
--_in-fs: calc(var(--su-static16) + var(--su-static1));
|
|
2422
2400
|
--_in-py: 0.4em;
|
|
2423
2401
|
}
|
|
2424
2402
|
}
|
|
@@ -2561,18 +2539,18 @@ body.theme-highcontrast .s-input:focus-within {
|
|
|
2561
2539
|
}
|
|
2562
2540
|
.s-input-fill.order-first {
|
|
2563
2541
|
--_if-blw: var(--su-static1);
|
|
2564
|
-
--_if-blr: var(--br-
|
|
2542
|
+
--_if-blr: var(--br-md);
|
|
2565
2543
|
}
|
|
2566
2544
|
.s-input-fill.order-last {
|
|
2567
2545
|
--_if-brw: var(--su-static1);
|
|
2568
|
-
--_if-brr: var(--br-
|
|
2546
|
+
--_if-brr: var(--br-md);
|
|
2569
2547
|
}
|
|
2570
2548
|
.s-input-icon {
|
|
2571
2549
|
--_ii-fc: unset;
|
|
2572
2550
|
--_ii-r: 0.7em;
|
|
2573
2551
|
color: var(--_ii-fc);
|
|
2574
2552
|
right: var(--_ii-r);
|
|
2575
|
-
margin-top: -
|
|
2553
|
+
margin-top: calc((var(--su-static8) + var(--su-static1)) * -1);
|
|
2576
2554
|
pointer-events: none;
|
|
2577
2555
|
position: absolute;
|
|
2578
2556
|
top: 50%;
|
|
@@ -2810,6 +2788,7 @@ a.s-link__underlined,
|
|
|
2810
2788
|
}
|
|
2811
2789
|
a.s-link__visited,
|
|
2812
2790
|
.s-link.s-link__visited {
|
|
2791
|
+
--_li-fc: var(--theme-link-color-visited);
|
|
2813
2792
|
--_li-fc-hover: var(--theme-link-color-hover);
|
|
2814
2793
|
--_li-fc-visited: var(--theme-link-color-visited);
|
|
2815
2794
|
}
|
|
@@ -3251,7 +3230,7 @@ body.theme-highcontrast .s-navigation .s-navigation--item.is-selected {
|
|
|
3251
3230
|
pointer-events: none;
|
|
3252
3231
|
position: absolute;
|
|
3253
3232
|
right: 0.9em;
|
|
3254
|
-
top: calc(50% -
|
|
3233
|
+
top: calc(50% - var(--su-static2));
|
|
3255
3234
|
z-index: var(--zi-active);
|
|
3256
3235
|
}
|
|
3257
3236
|
.s-navigation .s-navigation--item:hover,
|
|
@@ -3288,7 +3267,7 @@ body.theme-highcontrast .s-navigation .s-navigation--item.is-selected {
|
|
|
3288
3267
|
color: var(--_no-fc);
|
|
3289
3268
|
border-style: solid;
|
|
3290
3269
|
font-size: var(--fs-body1);
|
|
3291
|
-
border-radius: var(--br-
|
|
3270
|
+
border-radius: var(--br-md);
|
|
3292
3271
|
border-width: var(--su-static1);
|
|
3293
3272
|
padding: var(--su16);
|
|
3294
3273
|
}
|
|
@@ -3496,7 +3475,7 @@ body.theme-highcontrast .s-notice__warning.s-notice__important {
|
|
|
3496
3475
|
--_pt-breadcrums-mb: var(--su8);
|
|
3497
3476
|
align-items: var(--_pt-ai);
|
|
3498
3477
|
flex-direction: var(--_pt-fd);
|
|
3499
|
-
border-bottom:
|
|
3478
|
+
border-bottom: var(--su-static1) solid var(--bc-medium);
|
|
3500
3479
|
display: flex;
|
|
3501
3480
|
justify-content: space-between;
|
|
3502
3481
|
padding-bottom: var(--su16);
|
|
@@ -4063,7 +4042,7 @@ body.theme-highcontrast .s-post-summary .s-post-summary--answer:before {
|
|
|
4063
4042
|
justify-content: space-between;
|
|
4064
4043
|
row-gap: var(--su8);
|
|
4065
4044
|
}
|
|
4066
|
-
.s-post-summary .s-post-summary--meta > *:not(.s-post-summary--meta-tags) > * {
|
|
4045
|
+
.s-post-summary .s-post-summary--meta > *:not(.s-post-summary--meta-tags):not(.s-user-card) > * {
|
|
4067
4046
|
opacity: var(--_ps-o);
|
|
4068
4047
|
}
|
|
4069
4048
|
.s-post-summary .s-post-summary--meta .s-user-card {
|
|
@@ -4071,6 +4050,9 @@ body.theme-highcontrast .s-post-summary .s-post-summary--answer:before {
|
|
|
4071
4050
|
justify-content: flex-end;
|
|
4072
4051
|
margin-left: auto;
|
|
4073
4052
|
}
|
|
4053
|
+
.s-post-summary .s-post-summary--meta .s-user-card > *:not(.magic-popup) {
|
|
4054
|
+
opacity: var(--_ps-o);
|
|
4055
|
+
}
|
|
4074
4056
|
.s-post-summary .s-post-summary--meta-tags {
|
|
4075
4057
|
display: flex;
|
|
4076
4058
|
flex-wrap: wrap;
|
|
@@ -4896,7 +4878,7 @@ body.theme-highcontrast .s-prose {
|
|
|
4896
4878
|
--_se-select-bc-focus: var(--theme-secondary-300);
|
|
4897
4879
|
--_se-select-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring);
|
|
4898
4880
|
--_se-select-bg: var(--white);
|
|
4899
|
-
--_se-select-br: var(--br-
|
|
4881
|
+
--_se-select-br: var(--br-md);
|
|
4900
4882
|
--_se-select-fc: var(--black);
|
|
4901
4883
|
--_se-select-px: 0.7em;
|
|
4902
4884
|
--_se-select-py: 0.6em;
|
|
@@ -4906,7 +4888,7 @@ body.theme-highcontrast .s-prose {
|
|
|
4906
4888
|
}
|
|
4907
4889
|
@supports (-webkit-overflow-scrolling: touch) {
|
|
4908
4890
|
.s-select {
|
|
4909
|
-
--_se-select-fs:
|
|
4891
|
+
--_se-select-fs: var(--su-static16);
|
|
4910
4892
|
--_se-select-px: 0.55em;
|
|
4911
4893
|
--_se-select-py: 0.4em;
|
|
4912
4894
|
}
|
|
@@ -5214,9 +5196,9 @@ body.theme-highcontrast .s-sidebarwidget.s-sidebarwidget__green {
|
|
|
5214
5196
|
}
|
|
5215
5197
|
.s-sidebarwidget .s-sidebarwidget--subnav li {
|
|
5216
5198
|
background-image: url("data:image/svg+xml,%3C?xml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22?%3E%3Csvg%20version%3D%221.1%22%20viewBox%3D%220%200%207%2010%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22m0.72153%200.68446%204.1336%204.3077-4.1336%204.3077%22%20fill%3D%22none%22%20stroke%3D%22var%28--black-100%29%22%20stroke-width%3D%222%22/%3E%3C/svg%3E");
|
|
5217
|
-
background-position: 0 calc((1.2em -
|
|
5199
|
+
background-position: 0 calc((1.2em - calc(var(--su-static8) + var(--su-static2))) / 2);
|
|
5218
5200
|
background-repeat: no-repeat;
|
|
5219
|
-
background-size: auto
|
|
5201
|
+
background-size: auto calc(var(--su-static8) + var(--su-static2));
|
|
5220
5202
|
margin-top: var(--su-static12);
|
|
5221
5203
|
padding-left: var(--su-static16);
|
|
5222
5204
|
}
|
|
@@ -5253,7 +5235,7 @@ body.theme-highcontrast .s-sidebarwidget.s-sidebarwidget__green {
|
|
|
5253
5235
|
border-radius: var(--br-sm);
|
|
5254
5236
|
clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 0% 50%);
|
|
5255
5237
|
content: '';
|
|
5256
|
-
height: calc(
|
|
5238
|
+
height: calc(var(--su-static2) + var(--br-sm));
|
|
5257
5239
|
left: calc(var(--su-static1) * -1);
|
|
5258
5240
|
pointer-events: none;
|
|
5259
5241
|
position: absolute;
|
|
@@ -5326,7 +5308,7 @@ body.theme-highcontrast .s-sidebarwidget.s-sidebarwidget__green {
|
|
|
5326
5308
|
border-color: transparent;
|
|
5327
5309
|
border-left-color: currentColor;
|
|
5328
5310
|
filter: invert(0);
|
|
5329
|
-
transform-origin: 50% 50%
|
|
5311
|
+
transform-origin: 50% 50% var(--su-static1);
|
|
5330
5312
|
}
|
|
5331
5313
|
.is-loading:before {
|
|
5332
5314
|
border-color: currentColor;
|
|
@@ -5567,7 +5549,7 @@ body.theme-highcontrast .s-sidebarwidget.s-sidebarwidget__green {
|
|
|
5567
5549
|
.s-table td.s-table--progress-bar {
|
|
5568
5550
|
--_ta-td-blw: 0;
|
|
5569
5551
|
--_ta-td-pl: 0;
|
|
5570
|
-
--_ta-td-w:
|
|
5552
|
+
--_ta-td-w: calc(var(--su-static12) * 10);
|
|
5571
5553
|
}
|
|
5572
5554
|
.s-table tfoot td {
|
|
5573
5555
|
border-bottom-color: var(--_ta-foot-td-bc, var(--_ta-td-bc));
|
|
@@ -6024,13 +6006,13 @@ body.theme-highcontrast .s-topbar {
|
|
|
6024
6006
|
position: absolute;
|
|
6025
6007
|
content: '';
|
|
6026
6008
|
left: 0;
|
|
6027
|
-
top: -
|
|
6009
|
+
top: calc(var(--su-static1) - var(--su-static6));
|
|
6028
6010
|
transition: top, transform;
|
|
6029
6011
|
transition-duration: 0.1s;
|
|
6030
6012
|
transition-timing-function: ease-in-out;
|
|
6031
6013
|
}
|
|
6032
6014
|
.s-topbar .s-topbar--menu-btn span:after {
|
|
6033
|
-
top:
|
|
6015
|
+
top: calc(var(--su-static6) - var(--su-static1));
|
|
6034
6016
|
}
|
|
6035
6017
|
.s-topbar .s-topbar--menu-btn.is-selected {
|
|
6036
6018
|
color: var(--theme-topbar-item-color-current);
|
|
@@ -6191,7 +6173,7 @@ body.theme-highcontrast .s-topbar__dark .s-badge {
|
|
|
6191
6173
|
.s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset).is-selected .s-activity-indicator,
|
|
6192
6174
|
.s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset).is-selected:hover .s-activity-indicator,
|
|
6193
6175
|
.s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset).is-selected:focus .s-activity-indicator {
|
|
6194
|
-
top: calc(50% -
|
|
6176
|
+
top: calc(50% - calc(var(--su16) + var(--su2)));
|
|
6195
6177
|
box-shadow: 0 0 0 var(--su-static2) var(--theme-topbar-item-background-hover);
|
|
6196
6178
|
}
|
|
6197
6179
|
.s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset) .svg-icon {
|
|
@@ -6199,8 +6181,8 @@ body.theme-highcontrast .s-topbar__dark .s-badge {
|
|
|
6199
6181
|
}
|
|
6200
6182
|
.s-topbar .s-topbar--content .s-topbar--item:not(.s-topbar--item__unset) .s-activity-indicator {
|
|
6201
6183
|
position: absolute;
|
|
6202
|
-
top: calc(50% -
|
|
6203
|
-
right:
|
|
6184
|
+
top: calc(50% - calc(var(--su12) + var(--su2)));
|
|
6185
|
+
right: var(--su-static2);
|
|
6204
6186
|
transition: top var(--te-smooth) 0.15s;
|
|
6205
6187
|
box-shadow: 0 0 0 var(--su-static2) var(--theme-topbar-background-color);
|
|
6206
6188
|
}
|
|
@@ -6270,7 +6252,7 @@ body.theme-highcontrast .s-topbar__dark .s-badge {
|
|
|
6270
6252
|
.s-topbar .s-topbar--searchbar .s-select {
|
|
6271
6253
|
max-width: calc(var(--s-step) * 2) !important;
|
|
6272
6254
|
align-self: stretch;
|
|
6273
|
-
margin-right: -
|
|
6255
|
+
margin-right: calc(var(--su-static1) * -1);
|
|
6274
6256
|
color: var(--theme-topbar-select-color);
|
|
6275
6257
|
}
|
|
6276
6258
|
.s-topbar .s-topbar--searchbar .s-select:before,
|
|
@@ -6636,9 +6618,9 @@ body {
|
|
|
6636
6618
|
--ff-serif: Georgia, Cambria, "Times New Roman", Times, serif;
|
|
6637
6619
|
--ff-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", "Liberation Mono", Menlo, Monaco, Consolas, monospace;
|
|
6638
6620
|
--theme-body-font-family: var(--ff-sans);
|
|
6639
|
-
--fs-fine:
|
|
6640
|
-
--fs-caption:
|
|
6641
|
-
--fs-body1:
|
|
6621
|
+
--fs-fine: calc(var(--su-static12) - var(--su-static1));
|
|
6622
|
+
--fs-caption: var(--su-static12);
|
|
6623
|
+
--fs-body1: calc(var(--su-static12) + var(--su-static1));
|
|
6642
6624
|
--fs-body2: 1.15384615rem;
|
|
6643
6625
|
--fs-body3: 1.30769231rem;
|
|
6644
6626
|
--fs-subheading: 1.46153846rem;
|
|
@@ -6683,9 +6665,9 @@ body {
|
|
|
6683
6665
|
--zi-navigation-fixed: 5050;
|
|
6684
6666
|
--zi-modals-background: 8050;
|
|
6685
6667
|
--zi-modals: 9000;
|
|
6686
|
-
--br-sm:
|
|
6687
|
-
--br-md:
|
|
6688
|
-
--br-lg:
|
|
6668
|
+
--br-sm: calc(var(--su-static4));
|
|
6669
|
+
--br-md: calc(var(--su-static6));
|
|
6670
|
+
--br-lg: calc(var(--su-static8));
|
|
6689
6671
|
--br-circle: 50%;
|
|
6690
6672
|
--te-smooth-slow: cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
6691
6673
|
--te-smooth: cubic-bezier(0.165, 0.84, 0.44, 1);
|
|
@@ -6715,7 +6697,7 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
6715
6697
|
--theme-background-color: var(--white);
|
|
6716
6698
|
--theme-link-color: var(--theme-secondary-400);
|
|
6717
6699
|
--theme-link-color-hover: var(--theme-secondary-350);
|
|
6718
|
-
--theme-link-color-visited: var(--theme-secondary-
|
|
6700
|
+
--theme-link-color-visited: var(--theme-secondary-700);
|
|
6719
6701
|
--theme-button-color: var(--theme-secondary-400);
|
|
6720
6702
|
--theme-button-background-color: transparent;
|
|
6721
6703
|
--theme-button-hover-color: var(--theme-secondary-500);
|
|
@@ -7146,7 +7128,7 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
7146
7128
|
--theme-secondary-color-b: var(--theme-dark-secondary-color-b, var(--theme-base-secondary-color-b));
|
|
7147
7129
|
--theme-primary-color: hsl(var(--theme-primary-color-h), var(--theme-primary-color-s), var(--theme-primary-color-l));
|
|
7148
7130
|
--theme-secondary-color: hsl(var(--theme-secondary-color-h), var(--theme-secondary-color-s), var(--theme-secondary-color-l));
|
|
7149
|
-
--theme-primary-025: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) -
|
|
7131
|
+
--theme-primary-025: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) - 73.3%), 90%), clamp(20%, calc(var(--theme-primary-color-l) - 31%), 100%));
|
|
7150
7132
|
--theme-primary-050: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) - 47%), 90%), clamp(20%, calc(var(--theme-primary-color-l) - 15%), 100%));
|
|
7151
7133
|
--theme-primary-075: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) - 39%), 90%), clamp(20%, calc(var(--theme-primary-color-l) - 13%), 100%));
|
|
7152
7134
|
--theme-primary-100: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) - 32%), 90%), clamp(20%, calc(var(--theme-primary-color-l) - 11%), 100%));
|
|
@@ -7160,7 +7142,7 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
7160
7142
|
--theme-primary-700: rgb(calc(168.3 + var(--theme-primary-color-r) * 0.34), calc(168.3 + var(--theme-primary-color-g) * 0.34), calc(168.3 + var(--theme-primary-color-b) * 0.34));
|
|
7161
7143
|
--theme-primary-800: rgb(calc(206.55 + var(--theme-primary-color-r) * 0.19), calc(206.55 + var(--theme-primary-color-g) * 0.19), calc(206.55 + var(--theme-primary-color-b) * 0.19));
|
|
7162
7144
|
--theme-primary-900: rgb(calc(244.8 + var(--theme-primary-color-r) * 0.04), calc(244.8 + var(--theme-primary-color-g) * 0.04), calc(244.8 + var(--theme-primary-color-b) * 0.04));
|
|
7163
|
-
--theme-secondary-025: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) -
|
|
7145
|
+
--theme-secondary-025: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) - 73.3%), 90%), clamp(20%, calc(var(--theme-secondary-color-l) - 31%), 100%));
|
|
7164
7146
|
--theme-secondary-050: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) - 47%), 90%), clamp(20%, calc(var(--theme-secondary-color-l) - 15%), 100%));
|
|
7165
7147
|
--theme-secondary-075: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) - 39%), 90%), clamp(20%, calc(var(--theme-secondary-color-l) - 13%), 100%));
|
|
7166
7148
|
--theme-secondary-100: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) - 32%), 90%), clamp(20%, calc(var(--theme-secondary-color-l) - 11%), 100%));
|
|
@@ -7316,7 +7298,7 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
7316
7298
|
--theme-secondary-color-b: var(--theme-dark-secondary-color-b, var(--theme-base-secondary-color-b));
|
|
7317
7299
|
--theme-primary-color: hsl(var(--theme-primary-color-h), var(--theme-primary-color-s), var(--theme-primary-color-l));
|
|
7318
7300
|
--theme-secondary-color: hsl(var(--theme-secondary-color-h), var(--theme-secondary-color-s), var(--theme-secondary-color-l));
|
|
7319
|
-
--theme-primary-025: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) -
|
|
7301
|
+
--theme-primary-025: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) - 73.3%), 90%), clamp(20%, calc(var(--theme-primary-color-l) - 31%), 100%));
|
|
7320
7302
|
--theme-primary-050: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) - 47%), 90%), clamp(20%, calc(var(--theme-primary-color-l) - 15%), 100%));
|
|
7321
7303
|
--theme-primary-075: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) - 39%), 90%), clamp(20%, calc(var(--theme-primary-color-l) - 13%), 100%));
|
|
7322
7304
|
--theme-primary-100: hsl(var(--theme-primary-color-h), clamp(10%, calc(var(--theme-primary-color-s) - 32%), 90%), clamp(20%, calc(var(--theme-primary-color-l) - 11%), 100%));
|
|
@@ -7330,7 +7312,7 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
7330
7312
|
--theme-primary-700: rgb(calc(168.3 + var(--theme-primary-color-r) * 0.34), calc(168.3 + var(--theme-primary-color-g) * 0.34), calc(168.3 + var(--theme-primary-color-b) * 0.34));
|
|
7331
7313
|
--theme-primary-800: rgb(calc(206.55 + var(--theme-primary-color-r) * 0.19), calc(206.55 + var(--theme-primary-color-g) * 0.19), calc(206.55 + var(--theme-primary-color-b) * 0.19));
|
|
7332
7314
|
--theme-primary-900: rgb(calc(244.8 + var(--theme-primary-color-r) * 0.04), calc(244.8 + var(--theme-primary-color-g) * 0.04), calc(244.8 + var(--theme-primary-color-b) * 0.04));
|
|
7333
|
-
--theme-secondary-025: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) -
|
|
7315
|
+
--theme-secondary-025: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) - 73.3%), 90%), clamp(20%, calc(var(--theme-secondary-color-l) - 31%), 100%));
|
|
7334
7316
|
--theme-secondary-050: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) - 47%), 90%), clamp(20%, calc(var(--theme-secondary-color-l) - 15%), 100%));
|
|
7335
7317
|
--theme-secondary-075: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) - 39%), 90%), clamp(20%, calc(var(--theme-secondary-color-l) - 13%), 100%));
|
|
7336
7318
|
--theme-secondary-100: hsl(var(--theme-secondary-color-h), clamp(10%, calc(var(--theme-secondary-color-s) - 32%), 90%), clamp(20%, calc(var(--theme-secondary-color-l) - 11%), 100%));
|
|
@@ -16847,7 +16829,7 @@ p {
|
|
|
16847
16829
|
.fs-category.has-border {
|
|
16848
16830
|
width: 100%;
|
|
16849
16831
|
padding: var(--su4) 0;
|
|
16850
|
-
border-top:
|
|
16832
|
+
border-top: var(--su-static1) solid var(--bc-medium);
|
|
16851
16833
|
}
|
|
16852
16834
|
.fc-dark {
|
|
16853
16835
|
color: var(--fc-dark) !important;
|
|
@@ -17290,14 +17272,14 @@ ol {
|
|
|
17290
17272
|
}
|
|
17291
17273
|
.v-visible-sr {
|
|
17292
17274
|
border: 0;
|
|
17293
|
-
clip: rect(
|
|
17275
|
+
clip: rect(var(--su-static1), var(--su-static1), var(--su-static1), var(--su-static1));
|
|
17294
17276
|
clip-path: inset(50%);
|
|
17295
|
-
height:
|
|
17296
|
-
margin: -
|
|
17277
|
+
height: var(--su-static1);
|
|
17278
|
+
margin: calc(var(--su-static1) * -1);
|
|
17297
17279
|
overflow: hidden;
|
|
17298
17280
|
padding: 0;
|
|
17299
17281
|
position: absolute;
|
|
17300
|
-
width:
|
|
17282
|
+
width: var(--su-static1);
|
|
17301
17283
|
overflow-wrap: normal;
|
|
17302
17284
|
}
|
|
17303
17285
|
.float-left {
|
|
@@ -23175,7 +23157,7 @@ body {
|
|
|
23175
23157
|
@media (max-width: 640px) {
|
|
23176
23158
|
html ,
|
|
23177
23159
|
html body {
|
|
23178
|
-
font-size:
|
|
23160
|
+
font-size: calc(var(--su-static12) - var(--su-static1));
|
|
23179
23161
|
}
|
|
23180
23162
|
}
|
|
23181
23163
|
body {
|