@stackoverflow/stacks 0.71.0 → 0.74.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.
Files changed (34) hide show
  1. package/README.md +1 -1
  2. package/dist/css/stacks.css +963 -571
  3. package/dist/css/stacks.min.css +1 -1
  4. package/dist/js/stacks.js +190 -100
  5. package/dist/js/stacks.min.js +1 -1
  6. package/lib/css/atomic/_stacks-flex.less +2 -7
  7. package/lib/css/atomic/_stacks-grid.less +1 -0
  8. package/lib/css/atomic/_stacks-misc.less +6 -0
  9. package/lib/css/atomic/_stacks-typography.less +25 -7
  10. package/lib/css/base/_stacks-configuration-dynamic.less +4 -14
  11. package/lib/css/components/_stacks-activity-indicator.less +26 -2
  12. package/lib/css/components/_stacks-badges.less +1 -4
  13. package/lib/css/components/_stacks-buttons.less +44 -8
  14. package/lib/css/components/_stacks-cards.less +7 -11
  15. package/lib/css/components/_stacks-inputs.less +19 -0
  16. package/lib/css/components/_stacks-link-previews.less +4 -0
  17. package/lib/css/components/_stacks-links.less +25 -2
  18. package/lib/css/components/_stacks-navigation.less +8 -0
  19. package/lib/css/components/_stacks-pagination.less +2 -0
  20. package/lib/css/components/_stacks-popovers.less +4 -0
  21. package/lib/css/components/_stacks-post-summary.less +156 -10
  22. package/lib/css/components/_stacks-progress-bars.less +18 -3
  23. package/lib/css/components/_stacks-prose.less +7 -2
  24. package/lib/css/components/_stacks-tags.less +38 -15
  25. package/lib/css/components/_stacks-toggle-switches.less +8 -1
  26. package/lib/css/components/_stacks-topbar.less +440 -0
  27. package/lib/css/components/_stacks-uploader.less +2 -0
  28. package/lib/css/components/_stacks-user-cards.less +15 -39
  29. package/lib/css/exports/_stacks-constants-colors.less +50 -14
  30. package/lib/css/exports/_stacks-constants-helpers.less +1 -2
  31. package/lib/css/exports/_stacks-mixins.less +11 -0
  32. package/lib/css/stacks-dynamic.less +0 -1
  33. package/lib/css/stacks-static.less +2 -0
  34. package/package.json +15 -12
@@ -401,11 +401,33 @@ template {
401
401
  }
402
402
  .s-activity-indicator {
403
403
  display: inline-block;
404
- width: 12px;
404
+ min-width: 12px;
405
405
  height: 12px;
406
+ padding-left: 4px;
407
+ padding-right: 4px;
408
+ line-height: 1.1;
406
409
  background-color: var(--theme-secondary-400);
407
410
  box-shadow: 0 0 0 4px var(--focus-ring);
408
- border-radius: 100%;
411
+ border-radius: 1000px;
412
+ font-size: 11px;
413
+ font-weight: 600;
414
+ color: hsl(0, 0%, 100%);
415
+ text-transform: uppercase;
416
+ }
417
+ body.theme-highcontrast .s-activity-indicator {
418
+ color: var(--white);
419
+ }
420
+ .s-activity-indicator__success {
421
+ background-color: var(--green-500);
422
+ box-shadow: 0 0 0 4px var(--focus-ring-success);
423
+ }
424
+ .s-activity-indicator__warning {
425
+ background-color: var(--yellow-600);
426
+ box-shadow: 0 0 0 4px var(--focus-ring-warning);
427
+ }
428
+ .s-activity-indicator__danger {
429
+ background-color: var(--red-500);
430
+ box-shadow: 0 0 0 4px var(--focus-ring-error);
409
431
  }
410
432
  .s-avatar {
411
433
  display: inline-block;
@@ -549,7 +571,8 @@ body.theme-highcontrast .s-avatar .s-avatar--letter {
549
571
  height: 128px;
550
572
  border-radius: 14px;
551
573
  }
552
- .s-badge {
574
+ .s-badge,
575
+ .s-topbar--notice {
553
576
  display: inline-flex;
554
577
  align-items: center;
555
578
  justify-content: center;
@@ -568,9 +591,6 @@ body.theme-highcontrast .s-avatar .s-avatar--letter {
568
591
  background-color: var(--black-050);
569
592
  color: var(--black-700);
570
593
  }
571
- .s-badge .s-tag--dismiss {
572
- background-color: transparent;
573
- }
574
594
  a.s-badge:hover {
575
595
  text-decoration: none;
576
596
  }
@@ -600,25 +620,16 @@ a.s-badge:hover {
600
620
  background-color: var(--gold-lighter);
601
621
  color: var(--black-700);
602
622
  }
603
- .s-badge__gold .s-tag--dismiss {
604
- background-color: transparent;
605
- }
606
623
  .s-badge__silver {
607
624
  border-color: var(--silver-darker);
608
625
  background-color: var(--silver-lighter);
609
626
  color: var(--black-700);
610
627
  }
611
- .s-badge__silver .s-tag--dismiss {
612
- background-color: transparent;
613
- }
614
628
  .s-badge__bronze {
615
629
  border-color: var(--bronze-darker);
616
630
  background-color: var(--bronze-lighter);
617
631
  color: var(--black-700);
618
632
  }
619
- .s-badge__bronze .s-tag--dismiss {
620
- background-color: transparent;
621
- }
622
633
  body.theme-highcontrast .s-badge__gold,
623
634
  body.theme-highcontrast .s-badge__silver,
624
635
  body.theme-highcontrast .s-badge__bronze {
@@ -630,17 +641,11 @@ body.theme-highcontrast .s-badge__bronze {
630
641
  background-color: var(--blue-600);
631
642
  color: var(--white);
632
643
  }
633
- .s-badge__bounty .s-tag--dismiss {
634
- background-color: transparent;
635
- }
636
644
  .s-badge__votes {
637
645
  border-color: var(--black-150);
638
646
  background-color: var(--white);
639
647
  color: var(--black-700);
640
648
  }
641
- .s-badge__votes .s-tag--dismiss {
642
- background-color: transparent;
643
- }
644
649
  body.theme-highcontrast .s-badge__votes {
645
650
  border-color: currentColor;
646
651
  }
@@ -649,17 +654,11 @@ body.theme-highcontrast .s-badge__votes {
649
654
  background-color: var(--green-400);
650
655
  color: var(--white);
651
656
  }
652
- .s-badge__answered .s-tag--dismiss {
653
- background-color: transparent;
654
- }
655
657
  .s-badge__rep {
656
658
  border-color: var(--green-400);
657
659
  background-color: var(--white);
658
660
  color: var(--green-500);
659
661
  }
660
- .s-badge__rep .s-tag--dismiss {
661
- background-color: transparent;
662
- }
663
662
  body.theme-highcontrast .s-badge__rep {
664
663
  border-color: currentColor;
665
664
  }
@@ -668,9 +667,6 @@ body.theme-highcontrast .s-badge__rep {
668
667
  background-color: var(--white);
669
668
  color: var(--red-500);
670
669
  }
671
- .s-badge__rep-down .s-tag--dismiss {
672
- background-color: transparent;
673
- }
674
670
  body.theme-highcontrast .s-badge__rep-down {
675
671
  border-color: currentColor;
676
672
  }
@@ -679,17 +675,11 @@ body.theme-highcontrast .s-badge__rep-down {
679
675
  background-color: var(--red-600);
680
676
  color: var(--white);
681
677
  }
682
- .s-badge__important .s-tag--dismiss {
683
- background-color: transparent;
684
- }
685
678
  .s-badge__admin {
686
679
  border-color: var(--theme-primary-200);
687
680
  background-color: var(--theme-primary-075);
688
681
  color: var(--theme-primary-800);
689
682
  }
690
- .s-badge__admin .s-tag--dismiss {
691
- background-color: transparent;
692
- }
693
683
  body.theme-highcontrast .s-badge__admin {
694
684
  border-color: currentColor;
695
685
  }
@@ -698,9 +688,6 @@ body.theme-highcontrast .s-badge__admin {
698
688
  background-color: var(--theme-secondary-075);
699
689
  color: var(--theme-secondary-800);
700
690
  }
701
- .s-badge__moderator .s-tag--dismiss {
702
- background-color: transparent;
703
- }
704
691
  body.theme-highcontrast .s-badge__moderator {
705
692
  border-color: currentColor;
706
693
  }
@@ -736,9 +723,6 @@ body.theme-highcontrast .s-badge__moderator {
736
723
  background-color: var(--orange-100);
737
724
  color: var(--orange-900);
738
725
  }
739
- .s-badge__staff .s-tag--dismiss {
740
- background-color: transparent;
741
- }
742
726
  body.theme-highcontrast .s-badge__staff {
743
727
  border-color: currentColor;
744
728
  }
@@ -886,17 +870,15 @@ body.theme-highcontrast .s-btn-group .s-btn.is-selected .s-btn--number {
886
870
  .s-card p:last-of-type {
887
871
  margin-bottom: 0;
888
872
  }
889
- a.s-card:not(.s-card__muted):hover,
890
- a.s-card:not(.s-card__muted):focus,
891
- a.s-card:not(.s-card__muted):active {
892
- border-color: var(--bc-darker);
893
- }
894
873
  .s-card__muted {
895
874
  border-color: var(--bc-light);
896
875
  }
897
876
  .s-card__muted > * {
898
877
  opacity: 0.65;
899
878
  }
879
+ a.s-card {
880
+ text-decoration: none !important;
881
+ }
900
882
  pre.s-code-block {
901
883
  font-size: 13px;
902
884
  font-family: var(--ff-mono);
@@ -1243,6 +1225,15 @@ body.theme-highcontrast .s-label--status {
1243
1225
  background-color: var(--red-100);
1244
1226
  color: var(--red-600);
1245
1227
  }
1228
+ @media (prefers-color-scheme: dark) {
1229
+ body.theme-system .s-label--status.s-label--status__required {
1230
+ color: var(--red-800);
1231
+ }
1232
+ }
1233
+ body.theme-dark .s-label--status.s-label--status__required,
1234
+ .theme-dark__forced .s-label--status.s-label--status__required {
1235
+ color: var(--red-800);
1236
+ }
1246
1237
  .s-label--status.s-label--status__new {
1247
1238
  background-color: var(--green-100);
1248
1239
  color: var(--green-700);
@@ -1398,6 +1389,16 @@ body.theme-highcontrast .s-label--status {
1398
1389
  background-color: var(--theme-secondary-400);
1399
1390
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='%23fff'/%3E%3C/svg%3E");
1400
1391
  }
1392
+ @media (prefers-color-scheme: dark) {
1393
+ body.theme-highcontrast.theme-system .s-checkbox:checked {
1394
+ border-color: var(--blue-700) !important;
1395
+ background-color: var(--blue-300);
1396
+ }
1397
+ }
1398
+ body.theme-highcontrast.theme-dark .s-checkbox:checked {
1399
+ border-color: var(--blue-700) !important;
1400
+ background-color: var(--blue-300);
1401
+ }
1401
1402
  .s-checkbox:checked:focus {
1402
1403
  border-color: var(--theme-secondary-400);
1403
1404
  }
@@ -1415,6 +1416,16 @@ body.theme-highcontrast .s-label--status {
1415
1416
  border-width: 0.30769231em;
1416
1417
  background-color: hsl(0, 0%, 100%);
1417
1418
  }
1419
+ @media (prefers-color-scheme: dark) {
1420
+ body.theme-highcontrast.theme-system .s-radio:checked {
1421
+ border-color: var(--blue-300);
1422
+ outline: 1px solid var(--black);
1423
+ }
1424
+ }
1425
+ body.theme-highcontrast.theme-dark .s-radio:checked {
1426
+ border-color: var(--blue-300);
1427
+ outline: 1px solid var(--black);
1428
+ }
1418
1429
  .s-radio:focus {
1419
1430
  box-shadow: 0 0 0 4px var(--focus-ring);
1420
1431
  }
@@ -1651,6 +1662,10 @@ body.theme-highcontrast .s-input-icon.s-input-icon__creditcard {
1651
1662
  padding-bottom: 0.5em;
1652
1663
  border-radius: 4px;
1653
1664
  }
1665
+ .s-textarea__md {
1666
+ padding-top: 0.72em;
1667
+ padding-bottom: 0.72em;
1668
+ }
1654
1669
  .s-input__lg,
1655
1670
  .s-textarea__lg,
1656
1671
  .s-select__lg > select {
@@ -1836,6 +1851,131 @@ body.theme-dark .s-modal--dialog,
1836
1851
  max-width: calc(100% - 48px);
1837
1852
  max-height: calc(100% - 48px);
1838
1853
  }
1854
+ .s-navigation {
1855
+ display: flex;
1856
+ margin: -2px;
1857
+ padding: 2px 0;
1858
+ flex-wrap: wrap;
1859
+ list-style: none;
1860
+ }
1861
+ .s-navigation .s-navigation--item {
1862
+ display: flex;
1863
+ align-items: center;
1864
+ padding: 6px 12px;
1865
+ position: relative;
1866
+ border: none;
1867
+ font: unset;
1868
+ background: none;
1869
+ box-shadow: none;
1870
+ cursor: pointer;
1871
+ user-select: auto;
1872
+ border-radius: 1000px;
1873
+ margin: 2px;
1874
+ white-space: nowrap;
1875
+ color: var(--black-600);
1876
+ }
1877
+ .s-navigation .s-navigation--item:hover,
1878
+ .s-navigation .s-navigation--item:active {
1879
+ background: var(--black-075);
1880
+ color: var(--black-600);
1881
+ }
1882
+ body.theme-highcontrast .s-navigation .s-navigation--item:hover,
1883
+ body.theme-highcontrast .s-navigation .s-navigation--item:active {
1884
+ background: var(--black-600);
1885
+ color: var(--black-100);
1886
+ }
1887
+ .s-navigation .s-navigation--item:focus:not(:focus-visible) {
1888
+ outline: none;
1889
+ box-shadow: none;
1890
+ }
1891
+ .s-navigation .s-navigation--item:focus-visible {
1892
+ outline: none;
1893
+ box-shadow: 0 0 0 4px var(--focus-ring-muted);
1894
+ }
1895
+ .s-navigation .s-navigation--item.is-selected {
1896
+ background: var(--theme-primary-color);
1897
+ color: var(--white);
1898
+ }
1899
+ .s-navigation .s-navigation--item.is-selected:hover,
1900
+ .s-navigation .s-navigation--item.is-selected:active {
1901
+ background: var(--theme-primary-600);
1902
+ color: var(--white);
1903
+ }
1904
+ body.theme-highcontrast .s-navigation .s-navigation--item.is-selected {
1905
+ text-decoration: none;
1906
+ }
1907
+ .s-navigation .s-navigation--item.s-navigation--item__dropdown {
1908
+ padding-right: 2em;
1909
+ }
1910
+ .s-navigation .s-navigation--item.s-navigation--item__dropdown:after {
1911
+ content: "";
1912
+ position: absolute;
1913
+ z-index: 30;
1914
+ top: calc(50% - 2px);
1915
+ right: 0.9em;
1916
+ border-style: solid;
1917
+ border-width: 4px;
1918
+ border-top-width: 4px;
1919
+ border-bottom-width: 0;
1920
+ border-color: currentColor transparent;
1921
+ pointer-events: none;
1922
+ }
1923
+ .s-navigation.s-navigation__scroll {
1924
+ overflow-x: auto;
1925
+ flex-wrap: nowrap;
1926
+ scrollbar-color: var(--scrollbar) transparent;
1927
+ }
1928
+ .s-navigation.s-navigation__scroll::-webkit-scrollbar {
1929
+ width: 10px;
1930
+ height: 10px;
1931
+ background-color: transparent;
1932
+ }
1933
+ .s-navigation.s-navigation__scroll::-webkit-scrollbar-track {
1934
+ border-radius: 10px;
1935
+ background-color: transparent;
1936
+ }
1937
+ .s-navigation.s-navigation__scroll::-webkit-scrollbar-thumb {
1938
+ border-radius: 10px;
1939
+ background-color: var(--scrollbar);
1940
+ }
1941
+ .s-navigation.s-navigation__scroll::-webkit-scrollbar-corner {
1942
+ background-color: transparent;
1943
+ border-color: transparent;
1944
+ }
1945
+ .s-navigation.s-navigation__vertical {
1946
+ flex-direction: column;
1947
+ padding: 0;
1948
+ margin: 0;
1949
+ }
1950
+ .s-navigation.s-navigation__vertical .s-navigation--item {
1951
+ margin: 0;
1952
+ white-space: normal;
1953
+ }
1954
+ .s-navigation .s-navigation--title {
1955
+ font-size: 11px;
1956
+ font-weight: bold;
1957
+ margin-top: 16px;
1958
+ padding: 6px 12px;
1959
+ text-transform: uppercase;
1960
+ }
1961
+ .s-navigation .s-navigation--title:first-child {
1962
+ margin-top: 0;
1963
+ }
1964
+ .s-navigation.s-navigation__muted .s-navigation--item.is-selected {
1965
+ background: var(--black-050);
1966
+ color: var(--black-800);
1967
+ }
1968
+ body.theme-highcontrast .s-navigation.s-navigation__muted .s-navigation--item.is-selected {
1969
+ background: var(--black-800);
1970
+ color: var(--black-050);
1971
+ }
1972
+ .s-navigation.s-navigation__sm .s-navigation--item {
1973
+ padding: 4px 12px;
1974
+ font-size: 12px;
1975
+ }
1976
+ .s-navigation.s-navigation__sm .s-navigation--item.s-navigation--item__dropdown {
1977
+ padding-right: 2em;
1978
+ }
1839
1979
  .s-page-title {
1840
1980
  display: flex;
1841
1981
  flex-direction: row;
@@ -1897,6 +2037,7 @@ body.theme-dark .s-modal--dialog,
1897
2037
  font-size: 13px;
1898
2038
  min-width: 12rem;
1899
2039
  width: 100%;
2040
+ white-space: normal;
1900
2041
  }
1901
2042
  @media (prefers-color-scheme: dark) {
1902
2043
  body.theme-system .s-popover {
@@ -2059,12 +2200,10 @@ body.theme-dark .s-popover--arrow,
2059
2200
  @media (max-width: 980px) {
2060
2201
  .s-post-summary {
2061
2202
  flex-direction: column;
2062
- align-items: flex-start;
2063
2203
  }
2064
2204
  }
2065
2205
  .s-post-summary.s-post-summary__minimal {
2066
2206
  flex-direction: column;
2067
- align-items: flex-start;
2068
2207
  }
2069
2208
  .s-post-summary.s-post-summary__minimal .s-post-summary--stats {
2070
2209
  width: auto;
@@ -2087,33 +2226,49 @@ body.theme-dark .s-popover--arrow,
2087
2226
  --s-post-summary-stats-gap: 6px;
2088
2227
  margin-right: 8px;
2089
2228
  margin-bottom: -2px;
2090
- width: 96px;
2229
+ width: 108px;
2091
2230
  display: flex;
2092
2231
  flex-direction: column;
2093
2232
  flex-shrink: 0;
2094
2233
  flex-wrap: wrap;
2095
2234
  align-items: flex-end;
2096
- font-size: 12px;
2235
+ font-size: 13px;
2097
2236
  color: var(--fc-light);
2098
2237
  }
2099
2238
  .s-post-summary--stats .s-post-summary--stats-item {
2239
+ display: inline-flex;
2240
+ align-items: center;
2241
+ justify-content: center;
2100
2242
  margin-right: var(--s-post-summary-stats-gap);
2101
2243
  margin-bottom: var(--s-post-summary-stats-gap);
2102
2244
  white-space: nowrap;
2103
2245
  border: 1px solid transparent;
2104
2246
  }
2247
+ .s-post-summary--stats .s-post-summary--stats-item .svg-icon {
2248
+ margin-right: 4px;
2249
+ }
2250
+ .s-post-summary--stats .s-post-summary--stats-item.s-post-summary--stats-item__emphasized {
2251
+ color: var(--fc-dark);
2252
+ }
2105
2253
  .s-post-summary--stats .s-post-summary--stats-item.has-answers,
2106
- .s-post-summary--stats .s-post-summary--stats-item.has-bounty {
2254
+ .s-post-summary--stats .s-post-summary--stats-item.has-bounty,
2255
+ .s-post-summary--stats .s-post-summary--stats-item.is-deleted,
2256
+ .s-post-summary--stats .s-post-summary--stats-item.is-published,
2257
+ .s-post-summary--stats .s-post-summary--stats-item.is-draft,
2258
+ .s-post-summary--stats .s-post-summary--stats-item.is-review,
2259
+ .s-post-summary--stats .s-post-summary--stats-item.is-closed,
2260
+ .s-post-summary--stats .s-post-summary--stats-item.is-archived {
2107
2261
  border-radius: 3px;
2108
2262
  padding: 2px 4px;
2109
2263
  }
2110
2264
  .s-post-summary--stats .s-post-summary--stats-item.has-answers {
2111
- color: var(--green-500);
2112
- border: 1px solid var(--green-500);
2265
+ color: var(--green-600);
2266
+ border: 1px solid var(--green-600);
2113
2267
  }
2114
2268
  .s-post-summary--stats .s-post-summary--stats-item.has-answers.has-accepted-answer {
2115
2269
  color: hsl(0, 0%, 100%);
2116
2270
  background-color: var(--green-500);
2271
+ border-color: var(--green-500);
2117
2272
  }
2118
2273
  body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-answers.has-accepted-answer {
2119
2274
  color: var(--white);
@@ -2131,6 +2286,30 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
2131
2286
  .s-post-summary--stats .s-post-summary--stats-item.is-supernova {
2132
2287
  color: var(--orange-400);
2133
2288
  }
2289
+ .s-post-summary--stats .s-post-summary--stats-item.is-published {
2290
+ color: var(--black-800);
2291
+ background-color: var(--black-050);
2292
+ }
2293
+ .s-post-summary--stats .s-post-summary--stats-item.is-draft {
2294
+ color: var(--blue-900);
2295
+ background-color: var(--blue-100);
2296
+ border-color: var(--blue-600);
2297
+ }
2298
+ .s-post-summary--stats .s-post-summary--stats-item.is-review {
2299
+ color: var(--yellow-900);
2300
+ background-color: var(--yellow-100);
2301
+ border-color: var(--yellow-600);
2302
+ }
2303
+ .s-post-summary--stats .s-post-summary--stats-item.is-closed {
2304
+ color: var(--red-900);
2305
+ background-color: var(--red-100);
2306
+ border-color: var(--red-600);
2307
+ }
2308
+ .s-post-summary--stats .s-post-summary--stats-item.is-archived {
2309
+ color: var(--black-900);
2310
+ background-color: var(--black-100);
2311
+ border-color: var(--black-600);
2312
+ }
2134
2313
  @media (max-width: 980px) {
2135
2314
  .s-post-summary--stats {
2136
2315
  flex-direction: row;
@@ -2143,8 +2322,9 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
2143
2322
  max-width: 100%;
2144
2323
  }
2145
2324
  .s-post-summary--content .s-post-summary--content-title {
2146
- display: inline-block;
2147
- font-size: 1.46153846rem;
2325
+ display: block;
2326
+ font-size: 1.30769231rem;
2327
+ margin-top: -0.15rem;
2148
2328
  margin-bottom: 6px;
2149
2329
  overflow-wrap: break-word;
2150
2330
  word-wrap: break-word;
@@ -2164,7 +2344,7 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
2164
2344
  }
2165
2345
  .s-post-summary--content .s-post-summary--content-type {
2166
2346
  color: var(--fc-medium);
2167
- margin-bottom: 2px;
2347
+ margin-bottom: 4px;
2168
2348
  }
2169
2349
  .s-post-summary--content .s-post-summary--content-type .svg-icon {
2170
2350
  margin-left: -2px;
@@ -2173,11 +2353,30 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
2173
2353
  .s-post-summary--content .s-post-summary--content-excerpt {
2174
2354
  margin-top: -2px;
2175
2355
  margin-bottom: 8px;
2356
+ color: var(--fc-medium);
2176
2357
  display: -webkit-box;
2177
2358
  -webkit-line-clamp: 2;
2178
2359
  -webkit-box-orient: vertical;
2179
2360
  overflow: hidden;
2180
2361
  }
2362
+ .s-post-summary--content .s-post-summary--content-excerpt.s-post-summary--content-excerpt__sm {
2363
+ display: -webkit-box;
2364
+ -webkit-line-clamp: 1;
2365
+ -webkit-box-orient: vertical;
2366
+ overflow: hidden;
2367
+ }
2368
+ .s-post-summary--content .s-post-summary--content-excerpt.s-post-summary--content-excerpt__md {
2369
+ display: -webkit-box;
2370
+ -webkit-line-clamp: 3;
2371
+ -webkit-box-orient: vertical;
2372
+ overflow: hidden;
2373
+ }
2374
+ .s-post-summary--content .s-post-summary--content-excerpt.s-post-summary--content-excerpt__lg {
2375
+ display: -webkit-box;
2376
+ -webkit-line-clamp: 4;
2377
+ -webkit-box-orient: vertical;
2378
+ overflow: hidden;
2379
+ }
2181
2380
  .s-post-summary--meta {
2182
2381
  --s-post-summary-tags-gap: 4px;
2183
2382
  display: flex;
@@ -2199,6 +2398,88 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
2199
2398
  flex-wrap: wrap;
2200
2399
  margin-bottom: var(--s-post-summary-tags-gap);
2201
2400
  margin-left: auto;
2401
+ justify-content: flex-end;
2402
+ }
2403
+ .s-post-summary--answer {
2404
+ position: relative;
2405
+ margin: 16px 1em 0 1em;
2406
+ padding: 0.5em 0 0.5em calc(1em + 4px);
2407
+ }
2408
+ .s-post-summary--answer + .s-post-summary--answer {
2409
+ margin-top: 16px;
2410
+ }
2411
+ .s-post-summary--answer:before {
2412
+ content: "";
2413
+ display: block;
2414
+ position: absolute;
2415
+ top: 0;
2416
+ bottom: 0;
2417
+ left: 0;
2418
+ width: 4px;
2419
+ border-radius: 8px;
2420
+ background: var(--black-150);
2421
+ }
2422
+ body.theme-highcontrast .s-post-summary--answer:before {
2423
+ background: var(--black-600);
2424
+ }
2425
+ .s-post-summary--answer .s-post-summary--stats {
2426
+ width: auto;
2427
+ flex-direction: row;
2428
+ align-items: center;
2429
+ margin-bottom: 4px;
2430
+ }
2431
+ .s-post-summary--answer .s-post-summary--answer-excerpt {
2432
+ color: var(--black-600);
2433
+ margin-bottom: 8px;
2434
+ display: -webkit-box;
2435
+ -webkit-line-clamp: 4;
2436
+ -webkit-box-orient: vertical;
2437
+ overflow: hidden;
2438
+ }
2439
+ .s-post-summary__watched {
2440
+ background-color: var(--yellow-050);
2441
+ }
2442
+ .s-post-summary__deleted {
2443
+ background-color: var(--red-050);
2444
+ }
2445
+ .s-post-summary__deleted .is-deleted {
2446
+ color: hsl(0, 0%, 100%);
2447
+ background-color: var(--red-500);
2448
+ }
2449
+ .s-post-summary__ignored .s-post-summary--content,
2450
+ .s-post-summary__deleted .s-post-summary--content {
2451
+ opacity: 0.6;
2452
+ }
2453
+ .s-post-summary__ignored .s-post-summary--stats-item:not(.is-deleted),
2454
+ .s-post-summary__deleted .s-post-summary--stats-item:not(.is-deleted) {
2455
+ opacity: 0.6;
2456
+ filter: grayscale(100%);
2457
+ }
2458
+ .s-post-summary__ignored .s-post-summary--content-title,
2459
+ .s-post-summary__deleted .s-post-summary--content-title,
2460
+ .s-post-summary__ignored .s-post-summary--content-title .s-link,
2461
+ .s-post-summary__deleted .s-post-summary--content-title .s-link {
2462
+ color: var(--black-600);
2463
+ }
2464
+ .s-post-summary__ignored .s-post-summary--content-title:hover,
2465
+ .s-post-summary__deleted .s-post-summary--content-title:hover,
2466
+ .s-post-summary__ignored .s-post-summary--content-title .s-link:hover,
2467
+ .s-post-summary__deleted .s-post-summary--content-title .s-link:hover {
2468
+ color: var(--black-500);
2469
+ }
2470
+ .s-post-summary__ignored .s-post-summary--content-title:visited,
2471
+ .s-post-summary__deleted .s-post-summary--content-title:visited,
2472
+ .s-post-summary__ignored .s-post-summary--content-title .s-link:visited,
2473
+ .s-post-summary__deleted .s-post-summary--content-title .s-link:visited {
2474
+ color: var(--black-700);
2475
+ }
2476
+ .s-post-summary__ignored .s-post-summary--content-excerpt,
2477
+ .s-post-summary__deleted .s-post-summary--content-excerpt {
2478
+ color: var(--black-500);
2479
+ }
2480
+ .s-post-summary__ignored .s-post-summary--meta,
2481
+ .s-post-summary__deleted .s-post-summary--meta {
2482
+ filter: grayscale(100%);
2202
2483
  }
2203
2484
  .s-progress,
2204
2485
  .s-progress--bar {
@@ -2240,6 +2521,10 @@ body.theme-highcontrast .s-progress__privilege .s-progress--bar {
2240
2521
  }
2241
2522
  .s-progress__privilege .s-progress--label {
2242
2523
  border-color: var(--green-400);
2524
+ display: flex;
2525
+ gap: 4px;
2526
+ align-items: center;
2527
+ justify-content: center;
2243
2528
  }
2244
2529
  .s-progress__privilege,
2245
2530
  .s-progress__privilege .s-progress--bar,
@@ -2252,6 +2537,17 @@ body.theme-highcontrast .s-progress__privilege .s-progress--bar {
2252
2537
  .s-progress__badge {
2253
2538
  background-color: transparent;
2254
2539
  }
2540
+ .s-progress__badge .s-progress--label {
2541
+ display: flex;
2542
+ gap: 4px;
2543
+ align-items: center;
2544
+ padding-left: 1em;
2545
+ padding-right: 1em;
2546
+ }
2547
+ .s-progress__badge .s-progress--label .s-badge--label {
2548
+ text-align: center;
2549
+ flex-grow: 1;
2550
+ }
2255
2551
  .s-progress__gold .s-progress--bar {
2256
2552
  background-color: var(--gold-lighter);
2257
2553
  }
@@ -2826,6 +3122,9 @@ body.theme-dark .s-prose kbd,
2826
3122
  background-color: var(--black-075);
2827
3123
  border-radius: 3px;
2828
3124
  }
3125
+ .s-prose *:not(.s-code-block) > a code {
3126
+ color: var(--theme-link-color);
3127
+ }
2829
3128
  .s-prose pre {
2830
3129
  margin-top: 0;
2831
3130
  margin-bottom: calc(var(--s-prose-spacing) + 0.4em);
@@ -3300,6 +3599,372 @@ body.theme-highcontrast .s-toggle-switch.s-toggle-switch__multiple input[type="r
3300
3599
  body.theme-highcontrast .s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked + label:not(.s-toggle-switch--label-off) {
3301
3600
  color: var(--white);
3302
3601
  }
3602
+ .s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked:focus + label.s-toggle-switch--label-off {
3603
+ box-shadow: 0 0 0 4px var(--focus-ring-muted);
3604
+ }
3605
+ .s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked:focus + label:not(.s-toggle-switch--label-off) {
3606
+ box-shadow: 0 0 0 4px var(--focus-ring-success);
3607
+ }
3608
+ .s-topbar {
3609
+ min-width: auto;
3610
+ box-shadow: var(--bs-sm);
3611
+ width: 100%;
3612
+ z-index: 5050;
3613
+ background-color: var(--theme-topbar-background-color);
3614
+ height: var(--theme-topbar-height);
3615
+ display: flex;
3616
+ border-top: var(--theme-topbar-accent-border);
3617
+ position: relative;
3618
+ align-items: center;
3619
+ }
3620
+ body.theme-highcontrast .s-topbar {
3621
+ --theme-topbar-search-color: var(--theme-topbar-item-color);
3622
+ --theme-topbar-search-background: var(--theme-topbar-background-color);
3623
+ --theme-topbar-search-placeholder: var(--theme-topbar-item-color);
3624
+ --theme-topbar-search-border: var(--theme-topbar-item-color);
3625
+ --theme-topbar-search-border-focus: var(--theme-topbar-item-color);
3626
+ --theme-topbar-select-color: var(--theme-topbar-item-color);
3627
+ --theme-topbar-select-background: var(--theme-topbar-background-color);
3628
+ --theme-topbar-item-color: var(--black-800);
3629
+ --theme-topbar-item-color-hover: var(--black-900);
3630
+ --theme-topbar-item-background-hover: var(--black-200);
3631
+ --theme-topbar-item-color-current: var(--black);
3632
+ }
3633
+ body.theme-highcontrast .s-topbar {
3634
+ border-bottom: 1px solid currentColor;
3635
+ }
3636
+ .s-topbar .s-topbar--container {
3637
+ width: 97.2307692rem;
3638
+ max-width: 100%;
3639
+ height: 100%;
3640
+ display: flex;
3641
+ margin: 0 auto;
3642
+ align-items: center;
3643
+ }
3644
+ .s-topbar .s-topbar--logo {
3645
+ padding: 0 8px;
3646
+ height: 100%;
3647
+ display: flex;
3648
+ align-items: center;
3649
+ background-color: transparent;
3650
+ }
3651
+ .s-topbar a.s-topbar--logo:hover {
3652
+ background-color: var(--theme-topbar-item-background-hover);
3653
+ }
3654
+ .s-topbar a.s-topbar--logo.is-selected {
3655
+ background-color: var(--theme-topbar-item-background-hover);
3656
+ }
3657
+ .s-topbar .s-topbar--menu-btn {
3658
+ display: flex;
3659
+ height: 100%;
3660
+ padding: 0 16px;
3661
+ flex-shrink: 0;
3662
+ align-items: center;
3663
+ justify-content: center;
3664
+ }
3665
+ .s-topbar .s-topbar--menu-btn span,
3666
+ .s-topbar .s-topbar--menu-btn span:before,
3667
+ .s-topbar .s-topbar--menu-btn span:after {
3668
+ width: 16px;
3669
+ height: 2px;
3670
+ background-color: var(--theme-topbar-item-color);
3671
+ position: relative;
3672
+ }
3673
+ .s-topbar .s-topbar--menu-btn span:before,
3674
+ .s-topbar .s-topbar--menu-btn span:after {
3675
+ position: absolute;
3676
+ content: '';
3677
+ left: 0;
3678
+ top: -5px;
3679
+ transition: top, transform;
3680
+ transition-duration: 0.1s;
3681
+ transition-timing-function: ease-in-out;
3682
+ }
3683
+ .s-topbar .s-topbar--menu-btn span:after {
3684
+ top: 5px;
3685
+ }
3686
+ .s-topbar .s-topbar--menu-btn.is-selected {
3687
+ color: var(--theme-topbar-item-color-current);
3688
+ background-color: var(--theme-topbar-item-background-current);
3689
+ }
3690
+ .s-topbar .s-topbar--menu-btn.is-selected span {
3691
+ background-color: transparent;
3692
+ }
3693
+ .s-topbar .s-topbar--menu-btn.is-selected span:before,
3694
+ .s-topbar .s-topbar--menu-btn.is-selected span:after {
3695
+ top: 0;
3696
+ transform: rotate(-45deg);
3697
+ }
3698
+ .s-topbar .s-topbar--menu-btn.is-selected span:after {
3699
+ transform: rotate(45deg);
3700
+ }
3701
+ .s-topbar .s-topbar--menu-btn:hover {
3702
+ color: var(--theme-topbar-item-color-hover);
3703
+ background-color: var(--theme-topbar-item-background-hover);
3704
+ }
3705
+ .s-topbar .s-navigation .s-navigation--item:not(.is-selected) {
3706
+ color: var(--theme-topbar-item-color);
3707
+ }
3708
+ .s-topbar .s-navigation .s-navigation--item:not(.is-selected):hover {
3709
+ color: var(--theme-topbar-item-color-hover);
3710
+ background-color: var(--theme-topbar-item-background-hover);
3711
+ }
3712
+ .s-topbar__light {
3713
+ --theme-topbar-background-color: hsl(210, 8%, 97.5%);
3714
+ --theme-topbar-search-color: hsl(210, 8%, 25%);
3715
+ --theme-topbar-search-background: hsl(0, 0%, 100%);
3716
+ --theme-topbar-search-placeholder: hsl(210, 8%, 75%);
3717
+ --theme-topbar-search-border: hsl(210, 8%, 75%);
3718
+ --theme-topbar-search-border-focus: hsl(206, 90%, 69.5%);
3719
+ --theme-topbar-search-shadow-focus: 0 0 0 4px var(--focus-ring);
3720
+ --theme-topbar-select-color: hsl(210, 8%, 25%);
3721
+ --theme-topbar-select-background: hsl(210, 8%, 95%);
3722
+ --theme-topbar-item-color: hsl(210, 8%, 35%);
3723
+ --theme-topbar-item-color-hover: hsl(210, 8%, 15%);
3724
+ --theme-topbar-item-background-hover: hsl(210, 8%, 90%);
3725
+ --theme-topbar-item-color-current: hsl(210, 8%, 5%);
3726
+ --theme-topbar-item-border-current: var(--theme-primary-color);
3727
+ --scrollbar: hsla(0, 0%, 0%, 0.2);
3728
+ }
3729
+ body.theme-highcontrast .s-topbar__light {
3730
+ --theme-topbar-item-color: hsl(210, 8%, 15%);
3731
+ --theme-topbar-item-color-hover: hsl(210, 8%, 5%);
3732
+ --theme-topbar-item-background-hover: hsl(210, 8%, 90%);
3733
+ --theme-topbar-item-color-current: hsl(210, 8%, 5%);
3734
+ }
3735
+ .s-topbar__dark {
3736
+ --theme-topbar-background-color: hsl(210, 8%, 15%);
3737
+ --theme-topbar-search-color: hsl(0, 0%, 100%);
3738
+ --theme-topbar-search-background: hsl(210, 8%, 25%);
3739
+ --theme-topbar-search-placeholder: hsl(210, 8%, 85%);
3740
+ --theme-topbar-search-border: hsl(210, 8%, 45%);
3741
+ --theme-topbar-search-border-focus: hsl(210, 8%, 70%);
3742
+ --theme-topbar-search-shadow-focus: 0 0 0 4px hsla(0, 0%, 100%, 0.3);
3743
+ --theme-topbar-select-color: hsl(210, 8%, 85%);
3744
+ --theme-topbar-select-background: hsl(210, 8%, 35%);
3745
+ --theme-topbar-item-color: hsl(210, 8%, 97.5%);
3746
+ --theme-topbar-item-color-hover: hsl(0, 0%, 100%);
3747
+ --theme-topbar-item-background-hover: hsl(210, 8%, 25%);
3748
+ --theme-topbar-item-color-current: hsl(0, 0%, 100%);
3749
+ --theme-topbar-item-border-current: var(--theme-primary-color);
3750
+ --theme-topbar-accent-border: none;
3751
+ --scrollbar: hsla(0, 0%, 100%, 0.2);
3752
+ }
3753
+ body.theme-highcontrast .s-topbar__dark {
3754
+ --theme-topbar-item-color: hsl(0, 0%, 100%);
3755
+ --theme-topbar-item-color-hover: hsl(0, 0%, 100%);
3756
+ --theme-topbar-item-background-hover: hsl(210, 8%, 25%);
3757
+ --theme-topbar-item-color-current: hsl(0, 0%, 100%);
3758
+ }
3759
+ body.theme-highcontrast .s-topbar__dark .s-badge {
3760
+ border-color: currentColor;
3761
+ }
3762
+ .s-topbar .s-topbar--content,
3763
+ .s-topbar .s-topbar--ctas {
3764
+ display: flex;
3765
+ height: 100%;
3766
+ list-style: none;
3767
+ margin: 0;
3768
+ padding: 0;
3769
+ }
3770
+ .s-topbar .s-topbar--content > li,
3771
+ .s-topbar .s-topbar--ctas > li {
3772
+ display: inline-flex;
3773
+ }
3774
+ .s-topbar .s-topbar--content {
3775
+ overflow-x: auto;
3776
+ scrollbar-color: var(--scrollbar) transparent;
3777
+ margin-left: auto;
3778
+ }
3779
+ .s-topbar .s-topbar--content::-webkit-scrollbar {
3780
+ width: 10px;
3781
+ height: 10px;
3782
+ background-color: transparent;
3783
+ }
3784
+ .s-topbar .s-topbar--content::-webkit-scrollbar-track {
3785
+ border-radius: 10px;
3786
+ background-color: transparent;
3787
+ }
3788
+ .s-topbar .s-topbar--content::-webkit-scrollbar-thumb {
3789
+ border-radius: 10px;
3790
+ background-color: var(--scrollbar);
3791
+ }
3792
+ .s-topbar .s-topbar--content::-webkit-scrollbar-corner {
3793
+ background-color: transparent;
3794
+ border-color: transparent;
3795
+ }
3796
+ .s-topbar .s-topbar--content .s-topbar--item {
3797
+ color: var(--theme-topbar-item-color);
3798
+ display: inline-flex;
3799
+ align-items: center;
3800
+ padding: 0 10px;
3801
+ text-decoration: none;
3802
+ white-space: nowrap;
3803
+ position: relative;
3804
+ }
3805
+ .s-topbar .s-topbar--content .s-topbar--item:hover,
3806
+ .s-topbar .s-topbar--content .s-topbar--item:focus,
3807
+ .s-topbar .s-topbar--content .s-topbar--item.is-selected,
3808
+ .s-topbar .s-topbar--content .s-topbar--item.is-selected:hover,
3809
+ .s-topbar .s-topbar--content .s-topbar--item.is-selected:focus {
3810
+ color: var(--theme-topbar-item-color-hover);
3811
+ background-color: var(--theme-topbar-item-background-hover);
3812
+ text-decoration: none;
3813
+ outline: none;
3814
+ }
3815
+ .s-topbar .s-topbar--content .s-topbar--item:hover .s-activity-indicator,
3816
+ .s-topbar .s-topbar--content .s-topbar--item:focus .s-activity-indicator,
3817
+ .s-topbar .s-topbar--content .s-topbar--item.is-selected .s-activity-indicator,
3818
+ .s-topbar .s-topbar--content .s-topbar--item.is-selected:hover .s-activity-indicator,
3819
+ .s-topbar .s-topbar--content .s-topbar--item.is-selected:focus .s-activity-indicator {
3820
+ top: calc(50% - 18px);
3821
+ }
3822
+ .s-topbar .s-topbar--content .s-topbar--item .svg-icon {
3823
+ vertical-align: text-top;
3824
+ }
3825
+ .s-topbar .s-topbar--content .s-topbar--item .s-activity-indicator {
3826
+ position: absolute;
3827
+ top: calc(50% - 14px);
3828
+ right: 2px;
3829
+ transition: top cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
3830
+ }
3831
+ .s-topbar .s-topbar--ctas {
3832
+ padding-left: 4px;
3833
+ padding-right: 8px;
3834
+ overflow-x: auto;
3835
+ scrollbar-color: var(--scrollbar) transparent;
3836
+ margin-left: auto;
3837
+ }
3838
+ .s-topbar .s-topbar--ctas::-webkit-scrollbar {
3839
+ width: 10px;
3840
+ height: 10px;
3841
+ background-color: transparent;
3842
+ }
3843
+ .s-topbar .s-topbar--ctas::-webkit-scrollbar-track {
3844
+ border-radius: 10px;
3845
+ background-color: transparent;
3846
+ }
3847
+ .s-topbar .s-topbar--ctas::-webkit-scrollbar-thumb {
3848
+ border-radius: 10px;
3849
+ background-color: var(--scrollbar);
3850
+ }
3851
+ .s-topbar .s-topbar--ctas::-webkit-scrollbar-corner {
3852
+ background-color: transparent;
3853
+ border-color: transparent;
3854
+ }
3855
+ .s-topbar .s-topbar--ctas li + li {
3856
+ margin-left: 4px;
3857
+ }
3858
+ .s-topbar .s-topbar--ctas .s-topbar--item {
3859
+ align-self: center;
3860
+ padding-top: 8px;
3861
+ padding-bottom: 8px;
3862
+ }
3863
+ .s-topbar--notice {
3864
+ text-transform: uppercase;
3865
+ font-size: 11px;
3866
+ font-weight: 700;
3867
+ margin-left: 8px;
3868
+ margin-right: 8px;
3869
+ flex-shrink: 0;
3870
+ border-color: transparent;
3871
+ background-color: transparent;
3872
+ color: var(--theme-topbar-item-color);
3873
+ }
3874
+ .s-topbar--notice:hover,
3875
+ .s-topbar--notice:focus {
3876
+ border-color: var(--theme-topbar-item-background-hover);
3877
+ background-color: var(--theme-topbar-item-background-hover);
3878
+ color: var(--theme-topbar-item-color-hover);
3879
+ }
3880
+ .s-topbar--notice.is-unread {
3881
+ border-color: var(--theme-primary-color);
3882
+ background-color: var(--theme-primary-color);
3883
+ color: var(--white);
3884
+ }
3885
+ .s-topbar--notice.is-unread:hover,
3886
+ .s-topbar--notice.is-unread:focus {
3887
+ border-color: var(--theme-primary-600);
3888
+ background-color: var(--theme-primary-600);
3889
+ color: var(--white);
3890
+ }
3891
+ .s-topbar .s-topbar--searchbar {
3892
+ padding: 0 8px;
3893
+ display: flex;
3894
+ align-items: center;
3895
+ flex-shrink: 10000;
3896
+ flex-grow: 1;
3897
+ }
3898
+ .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group {
3899
+ position: relative;
3900
+ flex-grow: 1;
3901
+ }
3902
+ .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input {
3903
+ border-color: var(--theme-topbar-search-border);
3904
+ background-color: var(--theme-topbar-search-background);
3905
+ box-shadow: var(--theme-topbar-search-shadow);
3906
+ color: var(--theme-topbar-search-color);
3907
+ display: block;
3908
+ line-height: 1.15384615;
3909
+ }
3910
+ .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input:focus {
3911
+ border-color: var(--theme-topbar-search-border-focus);
3912
+ box-shadow: var(--theme-topbar-search-shadow-focus);
3913
+ }
3914
+ .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input::placeholder {
3915
+ color: var(--theme-topbar-search-placeholder);
3916
+ font-style: normal;
3917
+ }
3918
+ .s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input-icon {
3919
+ color: var(--theme-topbar-search-placeholder);
3920
+ }
3921
+ .s-topbar .s-topbar--searchbar .s-select {
3922
+ max-width: 16.2051282rem !important;
3923
+ align-self: stretch;
3924
+ margin-right: -1px;
3925
+ color: var(--theme-topbar-select-color);
3926
+ }
3927
+ .s-topbar .s-topbar--searchbar .s-select:before,
3928
+ .s-topbar .s-topbar--searchbar .s-select:after {
3929
+ z-index: 30;
3930
+ }
3931
+ .s-topbar .s-topbar--searchbar .s-select > select {
3932
+ border-top-right-radius: 0 !important;
3933
+ border-bottom-right-radius: 0 !important;
3934
+ height: 100%;
3935
+ line-height: 1.15384615;
3936
+ border-color: var(--theme-topbar-search-border);
3937
+ background-color: var(--theme-topbar-select-background);
3938
+ color: var(--theme-topbar-select-color);
3939
+ }
3940
+ .s-topbar .s-topbar--searchbar .s-select > select:focus {
3941
+ border-color: var(--theme-topbar-search-border-focus);
3942
+ box-shadow: var(--theme-topbar-search-shadow-focus);
3943
+ z-index: 25;
3944
+ }
3945
+ .s-topbar .s-topbar--searchbar .s-select + .s-topbar--searchbar--input-group > .s-input {
3946
+ border-top-left-radius: 0 !important;
3947
+ border-bottom-left-radius: 0 !important;
3948
+ }
3949
+ @media (max-width: 640px) {
3950
+ .s-topbar .s-topbar--searchbar {
3951
+ display: none;
3952
+ position: absolute;
3953
+ left: 0;
3954
+ right: 0;
3955
+ top: 100%;
3956
+ max-width: 100%;
3957
+ padding: 8px 12px;
3958
+ background: var(--theme-topbar-item-background-hover);
3959
+ }
3960
+ .s-topbar .s-topbar--searchbar.s-topbar--searchbar__open {
3961
+ display: flex;
3962
+ max-width: none;
3963
+ }
3964
+ .s-topbar .s-topbar--searchbar .s-select {
3965
+ width: 25% !important;
3966
+ }
3967
+ }
3303
3968
  .s-uploader {
3304
3969
  align-items: center;
3305
3970
  background-color: var(--black-025);
@@ -3405,6 +4070,9 @@ body.theme-highcontrast .s-uploader.is-active:before {
3405
4070
  text-overflow: ellipsis;
3406
4071
  white-space: nowrap;
3407
4072
  }
4073
+ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
4074
+ border: 1px solid var(--black);
4075
+ }
3408
4076
  .s-uploader .s-uploader--preview-thumbnail:is(img) {
3409
4077
  object-fit: scale-down;
3410
4078
  object-position: center;
@@ -3467,13 +4135,14 @@ body.theme-highcontrast .s-uploader.is-active:before {
3467
4135
  .s-user-card {
3468
4136
  display: grid;
3469
4137
  grid-template-columns: auto 1fr;
3470
- grid-column-gap: 8px;
4138
+ column-gap: 8px;
4139
+ row-gap: 4px;
3471
4140
  align-items: center;
3472
4141
  line-height: 1;
3473
4142
  padding: 8px;
3474
4143
  }
3475
4144
  .s-user-card.s-user-card__highlighted {
3476
- background-color: var(--theme-secondary-025);
4145
+ background-color: var(--theme-secondary-050);
3477
4146
  border-radius: 5px;
3478
4147
  }
3479
4148
  .s-user-card.s-user-card__highlighted .s-user-card--type {
@@ -3482,9 +4151,6 @@ body.theme-highcontrast .s-uploader.is-active:before {
3482
4151
  .s-user-card.s-user-card__full {
3483
4152
  align-items: start;
3484
4153
  }
3485
- .s-user-card.s-user-card__full .s-user-card--info {
3486
- grid-gap: 4px;
3487
- }
3488
4154
  .s-user-card.s-user-card__full .s-user-card--link {
3489
4155
  font-size: 1.15384615rem;
3490
4156
  }
@@ -3494,67 +4160,50 @@ body.theme-highcontrast .s-uploader.is-active:before {
3494
4160
  .s-user-card.s-user-card__small {
3495
4161
  display: flex;
3496
4162
  align-items: center;
3497
- grid-column-gap: unset;
4163
+ gap: 4px;
3498
4164
  padding: 0;
3499
4165
  }
3500
- .s-user-card.s-user-card__small .s-user-card--time {
3501
- margin-right: 6px;
3502
- margin-bottom: 0;
3503
- }
3504
- .s-user-card.s-user-card__small .s-user-card--link {
3505
- margin-right: 6px;
3506
- }
3507
- .s-user-card.s-user-card__small .s-user-card--avatar {
3508
- margin-right: 6px;
3509
- }
3510
4166
  .s-user-card.s-user-card__small .s-user-card--info {
3511
- display: flex;
4167
+ flex-direction: row;
3512
4168
  align-items: center;
3513
- grid-column-gap: unset;
3514
4169
  }
3515
4170
  .s-user-card.s-user-card__minimal {
3516
4171
  display: flex;
3517
4172
  align-items: center;
3518
- grid-column-gap: unset;
4173
+ gap: 4px;
3519
4174
  padding: 0;
3520
4175
  }
3521
4176
  .s-user-card.s-user-card__minimal .s-user-card--time {
3522
- margin-right: 4px;
3523
- margin-bottom: 0;
3524
4177
  white-space: nowrap;
3525
4178
  }
3526
4179
  .s-user-card.s-user-card__minimal .s-user-card--link {
3527
- margin-right: 4px;
3528
4180
  white-space: nowrap;
3529
4181
  }
3530
- .s-user-card.s-user-card__minimal .s-user-card--avatar {
3531
- margin-right: 4px;
3532
- }
3533
4182
  .s-user-card.s-user-card__minimal .s-user-card--rep {
3534
- padding: 0;
3535
4183
  color: var(--black-600);
3536
4184
  }
3537
4185
  .s-user-card.s-user-card__minimal .s-user-card--info {
3538
- display: flex;
4186
+ flex-direction: row;
3539
4187
  align-items: center;
3540
- grid-column-gap: unset;
3541
4188
  }
3542
4189
  .s-user-card .s-user-card--type {
3543
4190
  grid-column: 1 / 3;
3544
- padding-top: 4px;
3545
4191
  font-size: 12px;
3546
4192
  color: var(--theme-primary-400);
3547
4193
  }
4194
+ .s-user-card .s-user-card--type a {
4195
+ color: inherit;
4196
+ }
3548
4197
  .s-user-card--time {
3549
4198
  grid-column: 1 / 3;
3550
4199
  grid-row: 1 / 2;
3551
4200
  color: var(--black-500);
3552
4201
  font-size: 12px;
3553
- margin-bottom: 4px;
3554
4202
  }
3555
4203
  .s-user-card--info {
3556
- display: grid;
3557
- grid-gap: 2px;
4204
+ display: flex;
4205
+ flex-direction: column;
4206
+ gap: 4px;
3558
4207
  }
3559
4208
  .s-user-card--link {
3560
4209
  min-width: 0;
@@ -3569,9 +4218,9 @@ body.theme-highcontrast .s-uploader.is-active:before {
3569
4218
  padding: 0;
3570
4219
  display: flex;
3571
4220
  align-items: center;
4221
+ gap: 6px;
3572
4222
  }
3573
4223
  .s-user-card--awards li {
3574
- margin-right: 6px;
3575
4224
  font-size: 12px;
3576
4225
  }
3577
4226
  .s-user-card--rep {
@@ -3583,7 +4232,6 @@ body.theme-highcontrast .s-uploader.is-active:before {
3583
4232
  color: var(--black-500);
3584
4233
  }
3585
4234
  .s-user-card--tags {
3586
- padding-top: 1px;
3587
4235
  min-width: 0;
3588
4236
  align-items: center;
3589
4237
  flex-wrap: wrap;
@@ -3881,6 +4529,28 @@ body:not(.theme-dark) .theme-dark__forced .themed {
3881
4529
  --theme-button-filled-selected-border-color: var(--theme-secondary-500);
3882
4530
  --theme-button-outlined-border-color: var(--theme-secondary-300);
3883
4531
  --theme-button-outlined-selected-border-color: var(--theme-secondary-400);
4532
+ --theme-tag-color: var(--theme-secondary-800);
4533
+ --theme-tag-background-color: var(--theme-secondary-075);
4534
+ --theme-tag-border-color: transparent;
4535
+ --theme-tag-hover-color: var(--theme-secondary-900);
4536
+ --theme-tag-hover-background-color: var(--theme-secondary-100);
4537
+ --theme-tag-hover-border-color: transparent;
4538
+ --theme-topbar-height: 48px;
4539
+ --theme-topbar-background-color: var(--black-025);
4540
+ --theme-topbar-search-color: var(--black-700);
4541
+ --theme-topbar-search-background: var(--white);
4542
+ --theme-topbar-search-placeholder: var(--black-200);
4543
+ --theme-topbar-search-border: var(--black-200);
4544
+ --theme-topbar-search-border-focus: var(--blue-300);
4545
+ --theme-topbar-search-shadow-focus: 0 0 0 4px var(--focus-ring);
4546
+ --theme-topbar-select-color: var(--black-700);
4547
+ --theme-topbar-select-background: var(--black-075);
4548
+ --theme-topbar-item-color: var(--black-600);
4549
+ --theme-topbar-item-color-hover: var(--black-800);
4550
+ --theme-topbar-item-background-hover: var(--black-075);
4551
+ --theme-topbar-item-color-current: var(--black);
4552
+ --theme-topbar-item-border-current: var(--theme-primary-color);
4553
+ --theme-topbar-accent-border: 3px solid var(--theme-primary-color);
3884
4554
  }
3885
4555
  .highcontrast-themed-colors,
3886
4556
  body.theme-highcontrast:not(.theme-dark),
@@ -4544,11 +5214,11 @@ body.theme-system.theme-highcontrast .theme-light__forced {
4544
5214
  --fc-dark: var(--black-900);
4545
5215
  --fc-medium: var(--black-700);
4546
5216
  --fc-light: var(--black-500);
4547
- --focus-ring: hsla(206, 100%, 40%, 0.5);
4548
- --focus-ring-success: hsla(140, 40%, 40%, 0.5);
4549
- --focus-ring-warning: hsla(47, 76%, 46%, 0.5);
4550
- --focus-ring-error: hsla(358, 62%, 47%, 0.5);
4551
- --focus-ring-muted: hsla(210, 8%, 15%, 0.5);
5217
+ --focus-ring: hsla(206, 100%, 40%, 0.9);
5218
+ --focus-ring-success: hsla(140, 40%, 40%, 0.9);
5219
+ --focus-ring-warning: hsla(47, 76%, 46%, 0.9);
5220
+ --focus-ring-error: hsla(358, 62%, 47%, 0.9);
5221
+ --focus-ring-muted: hsla(210, 8%, 55%, 0.95);
4552
5222
  --bs-sm: none;
4553
5223
  --bs-md: none;
4554
5224
  --bs-lg: none;
@@ -4595,10 +5265,10 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
4595
5265
  --orange-700: hsl(27, 100%, 82%);
4596
5266
  --orange-800: hsl(27, 100%, 87%);
4597
5267
  --orange-900: hsl(27, 100%, 91%);
4598
- --blue-050: hsl(206, 100%, 3%);
4599
- --blue-100: hsl(206, 100%, 6%);
4600
- --blue-200: hsl(206, 100%, 12%);
4601
- --blue-300: hsl(206, 100%, 18%);
5268
+ --blue-050: hsl(206, 100%, 4%);
5269
+ --blue-100: hsl(206, 100%, 11%);
5270
+ --blue-200: hsl(206, 100%, 18%);
5271
+ --blue-300: hsl(206, 100%, 25%);
4602
5272
  --blue-400: hsl(206, 100%, 75%);
4603
5273
  --blue-500: hsl(206, 100%, 80%);
4604
5274
  --blue-600: hsl(206, 100%, 85%);
@@ -4661,11 +5331,11 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
4661
5331
  --bc-medium: var(--black-400);
4662
5332
  --bc-dark: var(--black-700);
4663
5333
  --bc-darker: var(--black-900);
4664
- --focus-ring: hsla(206, 100%, 40%, 0.5);
4665
- --focus-ring-success: hsla(140, 40%, 40%, 0.5);
4666
- --focus-ring-warning: hsla(47, 76%, 46%, 0.5);
4667
- --focus-ring-error: hsla(358, 62%, 47%, 0.5);
4668
- --focus-ring-muted: hsla(210, 8%, 15%, 0.5);
5334
+ --focus-ring: hsla(206, 100%, 40%, 0.9);
5335
+ --focus-ring-success: hsla(140, 40%, 40%, 0.9);
5336
+ --focus-ring-warning: hsla(47, 76%, 46%, 0.9);
5337
+ --focus-ring-error: hsla(358, 62%, 47%, 0.9);
5338
+ --focus-ring-muted: hsla(210, 8%, 55%, 0.95);
4669
5339
  --fc-dark: var(--black-900);
4670
5340
  --fc-medium: var(--black-700);
4671
5341
  --fc-light: var(--black-500);
@@ -4715,10 +5385,10 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
4715
5385
  --orange-700: hsl(27, 100%, 82%);
4716
5386
  --orange-800: hsl(27, 100%, 87%);
4717
5387
  --orange-900: hsl(27, 100%, 91%);
4718
- --blue-050: hsl(206, 100%, 3%);
4719
- --blue-100: hsl(206, 100%, 6%);
4720
- --blue-200: hsl(206, 100%, 12%);
4721
- --blue-300: hsl(206, 100%, 18%);
5388
+ --blue-050: hsl(206, 100%, 4%);
5389
+ --blue-100: hsl(206, 100%, 11%);
5390
+ --blue-200: hsl(206, 100%, 18%);
5391
+ --blue-300: hsl(206, 100%, 25%);
4722
5392
  --blue-400: hsl(206, 100%, 75%);
4723
5393
  --blue-500: hsl(206, 100%, 80%);
4724
5394
  --blue-600: hsl(206, 100%, 85%);
@@ -4781,11 +5451,11 @@ body.theme-highcontrast:not(.theme-dark) .theme-dark__forced {
4781
5451
  --bc-medium: var(--black-400);
4782
5452
  --bc-dark: var(--black-700);
4783
5453
  --bc-darker: var(--black-900);
4784
- --focus-ring: hsla(206, 100%, 40%, 0.5);
4785
- --focus-ring-success: hsla(140, 40%, 40%, 0.5);
4786
- --focus-ring-warning: hsla(47, 76%, 46%, 0.5);
4787
- --focus-ring-error: hsla(358, 62%, 47%, 0.5);
4788
- --focus-ring-muted: hsla(210, 8%, 15%, 0.5);
5454
+ --focus-ring: hsla(206, 100%, 40%, 0.9);
5455
+ --focus-ring-success: hsla(140, 40%, 40%, 0.9);
5456
+ --focus-ring-warning: hsla(47, 76%, 46%, 0.9);
5457
+ --focus-ring-error: hsla(358, 62%, 47%, 0.9);
5458
+ --focus-ring-muted: hsla(210, 8%, 55%, 0.95);
4789
5459
  --fc-dark: var(--black-900);
4790
5460
  --fc-medium: var(--black-700);
4791
5461
  --fc-light: var(--black-500);
@@ -8758,11 +9428,8 @@ body.theme-dark .d\:bg-theme-secondary-025,
8758
9428
  .fc-inherit {
8759
9429
  color: inherit !important;
8760
9430
  }
8761
- .flex__fl0,
8762
9431
  .flex__fl-shrink0,
8763
- .flex__fl0 > .d-flex,
8764
9432
  .flex__fl-shrink0 > .d-flex,
8765
- .flex__fl0 > .flex--item,
8766
9433
  .flex__fl-shrink0 > .flex--item {
8767
9434
  flex: 0 auto;
8768
9435
  }
@@ -8771,11 +9438,8 @@ body.theme-dark .d\:bg-theme-secondary-025,
8771
9438
  .flex__fl-equal > .flex--item {
8772
9439
  flex: 1 1 0%;
8773
9440
  }
8774
- .flex__fl1,
8775
9441
  .flex__fl-grow1,
8776
- .flex__fl1 > .d-flex,
8777
9442
  .flex__fl-grow1 > .d-flex,
8778
- .flex__fl1 > .flex--item,
8779
9443
  .flex__fl-grow1 > .flex--item {
8780
9444
  flex: 1 auto;
8781
9445
  }
@@ -8815,75 +9479,51 @@ body.theme-dark .d\:bg-theme-secondary-025,
8815
9479
  .flex--item12 {
8816
9480
  flex-basis: 100%;
8817
9481
  }
8818
- .flex__allcells1 > .d-flex,
8819
9482
  .flex__allitems1 > .d-flex,
8820
- .flex__allcells1 > .flex--item,
8821
9483
  .flex__allitems1 > .flex--item {
8822
9484
  flex-basis: 8.33333333%;
8823
9485
  }
8824
- .flex__allcells2 > .d-flex,
8825
9486
  .flex__allitems2 > .d-flex,
8826
- .flex__allcells2 > .flex--item,
8827
9487
  .flex__allitems2 > .flex--item {
8828
9488
  flex-basis: 16.66666667%;
8829
9489
  }
8830
- .flex__allcells3 > .d-flex,
8831
9490
  .flex__allitems3 > .d-flex,
8832
- .flex__allcells3 > .flex--item,
8833
9491
  .flex__allitems3 > .flex--item {
8834
9492
  flex-basis: 25%;
8835
9493
  }
8836
- .flex__allcells4 > .d-flex,
8837
9494
  .flex__allitems4 > .d-flex,
8838
- .flex__allcells4 > .flex--item,
8839
9495
  .flex__allitems4 > .flex--item {
8840
9496
  flex-basis: 33.33333333%;
8841
9497
  }
8842
- .flex__allcells5 > .d-flex,
8843
9498
  .flex__allitems5 > .d-flex,
8844
- .flex__allcells5 > .flex--item,
8845
9499
  .flex__allitems5 > .flex--item {
8846
9500
  flex-basis: 41.66666667%;
8847
9501
  }
8848
- .flex__allcells6 > .d-flex,
8849
9502
  .flex__allitems6 > .d-flex,
8850
- .flex__allcells6 > .flex--item,
8851
9503
  .flex__allitems6 > .flex--item {
8852
9504
  flex-basis: 50%;
8853
9505
  }
8854
- .flex__allcells7 > .d-flex,
8855
9506
  .flex__allitems7 > .d-flex,
8856
- .flex__allcells7 > .flex--item,
8857
9507
  .flex__allitems7 > .flex--item {
8858
9508
  flex-basis: 58.33333333%;
8859
9509
  }
8860
- .flex__allcells8 > .d-flex,
8861
9510
  .flex__allitems8 > .d-flex,
8862
- .flex__allcells8 > .flex--item,
8863
9511
  .flex__allitems8 > .flex--item {
8864
9512
  flex-basis: 66.66666667%;
8865
9513
  }
8866
- .flex__allcells9 > .d-flex,
8867
9514
  .flex__allitems9 > .d-flex,
8868
- .flex__allcells9 > .flex--item,
8869
9515
  .flex__allitems9 > .flex--item {
8870
9516
  flex-basis: 75%;
8871
9517
  }
8872
- .flex__allcells10 > .d-flex,
8873
9518
  .flex__allitems10 > .d-flex,
8874
- .flex__allcells10 > .flex--item,
8875
9519
  .flex__allitems10 > .flex--item {
8876
9520
  flex-basis: 83.33333333%;
8877
9521
  }
8878
- .flex__allcells11 > .d-flex,
8879
9522
  .flex__allitems11 > .d-flex,
8880
- .flex__allcells11 > .flex--item,
8881
9523
  .flex__allitems11 > .flex--item {
8882
9524
  flex-basis: 91.66666667%;
8883
9525
  }
8884
- .flex__allcells12 > .d-flex,
8885
9526
  .flex__allitems12 > .d-flex,
8886
- .flex__allcells12 > .flex--item,
8887
9527
  .flex__allitems12 > .flex--item {
8888
9528
  flex-basis: 100%;
8889
9529
  }
@@ -8898,9 +9538,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8898
9538
  margin: 1px;
8899
9539
  }
8900
9540
  .gs2 > .flex--item1,
8901
- .gs2.flex__allcells1 > .d-flex,
8902
9541
  .gs2.flex__allitems1 > .d-flex,
8903
- .gs2.flex__allcells1 > .flex--item,
8904
9542
  .gs2.flex__allitems1 > .flex--item {
8905
9543
  flex-basis: calc(8.333333333333334% - 2px);
8906
9544
  }
@@ -8908,9 +9546,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8908
9546
  margin: 1px;
8909
9547
  }
8910
9548
  .gs2 > .flex--item2,
8911
- .gs2.flex__allcells2 > .d-flex,
8912
9549
  .gs2.flex__allitems2 > .d-flex,
8913
- .gs2.flex__allcells2 > .flex--item,
8914
9550
  .gs2.flex__allitems2 > .flex--item {
8915
9551
  flex-basis: calc(16.666666666666668% - 2px);
8916
9552
  }
@@ -8918,9 +9554,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8918
9554
  margin: 1px;
8919
9555
  }
8920
9556
  .gs2 > .flex--item3,
8921
- .gs2.flex__allcells3 > .d-flex,
8922
9557
  .gs2.flex__allitems3 > .d-flex,
8923
- .gs2.flex__allcells3 > .flex--item,
8924
9558
  .gs2.flex__allitems3 > .flex--item {
8925
9559
  flex-basis: calc(25% - 2px);
8926
9560
  }
@@ -8928,9 +9562,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8928
9562
  margin: 1px;
8929
9563
  }
8930
9564
  .gs2 > .flex--item4,
8931
- .gs2.flex__allcells4 > .d-flex,
8932
9565
  .gs2.flex__allitems4 > .d-flex,
8933
- .gs2.flex__allcells4 > .flex--item,
8934
9566
  .gs2.flex__allitems4 > .flex--item {
8935
9567
  flex-basis: calc(33.333333333333336% - 2px);
8936
9568
  }
@@ -8938,9 +9570,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8938
9570
  margin: 1px;
8939
9571
  }
8940
9572
  .gs2 > .flex--item5,
8941
- .gs2.flex__allcells5 > .d-flex,
8942
9573
  .gs2.flex__allitems5 > .d-flex,
8943
- .gs2.flex__allcells5 > .flex--item,
8944
9574
  .gs2.flex__allitems5 > .flex--item {
8945
9575
  flex-basis: calc(41.666666666666664% - 2px);
8946
9576
  }
@@ -8948,9 +9578,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8948
9578
  margin: 1px;
8949
9579
  }
8950
9580
  .gs2 > .flex--item6,
8951
- .gs2.flex__allcells6 > .d-flex,
8952
9581
  .gs2.flex__allitems6 > .d-flex,
8953
- .gs2.flex__allcells6 > .flex--item,
8954
9582
  .gs2.flex__allitems6 > .flex--item {
8955
9583
  flex-basis: calc(50% - 2px);
8956
9584
  }
@@ -8958,9 +9586,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8958
9586
  margin: 1px;
8959
9587
  }
8960
9588
  .gs2 > .flex--item7,
8961
- .gs2.flex__allcells7 > .d-flex,
8962
9589
  .gs2.flex__allitems7 > .d-flex,
8963
- .gs2.flex__allcells7 > .flex--item,
8964
9590
  .gs2.flex__allitems7 > .flex--item {
8965
9591
  flex-basis: calc(58.333333333333336% - 2px);
8966
9592
  }
@@ -8968,9 +9594,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8968
9594
  margin: 1px;
8969
9595
  }
8970
9596
  .gs2 > .flex--item8,
8971
- .gs2.flex__allcells8 > .d-flex,
8972
9597
  .gs2.flex__allitems8 > .d-flex,
8973
- .gs2.flex__allcells8 > .flex--item,
8974
9598
  .gs2.flex__allitems8 > .flex--item {
8975
9599
  flex-basis: calc(66.66666666666667% - 2px);
8976
9600
  }
@@ -8978,9 +9602,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8978
9602
  margin: 1px;
8979
9603
  }
8980
9604
  .gs2 > .flex--item9,
8981
- .gs2.flex__allcells9 > .d-flex,
8982
9605
  .gs2.flex__allitems9 > .d-flex,
8983
- .gs2.flex__allcells9 > .flex--item,
8984
9606
  .gs2.flex__allitems9 > .flex--item {
8985
9607
  flex-basis: calc(75% - 2px);
8986
9608
  }
@@ -8988,9 +9610,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8988
9610
  margin: 1px;
8989
9611
  }
8990
9612
  .gs2 > .flex--item10,
8991
- .gs2.flex__allcells10 > .d-flex,
8992
9613
  .gs2.flex__allitems10 > .d-flex,
8993
- .gs2.flex__allcells10 > .flex--item,
8994
9614
  .gs2.flex__allitems10 > .flex--item {
8995
9615
  flex-basis: calc(83.33333333333333% - 2px);
8996
9616
  }
@@ -8998,9 +9618,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
8998
9618
  margin: 1px;
8999
9619
  }
9000
9620
  .gs2 > .flex--item11,
9001
- .gs2.flex__allcells11 > .d-flex,
9002
9621
  .gs2.flex__allitems11 > .d-flex,
9003
- .gs2.flex__allcells11 > .flex--item,
9004
9622
  .gs2.flex__allitems11 > .flex--item {
9005
9623
  flex-basis: calc(91.66666666666667% - 2px);
9006
9624
  }
@@ -9008,9 +9626,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9008
9626
  margin: 1px;
9009
9627
  }
9010
9628
  .gs2 > .flex--item12,
9011
- .gs2.flex__allcells12 > .d-flex,
9012
9629
  .gs2.flex__allitems12 > .d-flex,
9013
- .gs2.flex__allcells12 > .flex--item,
9014
9630
  .gs2.flex__allitems12 > .flex--item {
9015
9631
  flex-basis: calc(100% - 2px);
9016
9632
  }
@@ -9025,9 +9641,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9025
9641
  margin: 2px;
9026
9642
  }
9027
9643
  .gs4 > .flex--item1,
9028
- .gs4.flex__allcells1 > .d-flex,
9029
9644
  .gs4.flex__allitems1 > .d-flex,
9030
- .gs4.flex__allcells1 > .flex--item,
9031
9645
  .gs4.flex__allitems1 > .flex--item {
9032
9646
  flex-basis: calc(8.333333333333334% - 4px);
9033
9647
  }
@@ -9035,9 +9649,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9035
9649
  margin: 2px;
9036
9650
  }
9037
9651
  .gs4 > .flex--item2,
9038
- .gs4.flex__allcells2 > .d-flex,
9039
9652
  .gs4.flex__allitems2 > .d-flex,
9040
- .gs4.flex__allcells2 > .flex--item,
9041
9653
  .gs4.flex__allitems2 > .flex--item {
9042
9654
  flex-basis: calc(16.666666666666668% - 4px);
9043
9655
  }
@@ -9045,9 +9657,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9045
9657
  margin: 2px;
9046
9658
  }
9047
9659
  .gs4 > .flex--item3,
9048
- .gs4.flex__allcells3 > .d-flex,
9049
9660
  .gs4.flex__allitems3 > .d-flex,
9050
- .gs4.flex__allcells3 > .flex--item,
9051
9661
  .gs4.flex__allitems3 > .flex--item {
9052
9662
  flex-basis: calc(25% - 4px);
9053
9663
  }
@@ -9055,9 +9665,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9055
9665
  margin: 2px;
9056
9666
  }
9057
9667
  .gs4 > .flex--item4,
9058
- .gs4.flex__allcells4 > .d-flex,
9059
9668
  .gs4.flex__allitems4 > .d-flex,
9060
- .gs4.flex__allcells4 > .flex--item,
9061
9669
  .gs4.flex__allitems4 > .flex--item {
9062
9670
  flex-basis: calc(33.333333333333336% - 4px);
9063
9671
  }
@@ -9065,9 +9673,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9065
9673
  margin: 2px;
9066
9674
  }
9067
9675
  .gs4 > .flex--item5,
9068
- .gs4.flex__allcells5 > .d-flex,
9069
9676
  .gs4.flex__allitems5 > .d-flex,
9070
- .gs4.flex__allcells5 > .flex--item,
9071
9677
  .gs4.flex__allitems5 > .flex--item {
9072
9678
  flex-basis: calc(41.666666666666664% - 4px);
9073
9679
  }
@@ -9075,9 +9681,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9075
9681
  margin: 2px;
9076
9682
  }
9077
9683
  .gs4 > .flex--item6,
9078
- .gs4.flex__allcells6 > .d-flex,
9079
9684
  .gs4.flex__allitems6 > .d-flex,
9080
- .gs4.flex__allcells6 > .flex--item,
9081
9685
  .gs4.flex__allitems6 > .flex--item {
9082
9686
  flex-basis: calc(50% - 4px);
9083
9687
  }
@@ -9085,9 +9689,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9085
9689
  margin: 2px;
9086
9690
  }
9087
9691
  .gs4 > .flex--item7,
9088
- .gs4.flex__allcells7 > .d-flex,
9089
9692
  .gs4.flex__allitems7 > .d-flex,
9090
- .gs4.flex__allcells7 > .flex--item,
9091
9693
  .gs4.flex__allitems7 > .flex--item {
9092
9694
  flex-basis: calc(58.333333333333336% - 4px);
9093
9695
  }
@@ -9095,9 +9697,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9095
9697
  margin: 2px;
9096
9698
  }
9097
9699
  .gs4 > .flex--item8,
9098
- .gs4.flex__allcells8 > .d-flex,
9099
9700
  .gs4.flex__allitems8 > .d-flex,
9100
- .gs4.flex__allcells8 > .flex--item,
9101
9701
  .gs4.flex__allitems8 > .flex--item {
9102
9702
  flex-basis: calc(66.66666666666667% - 4px);
9103
9703
  }
@@ -9105,9 +9705,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9105
9705
  margin: 2px;
9106
9706
  }
9107
9707
  .gs4 > .flex--item9,
9108
- .gs4.flex__allcells9 > .d-flex,
9109
9708
  .gs4.flex__allitems9 > .d-flex,
9110
- .gs4.flex__allcells9 > .flex--item,
9111
9709
  .gs4.flex__allitems9 > .flex--item {
9112
9710
  flex-basis: calc(75% - 4px);
9113
9711
  }
@@ -9115,9 +9713,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9115
9713
  margin: 2px;
9116
9714
  }
9117
9715
  .gs4 > .flex--item10,
9118
- .gs4.flex__allcells10 > .d-flex,
9119
9716
  .gs4.flex__allitems10 > .d-flex,
9120
- .gs4.flex__allcells10 > .flex--item,
9121
9717
  .gs4.flex__allitems10 > .flex--item {
9122
9718
  flex-basis: calc(83.33333333333333% - 4px);
9123
9719
  }
@@ -9125,9 +9721,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9125
9721
  margin: 2px;
9126
9722
  }
9127
9723
  .gs4 > .flex--item11,
9128
- .gs4.flex__allcells11 > .d-flex,
9129
9724
  .gs4.flex__allitems11 > .d-flex,
9130
- .gs4.flex__allcells11 > .flex--item,
9131
9725
  .gs4.flex__allitems11 > .flex--item {
9132
9726
  flex-basis: calc(91.66666666666667% - 4px);
9133
9727
  }
@@ -9135,9 +9729,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9135
9729
  margin: 2px;
9136
9730
  }
9137
9731
  .gs4 > .flex--item12,
9138
- .gs4.flex__allcells12 > .d-flex,
9139
9732
  .gs4.flex__allitems12 > .d-flex,
9140
- .gs4.flex__allcells12 > .flex--item,
9141
9733
  .gs4.flex__allitems12 > .flex--item {
9142
9734
  flex-basis: calc(100% - 4px);
9143
9735
  }
@@ -9152,9 +9744,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9152
9744
  margin: 3px;
9153
9745
  }
9154
9746
  .gs6 > .flex--item1,
9155
- .gs6.flex__allcells1 > .d-flex,
9156
9747
  .gs6.flex__allitems1 > .d-flex,
9157
- .gs6.flex__allcells1 > .flex--item,
9158
9748
  .gs6.flex__allitems1 > .flex--item {
9159
9749
  flex-basis: calc(8.333333333333334% - 6px);
9160
9750
  }
@@ -9162,9 +9752,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9162
9752
  margin: 3px;
9163
9753
  }
9164
9754
  .gs6 > .flex--item2,
9165
- .gs6.flex__allcells2 > .d-flex,
9166
9755
  .gs6.flex__allitems2 > .d-flex,
9167
- .gs6.flex__allcells2 > .flex--item,
9168
9756
  .gs6.flex__allitems2 > .flex--item {
9169
9757
  flex-basis: calc(16.666666666666668% - 6px);
9170
9758
  }
@@ -9172,9 +9760,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9172
9760
  margin: 3px;
9173
9761
  }
9174
9762
  .gs6 > .flex--item3,
9175
- .gs6.flex__allcells3 > .d-flex,
9176
9763
  .gs6.flex__allitems3 > .d-flex,
9177
- .gs6.flex__allcells3 > .flex--item,
9178
9764
  .gs6.flex__allitems3 > .flex--item {
9179
9765
  flex-basis: calc(25% - 6px);
9180
9766
  }
@@ -9182,9 +9768,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9182
9768
  margin: 3px;
9183
9769
  }
9184
9770
  .gs6 > .flex--item4,
9185
- .gs6.flex__allcells4 > .d-flex,
9186
9771
  .gs6.flex__allitems4 > .d-flex,
9187
- .gs6.flex__allcells4 > .flex--item,
9188
9772
  .gs6.flex__allitems4 > .flex--item {
9189
9773
  flex-basis: calc(33.333333333333336% - 6px);
9190
9774
  }
@@ -9192,9 +9776,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9192
9776
  margin: 3px;
9193
9777
  }
9194
9778
  .gs6 > .flex--item5,
9195
- .gs6.flex__allcells5 > .d-flex,
9196
9779
  .gs6.flex__allitems5 > .d-flex,
9197
- .gs6.flex__allcells5 > .flex--item,
9198
9780
  .gs6.flex__allitems5 > .flex--item {
9199
9781
  flex-basis: calc(41.666666666666664% - 6px);
9200
9782
  }
@@ -9202,9 +9784,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9202
9784
  margin: 3px;
9203
9785
  }
9204
9786
  .gs6 > .flex--item6,
9205
- .gs6.flex__allcells6 > .d-flex,
9206
9787
  .gs6.flex__allitems6 > .d-flex,
9207
- .gs6.flex__allcells6 > .flex--item,
9208
9788
  .gs6.flex__allitems6 > .flex--item {
9209
9789
  flex-basis: calc(50% - 6px);
9210
9790
  }
@@ -9212,9 +9792,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9212
9792
  margin: 3px;
9213
9793
  }
9214
9794
  .gs6 > .flex--item7,
9215
- .gs6.flex__allcells7 > .d-flex,
9216
9795
  .gs6.flex__allitems7 > .d-flex,
9217
- .gs6.flex__allcells7 > .flex--item,
9218
9796
  .gs6.flex__allitems7 > .flex--item {
9219
9797
  flex-basis: calc(58.333333333333336% - 6px);
9220
9798
  }
@@ -9222,9 +9800,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9222
9800
  margin: 3px;
9223
9801
  }
9224
9802
  .gs6 > .flex--item8,
9225
- .gs6.flex__allcells8 > .d-flex,
9226
9803
  .gs6.flex__allitems8 > .d-flex,
9227
- .gs6.flex__allcells8 > .flex--item,
9228
9804
  .gs6.flex__allitems8 > .flex--item {
9229
9805
  flex-basis: calc(66.66666666666667% - 6px);
9230
9806
  }
@@ -9232,9 +9808,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9232
9808
  margin: 3px;
9233
9809
  }
9234
9810
  .gs6 > .flex--item9,
9235
- .gs6.flex__allcells9 > .d-flex,
9236
9811
  .gs6.flex__allitems9 > .d-flex,
9237
- .gs6.flex__allcells9 > .flex--item,
9238
9812
  .gs6.flex__allitems9 > .flex--item {
9239
9813
  flex-basis: calc(75% - 6px);
9240
9814
  }
@@ -9242,9 +9816,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9242
9816
  margin: 3px;
9243
9817
  }
9244
9818
  .gs6 > .flex--item10,
9245
- .gs6.flex__allcells10 > .d-flex,
9246
9819
  .gs6.flex__allitems10 > .d-flex,
9247
- .gs6.flex__allcells10 > .flex--item,
9248
9820
  .gs6.flex__allitems10 > .flex--item {
9249
9821
  flex-basis: calc(83.33333333333333% - 6px);
9250
9822
  }
@@ -9252,9 +9824,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9252
9824
  margin: 3px;
9253
9825
  }
9254
9826
  .gs6 > .flex--item11,
9255
- .gs6.flex__allcells11 > .d-flex,
9256
9827
  .gs6.flex__allitems11 > .d-flex,
9257
- .gs6.flex__allcells11 > .flex--item,
9258
9828
  .gs6.flex__allitems11 > .flex--item {
9259
9829
  flex-basis: calc(91.66666666666667% - 6px);
9260
9830
  }
@@ -9262,9 +9832,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9262
9832
  margin: 3px;
9263
9833
  }
9264
9834
  .gs6 > .flex--item12,
9265
- .gs6.flex__allcells12 > .d-flex,
9266
9835
  .gs6.flex__allitems12 > .d-flex,
9267
- .gs6.flex__allcells12 > .flex--item,
9268
9836
  .gs6.flex__allitems12 > .flex--item {
9269
9837
  flex-basis: calc(100% - 6px);
9270
9838
  }
@@ -9279,9 +9847,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9279
9847
  margin: 4px;
9280
9848
  }
9281
9849
  .gs8 > .flex--item1,
9282
- .gs8.flex__allcells1 > .d-flex,
9283
9850
  .gs8.flex__allitems1 > .d-flex,
9284
- .gs8.flex__allcells1 > .flex--item,
9285
9851
  .gs8.flex__allitems1 > .flex--item {
9286
9852
  flex-basis: calc(8.333333333333334% - 8px);
9287
9853
  }
@@ -9289,9 +9855,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9289
9855
  margin: 4px;
9290
9856
  }
9291
9857
  .gs8 > .flex--item2,
9292
- .gs8.flex__allcells2 > .d-flex,
9293
9858
  .gs8.flex__allitems2 > .d-flex,
9294
- .gs8.flex__allcells2 > .flex--item,
9295
9859
  .gs8.flex__allitems2 > .flex--item {
9296
9860
  flex-basis: calc(16.666666666666668% - 8px);
9297
9861
  }
@@ -9299,9 +9863,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9299
9863
  margin: 4px;
9300
9864
  }
9301
9865
  .gs8 > .flex--item3,
9302
- .gs8.flex__allcells3 > .d-flex,
9303
9866
  .gs8.flex__allitems3 > .d-flex,
9304
- .gs8.flex__allcells3 > .flex--item,
9305
9867
  .gs8.flex__allitems3 > .flex--item {
9306
9868
  flex-basis: calc(25% - 8px);
9307
9869
  }
@@ -9309,9 +9871,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9309
9871
  margin: 4px;
9310
9872
  }
9311
9873
  .gs8 > .flex--item4,
9312
- .gs8.flex__allcells4 > .d-flex,
9313
9874
  .gs8.flex__allitems4 > .d-flex,
9314
- .gs8.flex__allcells4 > .flex--item,
9315
9875
  .gs8.flex__allitems4 > .flex--item {
9316
9876
  flex-basis: calc(33.333333333333336% - 8px);
9317
9877
  }
@@ -9319,9 +9879,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9319
9879
  margin: 4px;
9320
9880
  }
9321
9881
  .gs8 > .flex--item5,
9322
- .gs8.flex__allcells5 > .d-flex,
9323
9882
  .gs8.flex__allitems5 > .d-flex,
9324
- .gs8.flex__allcells5 > .flex--item,
9325
9883
  .gs8.flex__allitems5 > .flex--item {
9326
9884
  flex-basis: calc(41.666666666666664% - 8px);
9327
9885
  }
@@ -9329,9 +9887,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9329
9887
  margin: 4px;
9330
9888
  }
9331
9889
  .gs8 > .flex--item6,
9332
- .gs8.flex__allcells6 > .d-flex,
9333
9890
  .gs8.flex__allitems6 > .d-flex,
9334
- .gs8.flex__allcells6 > .flex--item,
9335
9891
  .gs8.flex__allitems6 > .flex--item {
9336
9892
  flex-basis: calc(50% - 8px);
9337
9893
  }
@@ -9339,9 +9895,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9339
9895
  margin: 4px;
9340
9896
  }
9341
9897
  .gs8 > .flex--item7,
9342
- .gs8.flex__allcells7 > .d-flex,
9343
9898
  .gs8.flex__allitems7 > .d-flex,
9344
- .gs8.flex__allcells7 > .flex--item,
9345
9899
  .gs8.flex__allitems7 > .flex--item {
9346
9900
  flex-basis: calc(58.333333333333336% - 8px);
9347
9901
  }
@@ -9349,9 +9903,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9349
9903
  margin: 4px;
9350
9904
  }
9351
9905
  .gs8 > .flex--item8,
9352
- .gs8.flex__allcells8 > .d-flex,
9353
9906
  .gs8.flex__allitems8 > .d-flex,
9354
- .gs8.flex__allcells8 > .flex--item,
9355
9907
  .gs8.flex__allitems8 > .flex--item {
9356
9908
  flex-basis: calc(66.66666666666667% - 8px);
9357
9909
  }
@@ -9359,9 +9911,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9359
9911
  margin: 4px;
9360
9912
  }
9361
9913
  .gs8 > .flex--item9,
9362
- .gs8.flex__allcells9 > .d-flex,
9363
9914
  .gs8.flex__allitems9 > .d-flex,
9364
- .gs8.flex__allcells9 > .flex--item,
9365
9915
  .gs8.flex__allitems9 > .flex--item {
9366
9916
  flex-basis: calc(75% - 8px);
9367
9917
  }
@@ -9369,9 +9919,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9369
9919
  margin: 4px;
9370
9920
  }
9371
9921
  .gs8 > .flex--item10,
9372
- .gs8.flex__allcells10 > .d-flex,
9373
9922
  .gs8.flex__allitems10 > .d-flex,
9374
- .gs8.flex__allcells10 > .flex--item,
9375
9923
  .gs8.flex__allitems10 > .flex--item {
9376
9924
  flex-basis: calc(83.33333333333333% - 8px);
9377
9925
  }
@@ -9379,9 +9927,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9379
9927
  margin: 4px;
9380
9928
  }
9381
9929
  .gs8 > .flex--item11,
9382
- .gs8.flex__allcells11 > .d-flex,
9383
9930
  .gs8.flex__allitems11 > .d-flex,
9384
- .gs8.flex__allcells11 > .flex--item,
9385
9931
  .gs8.flex__allitems11 > .flex--item {
9386
9932
  flex-basis: calc(91.66666666666667% - 8px);
9387
9933
  }
@@ -9389,9 +9935,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9389
9935
  margin: 4px;
9390
9936
  }
9391
9937
  .gs8 > .flex--item12,
9392
- .gs8.flex__allcells12 > .d-flex,
9393
9938
  .gs8.flex__allitems12 > .d-flex,
9394
- .gs8.flex__allcells12 > .flex--item,
9395
9939
  .gs8.flex__allitems12 > .flex--item {
9396
9940
  flex-basis: calc(100% - 8px);
9397
9941
  }
@@ -9406,9 +9950,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9406
9950
  margin: 6px;
9407
9951
  }
9408
9952
  .gs12 > .flex--item1,
9409
- .gs12.flex__allcells1 > .d-flex,
9410
9953
  .gs12.flex__allitems1 > .d-flex,
9411
- .gs12.flex__allcells1 > .flex--item,
9412
9954
  .gs12.flex__allitems1 > .flex--item {
9413
9955
  flex-basis: calc(8.333333333333334% - 12px);
9414
9956
  }
@@ -9416,9 +9958,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9416
9958
  margin: 6px;
9417
9959
  }
9418
9960
  .gs12 > .flex--item2,
9419
- .gs12.flex__allcells2 > .d-flex,
9420
9961
  .gs12.flex__allitems2 > .d-flex,
9421
- .gs12.flex__allcells2 > .flex--item,
9422
9962
  .gs12.flex__allitems2 > .flex--item {
9423
9963
  flex-basis: calc(16.666666666666668% - 12px);
9424
9964
  }
@@ -9426,9 +9966,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9426
9966
  margin: 6px;
9427
9967
  }
9428
9968
  .gs12 > .flex--item3,
9429
- .gs12.flex__allcells3 > .d-flex,
9430
9969
  .gs12.flex__allitems3 > .d-flex,
9431
- .gs12.flex__allcells3 > .flex--item,
9432
9970
  .gs12.flex__allitems3 > .flex--item {
9433
9971
  flex-basis: calc(25% - 12px);
9434
9972
  }
@@ -9436,9 +9974,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9436
9974
  margin: 6px;
9437
9975
  }
9438
9976
  .gs12 > .flex--item4,
9439
- .gs12.flex__allcells4 > .d-flex,
9440
9977
  .gs12.flex__allitems4 > .d-flex,
9441
- .gs12.flex__allcells4 > .flex--item,
9442
9978
  .gs12.flex__allitems4 > .flex--item {
9443
9979
  flex-basis: calc(33.333333333333336% - 12px);
9444
9980
  }
@@ -9446,9 +9982,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9446
9982
  margin: 6px;
9447
9983
  }
9448
9984
  .gs12 > .flex--item5,
9449
- .gs12.flex__allcells5 > .d-flex,
9450
9985
  .gs12.flex__allitems5 > .d-flex,
9451
- .gs12.flex__allcells5 > .flex--item,
9452
9986
  .gs12.flex__allitems5 > .flex--item {
9453
9987
  flex-basis: calc(41.666666666666664% - 12px);
9454
9988
  }
@@ -9456,9 +9990,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9456
9990
  margin: 6px;
9457
9991
  }
9458
9992
  .gs12 > .flex--item6,
9459
- .gs12.flex__allcells6 > .d-flex,
9460
9993
  .gs12.flex__allitems6 > .d-flex,
9461
- .gs12.flex__allcells6 > .flex--item,
9462
9994
  .gs12.flex__allitems6 > .flex--item {
9463
9995
  flex-basis: calc(50% - 12px);
9464
9996
  }
@@ -9466,9 +9998,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9466
9998
  margin: 6px;
9467
9999
  }
9468
10000
  .gs12 > .flex--item7,
9469
- .gs12.flex__allcells7 > .d-flex,
9470
10001
  .gs12.flex__allitems7 > .d-flex,
9471
- .gs12.flex__allcells7 > .flex--item,
9472
10002
  .gs12.flex__allitems7 > .flex--item {
9473
10003
  flex-basis: calc(58.333333333333336% - 12px);
9474
10004
  }
@@ -9476,9 +10006,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9476
10006
  margin: 6px;
9477
10007
  }
9478
10008
  .gs12 > .flex--item8,
9479
- .gs12.flex__allcells8 > .d-flex,
9480
10009
  .gs12.flex__allitems8 > .d-flex,
9481
- .gs12.flex__allcells8 > .flex--item,
9482
10010
  .gs12.flex__allitems8 > .flex--item {
9483
10011
  flex-basis: calc(66.66666666666667% - 12px);
9484
10012
  }
@@ -9486,9 +10014,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9486
10014
  margin: 6px;
9487
10015
  }
9488
10016
  .gs12 > .flex--item9,
9489
- .gs12.flex__allcells9 > .d-flex,
9490
10017
  .gs12.flex__allitems9 > .d-flex,
9491
- .gs12.flex__allcells9 > .flex--item,
9492
10018
  .gs12.flex__allitems9 > .flex--item {
9493
10019
  flex-basis: calc(75% - 12px);
9494
10020
  }
@@ -9496,9 +10022,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9496
10022
  margin: 6px;
9497
10023
  }
9498
10024
  .gs12 > .flex--item10,
9499
- .gs12.flex__allcells10 > .d-flex,
9500
10025
  .gs12.flex__allitems10 > .d-flex,
9501
- .gs12.flex__allcells10 > .flex--item,
9502
10026
  .gs12.flex__allitems10 > .flex--item {
9503
10027
  flex-basis: calc(83.33333333333333% - 12px);
9504
10028
  }
@@ -9506,9 +10030,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9506
10030
  margin: 6px;
9507
10031
  }
9508
10032
  .gs12 > .flex--item11,
9509
- .gs12.flex__allcells11 > .d-flex,
9510
10033
  .gs12.flex__allitems11 > .d-flex,
9511
- .gs12.flex__allcells11 > .flex--item,
9512
10034
  .gs12.flex__allitems11 > .flex--item {
9513
10035
  flex-basis: calc(91.66666666666667% - 12px);
9514
10036
  }
@@ -9516,9 +10038,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9516
10038
  margin: 6px;
9517
10039
  }
9518
10040
  .gs12 > .flex--item12,
9519
- .gs12.flex__allcells12 > .d-flex,
9520
10041
  .gs12.flex__allitems12 > .d-flex,
9521
- .gs12.flex__allcells12 > .flex--item,
9522
10042
  .gs12.flex__allitems12 > .flex--item {
9523
10043
  flex-basis: calc(100% - 12px);
9524
10044
  }
@@ -9533,9 +10053,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9533
10053
  margin: 8px;
9534
10054
  }
9535
10055
  .gs16 > .flex--item1,
9536
- .gs16.flex__allcells1 > .d-flex,
9537
10056
  .gs16.flex__allitems1 > .d-flex,
9538
- .gs16.flex__allcells1 > .flex--item,
9539
10057
  .gs16.flex__allitems1 > .flex--item {
9540
10058
  flex-basis: calc(8.333333333333334% - 16px);
9541
10059
  }
@@ -9543,9 +10061,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9543
10061
  margin: 8px;
9544
10062
  }
9545
10063
  .gs16 > .flex--item2,
9546
- .gs16.flex__allcells2 > .d-flex,
9547
10064
  .gs16.flex__allitems2 > .d-flex,
9548
- .gs16.flex__allcells2 > .flex--item,
9549
10065
  .gs16.flex__allitems2 > .flex--item {
9550
10066
  flex-basis: calc(16.666666666666668% - 16px);
9551
10067
  }
@@ -9553,9 +10069,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9553
10069
  margin: 8px;
9554
10070
  }
9555
10071
  .gs16 > .flex--item3,
9556
- .gs16.flex__allcells3 > .d-flex,
9557
10072
  .gs16.flex__allitems3 > .d-flex,
9558
- .gs16.flex__allcells3 > .flex--item,
9559
10073
  .gs16.flex__allitems3 > .flex--item {
9560
10074
  flex-basis: calc(25% - 16px);
9561
10075
  }
@@ -9563,9 +10077,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9563
10077
  margin: 8px;
9564
10078
  }
9565
10079
  .gs16 > .flex--item4,
9566
- .gs16.flex__allcells4 > .d-flex,
9567
10080
  .gs16.flex__allitems4 > .d-flex,
9568
- .gs16.flex__allcells4 > .flex--item,
9569
10081
  .gs16.flex__allitems4 > .flex--item {
9570
10082
  flex-basis: calc(33.333333333333336% - 16px);
9571
10083
  }
@@ -9573,9 +10085,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9573
10085
  margin: 8px;
9574
10086
  }
9575
10087
  .gs16 > .flex--item5,
9576
- .gs16.flex__allcells5 > .d-flex,
9577
10088
  .gs16.flex__allitems5 > .d-flex,
9578
- .gs16.flex__allcells5 > .flex--item,
9579
10089
  .gs16.flex__allitems5 > .flex--item {
9580
10090
  flex-basis: calc(41.666666666666664% - 16px);
9581
10091
  }
@@ -9583,9 +10093,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9583
10093
  margin: 8px;
9584
10094
  }
9585
10095
  .gs16 > .flex--item6,
9586
- .gs16.flex__allcells6 > .d-flex,
9587
10096
  .gs16.flex__allitems6 > .d-flex,
9588
- .gs16.flex__allcells6 > .flex--item,
9589
10097
  .gs16.flex__allitems6 > .flex--item {
9590
10098
  flex-basis: calc(50% - 16px);
9591
10099
  }
@@ -9593,9 +10101,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9593
10101
  margin: 8px;
9594
10102
  }
9595
10103
  .gs16 > .flex--item7,
9596
- .gs16.flex__allcells7 > .d-flex,
9597
10104
  .gs16.flex__allitems7 > .d-flex,
9598
- .gs16.flex__allcells7 > .flex--item,
9599
10105
  .gs16.flex__allitems7 > .flex--item {
9600
10106
  flex-basis: calc(58.333333333333336% - 16px);
9601
10107
  }
@@ -9603,9 +10109,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9603
10109
  margin: 8px;
9604
10110
  }
9605
10111
  .gs16 > .flex--item8,
9606
- .gs16.flex__allcells8 > .d-flex,
9607
10112
  .gs16.flex__allitems8 > .d-flex,
9608
- .gs16.flex__allcells8 > .flex--item,
9609
10113
  .gs16.flex__allitems8 > .flex--item {
9610
10114
  flex-basis: calc(66.66666666666667% - 16px);
9611
10115
  }
@@ -9613,9 +10117,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9613
10117
  margin: 8px;
9614
10118
  }
9615
10119
  .gs16 > .flex--item9,
9616
- .gs16.flex__allcells9 > .d-flex,
9617
10120
  .gs16.flex__allitems9 > .d-flex,
9618
- .gs16.flex__allcells9 > .flex--item,
9619
10121
  .gs16.flex__allitems9 > .flex--item {
9620
10122
  flex-basis: calc(75% - 16px);
9621
10123
  }
@@ -9623,9 +10125,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9623
10125
  margin: 8px;
9624
10126
  }
9625
10127
  .gs16 > .flex--item10,
9626
- .gs16.flex__allcells10 > .d-flex,
9627
10128
  .gs16.flex__allitems10 > .d-flex,
9628
- .gs16.flex__allcells10 > .flex--item,
9629
10129
  .gs16.flex__allitems10 > .flex--item {
9630
10130
  flex-basis: calc(83.33333333333333% - 16px);
9631
10131
  }
@@ -9633,9 +10133,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9633
10133
  margin: 8px;
9634
10134
  }
9635
10135
  .gs16 > .flex--item11,
9636
- .gs16.flex__allcells11 > .d-flex,
9637
10136
  .gs16.flex__allitems11 > .d-flex,
9638
- .gs16.flex__allcells11 > .flex--item,
9639
10137
  .gs16.flex__allitems11 > .flex--item {
9640
10138
  flex-basis: calc(91.66666666666667% - 16px);
9641
10139
  }
@@ -9643,9 +10141,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9643
10141
  margin: 8px;
9644
10142
  }
9645
10143
  .gs16 > .flex--item12,
9646
- .gs16.flex__allcells12 > .d-flex,
9647
10144
  .gs16.flex__allitems12 > .d-flex,
9648
- .gs16.flex__allcells12 > .flex--item,
9649
10145
  .gs16.flex__allitems12 > .flex--item {
9650
10146
  flex-basis: calc(100% - 16px);
9651
10147
  }
@@ -9660,9 +10156,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9660
10156
  margin: 12px;
9661
10157
  }
9662
10158
  .gs24 > .flex--item1,
9663
- .gs24.flex__allcells1 > .d-flex,
9664
10159
  .gs24.flex__allitems1 > .d-flex,
9665
- .gs24.flex__allcells1 > .flex--item,
9666
10160
  .gs24.flex__allitems1 > .flex--item {
9667
10161
  flex-basis: calc(8.333333333333334% - 24px);
9668
10162
  }
@@ -9670,9 +10164,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9670
10164
  margin: 12px;
9671
10165
  }
9672
10166
  .gs24 > .flex--item2,
9673
- .gs24.flex__allcells2 > .d-flex,
9674
10167
  .gs24.flex__allitems2 > .d-flex,
9675
- .gs24.flex__allcells2 > .flex--item,
9676
10168
  .gs24.flex__allitems2 > .flex--item {
9677
10169
  flex-basis: calc(16.666666666666668% - 24px);
9678
10170
  }
@@ -9680,9 +10172,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9680
10172
  margin: 12px;
9681
10173
  }
9682
10174
  .gs24 > .flex--item3,
9683
- .gs24.flex__allcells3 > .d-flex,
9684
10175
  .gs24.flex__allitems3 > .d-flex,
9685
- .gs24.flex__allcells3 > .flex--item,
9686
10176
  .gs24.flex__allitems3 > .flex--item {
9687
10177
  flex-basis: calc(25% - 24px);
9688
10178
  }
@@ -9690,9 +10180,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9690
10180
  margin: 12px;
9691
10181
  }
9692
10182
  .gs24 > .flex--item4,
9693
- .gs24.flex__allcells4 > .d-flex,
9694
10183
  .gs24.flex__allitems4 > .d-flex,
9695
- .gs24.flex__allcells4 > .flex--item,
9696
10184
  .gs24.flex__allitems4 > .flex--item {
9697
10185
  flex-basis: calc(33.333333333333336% - 24px);
9698
10186
  }
@@ -9700,9 +10188,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9700
10188
  margin: 12px;
9701
10189
  }
9702
10190
  .gs24 > .flex--item5,
9703
- .gs24.flex__allcells5 > .d-flex,
9704
10191
  .gs24.flex__allitems5 > .d-flex,
9705
- .gs24.flex__allcells5 > .flex--item,
9706
10192
  .gs24.flex__allitems5 > .flex--item {
9707
10193
  flex-basis: calc(41.666666666666664% - 24px);
9708
10194
  }
@@ -9710,9 +10196,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9710
10196
  margin: 12px;
9711
10197
  }
9712
10198
  .gs24 > .flex--item6,
9713
- .gs24.flex__allcells6 > .d-flex,
9714
10199
  .gs24.flex__allitems6 > .d-flex,
9715
- .gs24.flex__allcells6 > .flex--item,
9716
10200
  .gs24.flex__allitems6 > .flex--item {
9717
10201
  flex-basis: calc(50% - 24px);
9718
10202
  }
@@ -9720,9 +10204,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9720
10204
  margin: 12px;
9721
10205
  }
9722
10206
  .gs24 > .flex--item7,
9723
- .gs24.flex__allcells7 > .d-flex,
9724
10207
  .gs24.flex__allitems7 > .d-flex,
9725
- .gs24.flex__allcells7 > .flex--item,
9726
10208
  .gs24.flex__allitems7 > .flex--item {
9727
10209
  flex-basis: calc(58.333333333333336% - 24px);
9728
10210
  }
@@ -9730,9 +10212,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9730
10212
  margin: 12px;
9731
10213
  }
9732
10214
  .gs24 > .flex--item8,
9733
- .gs24.flex__allcells8 > .d-flex,
9734
10215
  .gs24.flex__allitems8 > .d-flex,
9735
- .gs24.flex__allcells8 > .flex--item,
9736
10216
  .gs24.flex__allitems8 > .flex--item {
9737
10217
  flex-basis: calc(66.66666666666667% - 24px);
9738
10218
  }
@@ -9740,9 +10220,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9740
10220
  margin: 12px;
9741
10221
  }
9742
10222
  .gs24 > .flex--item9,
9743
- .gs24.flex__allcells9 > .d-flex,
9744
10223
  .gs24.flex__allitems9 > .d-flex,
9745
- .gs24.flex__allcells9 > .flex--item,
9746
10224
  .gs24.flex__allitems9 > .flex--item {
9747
10225
  flex-basis: calc(75% - 24px);
9748
10226
  }
@@ -9750,9 +10228,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9750
10228
  margin: 12px;
9751
10229
  }
9752
10230
  .gs24 > .flex--item10,
9753
- .gs24.flex__allcells10 > .d-flex,
9754
10231
  .gs24.flex__allitems10 > .d-flex,
9755
- .gs24.flex__allcells10 > .flex--item,
9756
10232
  .gs24.flex__allitems10 > .flex--item {
9757
10233
  flex-basis: calc(83.33333333333333% - 24px);
9758
10234
  }
@@ -9760,9 +10236,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9760
10236
  margin: 12px;
9761
10237
  }
9762
10238
  .gs24 > .flex--item11,
9763
- .gs24.flex__allcells11 > .d-flex,
9764
10239
  .gs24.flex__allitems11 > .d-flex,
9765
- .gs24.flex__allcells11 > .flex--item,
9766
10240
  .gs24.flex__allitems11 > .flex--item {
9767
10241
  flex-basis: calc(91.66666666666667% - 24px);
9768
10242
  }
@@ -9770,9 +10244,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9770
10244
  margin: 12px;
9771
10245
  }
9772
10246
  .gs24 > .flex--item12,
9773
- .gs24.flex__allcells12 > .d-flex,
9774
10247
  .gs24.flex__allitems12 > .d-flex,
9775
- .gs24.flex__allcells12 > .flex--item,
9776
10248
  .gs24.flex__allitems12 > .flex--item {
9777
10249
  flex-basis: calc(100% - 24px);
9778
10250
  }
@@ -9787,9 +10259,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9787
10259
  margin: 16px;
9788
10260
  }
9789
10261
  .gs32 > .flex--item1,
9790
- .gs32.flex__allcells1 > .d-flex,
9791
10262
  .gs32.flex__allitems1 > .d-flex,
9792
- .gs32.flex__allcells1 > .flex--item,
9793
10263
  .gs32.flex__allitems1 > .flex--item {
9794
10264
  flex-basis: calc(8.333333333333334% - 32px);
9795
10265
  }
@@ -9797,9 +10267,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9797
10267
  margin: 16px;
9798
10268
  }
9799
10269
  .gs32 > .flex--item2,
9800
- .gs32.flex__allcells2 > .d-flex,
9801
10270
  .gs32.flex__allitems2 > .d-flex,
9802
- .gs32.flex__allcells2 > .flex--item,
9803
10271
  .gs32.flex__allitems2 > .flex--item {
9804
10272
  flex-basis: calc(16.666666666666668% - 32px);
9805
10273
  }
@@ -9807,9 +10275,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9807
10275
  margin: 16px;
9808
10276
  }
9809
10277
  .gs32 > .flex--item3,
9810
- .gs32.flex__allcells3 > .d-flex,
9811
10278
  .gs32.flex__allitems3 > .d-flex,
9812
- .gs32.flex__allcells3 > .flex--item,
9813
10279
  .gs32.flex__allitems3 > .flex--item {
9814
10280
  flex-basis: calc(25% - 32px);
9815
10281
  }
@@ -9817,9 +10283,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9817
10283
  margin: 16px;
9818
10284
  }
9819
10285
  .gs32 > .flex--item4,
9820
- .gs32.flex__allcells4 > .d-flex,
9821
10286
  .gs32.flex__allitems4 > .d-flex,
9822
- .gs32.flex__allcells4 > .flex--item,
9823
10287
  .gs32.flex__allitems4 > .flex--item {
9824
10288
  flex-basis: calc(33.333333333333336% - 32px);
9825
10289
  }
@@ -9827,9 +10291,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9827
10291
  margin: 16px;
9828
10292
  }
9829
10293
  .gs32 > .flex--item5,
9830
- .gs32.flex__allcells5 > .d-flex,
9831
10294
  .gs32.flex__allitems5 > .d-flex,
9832
- .gs32.flex__allcells5 > .flex--item,
9833
10295
  .gs32.flex__allitems5 > .flex--item {
9834
10296
  flex-basis: calc(41.666666666666664% - 32px);
9835
10297
  }
@@ -9837,9 +10299,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9837
10299
  margin: 16px;
9838
10300
  }
9839
10301
  .gs32 > .flex--item6,
9840
- .gs32.flex__allcells6 > .d-flex,
9841
10302
  .gs32.flex__allitems6 > .d-flex,
9842
- .gs32.flex__allcells6 > .flex--item,
9843
10303
  .gs32.flex__allitems6 > .flex--item {
9844
10304
  flex-basis: calc(50% - 32px);
9845
10305
  }
@@ -9847,9 +10307,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9847
10307
  margin: 16px;
9848
10308
  }
9849
10309
  .gs32 > .flex--item7,
9850
- .gs32.flex__allcells7 > .d-flex,
9851
10310
  .gs32.flex__allitems7 > .d-flex,
9852
- .gs32.flex__allcells7 > .flex--item,
9853
10311
  .gs32.flex__allitems7 > .flex--item {
9854
10312
  flex-basis: calc(58.333333333333336% - 32px);
9855
10313
  }
@@ -9857,9 +10315,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9857
10315
  margin: 16px;
9858
10316
  }
9859
10317
  .gs32 > .flex--item8,
9860
- .gs32.flex__allcells8 > .d-flex,
9861
10318
  .gs32.flex__allitems8 > .d-flex,
9862
- .gs32.flex__allcells8 > .flex--item,
9863
10319
  .gs32.flex__allitems8 > .flex--item {
9864
10320
  flex-basis: calc(66.66666666666667% - 32px);
9865
10321
  }
@@ -9867,9 +10323,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9867
10323
  margin: 16px;
9868
10324
  }
9869
10325
  .gs32 > .flex--item9,
9870
- .gs32.flex__allcells9 > .d-flex,
9871
10326
  .gs32.flex__allitems9 > .d-flex,
9872
- .gs32.flex__allcells9 > .flex--item,
9873
10327
  .gs32.flex__allitems9 > .flex--item {
9874
10328
  flex-basis: calc(75% - 32px);
9875
10329
  }
@@ -9877,9 +10331,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9877
10331
  margin: 16px;
9878
10332
  }
9879
10333
  .gs32 > .flex--item10,
9880
- .gs32.flex__allcells10 > .d-flex,
9881
10334
  .gs32.flex__allitems10 > .d-flex,
9882
- .gs32.flex__allcells10 > .flex--item,
9883
10335
  .gs32.flex__allitems10 > .flex--item {
9884
10336
  flex-basis: calc(83.33333333333333% - 32px);
9885
10337
  }
@@ -9887,9 +10339,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9887
10339
  margin: 16px;
9888
10340
  }
9889
10341
  .gs32 > .flex--item11,
9890
- .gs32.flex__allcells11 > .d-flex,
9891
10342
  .gs32.flex__allitems11 > .d-flex,
9892
- .gs32.flex__allcells11 > .flex--item,
9893
10343
  .gs32.flex__allitems11 > .flex--item {
9894
10344
  flex-basis: calc(91.66666666666667% - 32px);
9895
10345
  }
@@ -9897,9 +10347,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9897
10347
  margin: 16px;
9898
10348
  }
9899
10349
  .gs32 > .flex--item12,
9900
- .gs32.flex__allcells12 > .d-flex,
9901
10350
  .gs32.flex__allitems12 > .d-flex,
9902
- .gs32.flex__allcells12 > .flex--item,
9903
10351
  .gs32.flex__allitems12 > .flex--item {
9904
10352
  flex-basis: calc(100% - 32px);
9905
10353
  }
@@ -9914,9 +10362,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9914
10362
  margin: 24px;
9915
10363
  }
9916
10364
  .gs48 > .flex--item1,
9917
- .gs48.flex__allcells1 > .d-flex,
9918
10365
  .gs48.flex__allitems1 > .d-flex,
9919
- .gs48.flex__allcells1 > .flex--item,
9920
10366
  .gs48.flex__allitems1 > .flex--item {
9921
10367
  flex-basis: calc(8.333333333333334% - 48px);
9922
10368
  }
@@ -9924,9 +10370,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9924
10370
  margin: 24px;
9925
10371
  }
9926
10372
  .gs48 > .flex--item2,
9927
- .gs48.flex__allcells2 > .d-flex,
9928
10373
  .gs48.flex__allitems2 > .d-flex,
9929
- .gs48.flex__allcells2 > .flex--item,
9930
10374
  .gs48.flex__allitems2 > .flex--item {
9931
10375
  flex-basis: calc(16.666666666666668% - 48px);
9932
10376
  }
@@ -9934,9 +10378,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9934
10378
  margin: 24px;
9935
10379
  }
9936
10380
  .gs48 > .flex--item3,
9937
- .gs48.flex__allcells3 > .d-flex,
9938
10381
  .gs48.flex__allitems3 > .d-flex,
9939
- .gs48.flex__allcells3 > .flex--item,
9940
10382
  .gs48.flex__allitems3 > .flex--item {
9941
10383
  flex-basis: calc(25% - 48px);
9942
10384
  }
@@ -9944,9 +10386,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9944
10386
  margin: 24px;
9945
10387
  }
9946
10388
  .gs48 > .flex--item4,
9947
- .gs48.flex__allcells4 > .d-flex,
9948
10389
  .gs48.flex__allitems4 > .d-flex,
9949
- .gs48.flex__allcells4 > .flex--item,
9950
10390
  .gs48.flex__allitems4 > .flex--item {
9951
10391
  flex-basis: calc(33.333333333333336% - 48px);
9952
10392
  }
@@ -9954,9 +10394,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9954
10394
  margin: 24px;
9955
10395
  }
9956
10396
  .gs48 > .flex--item5,
9957
- .gs48.flex__allcells5 > .d-flex,
9958
10397
  .gs48.flex__allitems5 > .d-flex,
9959
- .gs48.flex__allcells5 > .flex--item,
9960
10398
  .gs48.flex__allitems5 > .flex--item {
9961
10399
  flex-basis: calc(41.666666666666664% - 48px);
9962
10400
  }
@@ -9964,9 +10402,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9964
10402
  margin: 24px;
9965
10403
  }
9966
10404
  .gs48 > .flex--item6,
9967
- .gs48.flex__allcells6 > .d-flex,
9968
10405
  .gs48.flex__allitems6 > .d-flex,
9969
- .gs48.flex__allcells6 > .flex--item,
9970
10406
  .gs48.flex__allitems6 > .flex--item {
9971
10407
  flex-basis: calc(50% - 48px);
9972
10408
  }
@@ -9974,9 +10410,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9974
10410
  margin: 24px;
9975
10411
  }
9976
10412
  .gs48 > .flex--item7,
9977
- .gs48.flex__allcells7 > .d-flex,
9978
10413
  .gs48.flex__allitems7 > .d-flex,
9979
- .gs48.flex__allcells7 > .flex--item,
9980
10414
  .gs48.flex__allitems7 > .flex--item {
9981
10415
  flex-basis: calc(58.333333333333336% - 48px);
9982
10416
  }
@@ -9984,9 +10418,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9984
10418
  margin: 24px;
9985
10419
  }
9986
10420
  .gs48 > .flex--item8,
9987
- .gs48.flex__allcells8 > .d-flex,
9988
10421
  .gs48.flex__allitems8 > .d-flex,
9989
- .gs48.flex__allcells8 > .flex--item,
9990
10422
  .gs48.flex__allitems8 > .flex--item {
9991
10423
  flex-basis: calc(66.66666666666667% - 48px);
9992
10424
  }
@@ -9994,9 +10426,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
9994
10426
  margin: 24px;
9995
10427
  }
9996
10428
  .gs48 > .flex--item9,
9997
- .gs48.flex__allcells9 > .d-flex,
9998
10429
  .gs48.flex__allitems9 > .d-flex,
9999
- .gs48.flex__allcells9 > .flex--item,
10000
10430
  .gs48.flex__allitems9 > .flex--item {
10001
10431
  flex-basis: calc(75% - 48px);
10002
10432
  }
@@ -10004,9 +10434,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10004
10434
  margin: 24px;
10005
10435
  }
10006
10436
  .gs48 > .flex--item10,
10007
- .gs48.flex__allcells10 > .d-flex,
10008
10437
  .gs48.flex__allitems10 > .d-flex,
10009
- .gs48.flex__allcells10 > .flex--item,
10010
10438
  .gs48.flex__allitems10 > .flex--item {
10011
10439
  flex-basis: calc(83.33333333333333% - 48px);
10012
10440
  }
@@ -10014,9 +10442,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10014
10442
  margin: 24px;
10015
10443
  }
10016
10444
  .gs48 > .flex--item11,
10017
- .gs48.flex__allcells11 > .d-flex,
10018
10445
  .gs48.flex__allitems11 > .d-flex,
10019
- .gs48.flex__allcells11 > .flex--item,
10020
10446
  .gs48.flex__allitems11 > .flex--item {
10021
10447
  flex-basis: calc(91.66666666666667% - 48px);
10022
10448
  }
@@ -10024,9 +10450,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10024
10450
  margin: 24px;
10025
10451
  }
10026
10452
  .gs48 > .flex--item12,
10027
- .gs48.flex__allcells12 > .d-flex,
10028
10453
  .gs48.flex__allitems12 > .d-flex,
10029
- .gs48.flex__allcells12 > .flex--item,
10030
10454
  .gs48.flex__allitems12 > .flex--item {
10031
10455
  flex-basis: calc(100% - 48px);
10032
10456
  }
@@ -10041,9 +10465,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10041
10465
  margin: 32px;
10042
10466
  }
10043
10467
  .gs64 > .flex--item1,
10044
- .gs64.flex__allcells1 > .d-flex,
10045
10468
  .gs64.flex__allitems1 > .d-flex,
10046
- .gs64.flex__allcells1 > .flex--item,
10047
10469
  .gs64.flex__allitems1 > .flex--item {
10048
10470
  flex-basis: calc(8.333333333333334% - 64px);
10049
10471
  }
@@ -10051,9 +10473,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10051
10473
  margin: 32px;
10052
10474
  }
10053
10475
  .gs64 > .flex--item2,
10054
- .gs64.flex__allcells2 > .d-flex,
10055
10476
  .gs64.flex__allitems2 > .d-flex,
10056
- .gs64.flex__allcells2 > .flex--item,
10057
10477
  .gs64.flex__allitems2 > .flex--item {
10058
10478
  flex-basis: calc(16.666666666666668% - 64px);
10059
10479
  }
@@ -10061,9 +10481,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10061
10481
  margin: 32px;
10062
10482
  }
10063
10483
  .gs64 > .flex--item3,
10064
- .gs64.flex__allcells3 > .d-flex,
10065
10484
  .gs64.flex__allitems3 > .d-flex,
10066
- .gs64.flex__allcells3 > .flex--item,
10067
10485
  .gs64.flex__allitems3 > .flex--item {
10068
10486
  flex-basis: calc(25% - 64px);
10069
10487
  }
@@ -10071,9 +10489,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10071
10489
  margin: 32px;
10072
10490
  }
10073
10491
  .gs64 > .flex--item4,
10074
- .gs64.flex__allcells4 > .d-flex,
10075
10492
  .gs64.flex__allitems4 > .d-flex,
10076
- .gs64.flex__allcells4 > .flex--item,
10077
10493
  .gs64.flex__allitems4 > .flex--item {
10078
10494
  flex-basis: calc(33.333333333333336% - 64px);
10079
10495
  }
@@ -10081,9 +10497,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10081
10497
  margin: 32px;
10082
10498
  }
10083
10499
  .gs64 > .flex--item5,
10084
- .gs64.flex__allcells5 > .d-flex,
10085
10500
  .gs64.flex__allitems5 > .d-flex,
10086
- .gs64.flex__allcells5 > .flex--item,
10087
10501
  .gs64.flex__allitems5 > .flex--item {
10088
10502
  flex-basis: calc(41.666666666666664% - 64px);
10089
10503
  }
@@ -10091,9 +10505,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10091
10505
  margin: 32px;
10092
10506
  }
10093
10507
  .gs64 > .flex--item6,
10094
- .gs64.flex__allcells6 > .d-flex,
10095
10508
  .gs64.flex__allitems6 > .d-flex,
10096
- .gs64.flex__allcells6 > .flex--item,
10097
10509
  .gs64.flex__allitems6 > .flex--item {
10098
10510
  flex-basis: calc(50% - 64px);
10099
10511
  }
@@ -10101,9 +10513,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10101
10513
  margin: 32px;
10102
10514
  }
10103
10515
  .gs64 > .flex--item7,
10104
- .gs64.flex__allcells7 > .d-flex,
10105
10516
  .gs64.flex__allitems7 > .d-flex,
10106
- .gs64.flex__allcells7 > .flex--item,
10107
10517
  .gs64.flex__allitems7 > .flex--item {
10108
10518
  flex-basis: calc(58.333333333333336% - 64px);
10109
10519
  }
@@ -10111,9 +10521,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10111
10521
  margin: 32px;
10112
10522
  }
10113
10523
  .gs64 > .flex--item8,
10114
- .gs64.flex__allcells8 > .d-flex,
10115
10524
  .gs64.flex__allitems8 > .d-flex,
10116
- .gs64.flex__allcells8 > .flex--item,
10117
10525
  .gs64.flex__allitems8 > .flex--item {
10118
10526
  flex-basis: calc(66.66666666666667% - 64px);
10119
10527
  }
@@ -10121,9 +10529,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10121
10529
  margin: 32px;
10122
10530
  }
10123
10531
  .gs64 > .flex--item9,
10124
- .gs64.flex__allcells9 > .d-flex,
10125
10532
  .gs64.flex__allitems9 > .d-flex,
10126
- .gs64.flex__allcells9 > .flex--item,
10127
10533
  .gs64.flex__allitems9 > .flex--item {
10128
10534
  flex-basis: calc(75% - 64px);
10129
10535
  }
@@ -10131,9 +10537,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10131
10537
  margin: 32px;
10132
10538
  }
10133
10539
  .gs64 > .flex--item10,
10134
- .gs64.flex__allcells10 > .d-flex,
10135
10540
  .gs64.flex__allitems10 > .d-flex,
10136
- .gs64.flex__allcells10 > .flex--item,
10137
10541
  .gs64.flex__allitems10 > .flex--item {
10138
10542
  flex-basis: calc(83.33333333333333% - 64px);
10139
10543
  }
@@ -10141,9 +10545,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10141
10545
  margin: 32px;
10142
10546
  }
10143
10547
  .gs64 > .flex--item11,
10144
- .gs64.flex__allcells11 > .d-flex,
10145
10548
  .gs64.flex__allitems11 > .d-flex,
10146
- .gs64.flex__allcells11 > .flex--item,
10147
10549
  .gs64.flex__allitems11 > .flex--item {
10148
10550
  flex-basis: calc(91.66666666666667% - 64px);
10149
10551
  }
@@ -10151,9 +10553,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
10151
10553
  margin: 32px;
10152
10554
  }
10153
10555
  .gs64 > .flex--item12,
10154
- .gs64.flex__allcells12 > .d-flex,
10155
10556
  .gs64.flex__allitems12 > .d-flex,
10156
- .gs64.flex__allcells12 > .flex--item,
10157
10557
  .gs64.flex__allitems12 > .flex--item {
10158
10558
  flex-basis: calc(100% - 64px);
10159
10559
  }
@@ -10362,6 +10762,9 @@ body.theme-dark .d\:bg-theme-secondary-025,
10362
10762
  .g0 {
10363
10763
  gap: 0;
10364
10764
  }
10765
+ .g1 {
10766
+ gap: 1px;
10767
+ }
10365
10768
  .g2 {
10366
10769
  gap: 2px;
10367
10770
  }
@@ -12313,9 +12716,6 @@ p {
12313
12716
  overflow-wrap: unset !important;
12314
12717
  word-wrap: unset !important;
12315
12718
  }
12316
- .ww-break-word {
12317
- word-wrap: break-word !important;
12318
- }
12319
12719
  .hyphens-none {
12320
12720
  hyphens: none !important;
12321
12721
  }
@@ -12327,6 +12727,32 @@ p {
12327
12727
  .hyphens-unset {
12328
12728
  hyphens: unset !important;
12329
12729
  }
12730
+ .break-word {
12731
+ word-break: break-word !important;
12732
+ word-wrap: break-word !important;
12733
+ overflow-wrap: break-word !important;
12734
+ -webkit-hyphens: auto !important;
12735
+ -moz-hyphens: auto !important;
12736
+ -ms-hyphens: auto !important;
12737
+ hyphens: auto !important;
12738
+ }
12739
+ ul,
12740
+ ol {
12741
+ padding: 0;
12742
+ margin-left: 2.8em;
12743
+ }
12744
+ ul ul,
12745
+ ol ul,
12746
+ ul ol,
12747
+ ol ol {
12748
+ margin-bottom: 0;
12749
+ }
12750
+ ul {
12751
+ list-style-type: disc;
12752
+ }
12753
+ ol {
12754
+ list-style-type: decimal;
12755
+ }
12330
12756
  .list-reset {
12331
12757
  list-style: none;
12332
12758
  margin: 0;
@@ -13007,6 +13433,12 @@ p {
13007
13433
  .t-delay-unset {
13008
13434
  transition-delay: 0s !important;
13009
13435
  }
13436
+ .tl-fixed {
13437
+ table-layout: fixed !important;
13438
+ }
13439
+ .tl-auto {
13440
+ table-layout: auto !important;
13441
+ }
13010
13442
  .w0 {
13011
13443
  width: 0 !important;
13012
13444
  }
@@ -13565,6 +13997,9 @@ p {
13565
13997
  .lg\:g0 {
13566
13998
  gap: 0;
13567
13999
  }
14000
+ .lg\:g1 {
14001
+ gap: 1px;
14002
+ }
13568
14003
  .lg\:g2 {
13569
14004
  gap: 2px;
13570
14005
  }
@@ -14610,6 +15045,9 @@ p {
14610
15045
  .md\:g0 {
14611
15046
  gap: 0;
14612
15047
  }
15048
+ .md\:g1 {
15049
+ gap: 1px;
15050
+ }
14613
15051
  .md\:g2 {
14614
15052
  gap: 2px;
14615
15053
  }
@@ -15655,6 +16093,9 @@ p {
15655
16093
  .sm\:g0 {
15656
16094
  gap: 0;
15657
16095
  }
16096
+ .sm\:g1 {
16097
+ gap: 1px;
16098
+ }
15658
16099
  .sm\:g2 {
15659
16100
  gap: 2px;
15660
16101
  }
@@ -16651,6 +17092,9 @@ body *:after {
16651
17092
  body.theme-highcontrast .s-btn {
16652
17093
  border-color: currentColor;
16653
17094
  }
17095
+ body.theme-highcontrast .s-btn:not(.s-btn__link):not(.s-btn__unset) {
17096
+ text-decoration: none;
17097
+ }
16654
17098
  button .s-btn,
16655
17099
  button[type="submit"] .s-btn,
16656
17100
  button[type="reset"] .s-btn {
@@ -16800,6 +17244,9 @@ body.theme-dark .s-btn__filled,
16800
17244
  border-color: var(--theme-button-filled-active-border-color);
16801
17245
  box-shadow: none;
16802
17246
  }
17247
+ body.theme-highcontrast .s-btn__filled:focus {
17248
+ box-shadow: 0 0 0 4px var(--focus-ring);
17249
+ }
16803
17250
  .s-btn__filled.is-selected {
16804
17251
  color: var(--theme-button-filled-selected-color);
16805
17252
  background-color: var(--theme-button-filled-selected-background-color);
@@ -16873,6 +17320,9 @@ body.theme-highcontrast .s-btn__muted.s-btn__filled .s-btn--number {
16873
17320
  .s-btn__muted.s-btn__filled:focus {
16874
17321
  box-shadow: 0 0 0 4px var(--focus-ring-muted);
16875
17322
  }
17323
+ body.theme-highcontrast .s-btn__muted.s-btn__filled:focus {
17324
+ box-shadow: 0 0 0 4px var(--focus-ring-muted);
17325
+ }
16876
17326
  .s-btn__muted.s-btn__filled.is-selected {
16877
17327
  color: var(--black-800);
16878
17328
  background-color: var(--black-350);
@@ -16905,6 +17355,9 @@ body.theme-highcontrast .s-btn__danger.s-btn__filled {
16905
17355
  .s-btn__danger:focus {
16906
17356
  box-shadow: 0 0 0 4px var(--focus-ring-error);
16907
17357
  }
17358
+ body.theme-highcontrast .s-btn__danger:focus {
17359
+ box-shadow: 0 0 0 4px var(--focus-ring-error);
17360
+ }
16908
17361
  .s-btn__danger.is-selected {
16909
17362
  color: var(--red-900);
16910
17363
  background-color: var(--red-200);
@@ -16936,6 +17389,9 @@ body.theme-dark .s-btn__danger.s-btn__filled,
16936
17389
  body.theme-highcontrast .s-btn__danger.s-btn__filled {
16937
17390
  color: var(--white);
16938
17391
  }
17392
+ body.theme-highcontrast .s-btn__danger.s-btn__filled:focus {
17393
+ box-shadow: 0 0 0 4px var(--focus-ring-error);
17394
+ }
16939
17395
  body.theme-highcontrast .s-btn__danger.s-btn__filled .s-btn--number {
16940
17396
  color: var(--black);
16941
17397
  }
@@ -17001,6 +17457,9 @@ body.theme-highcontrast .s-btn__primary:not(.is-selected) {
17001
17457
  background-color: var(--theme-button-primary-active-background-color);
17002
17458
  box-shadow: none;
17003
17459
  }
17460
+ body.theme-highcontrast .s-btn__primary:focus {
17461
+ box-shadow: 0 0 0 4px var(--focus-ring);
17462
+ }
17004
17463
  .s-btn__primary.is-selected {
17005
17464
  color: var(--theme-button-primary-selected-color);
17006
17465
  background-color: var(--theme-button-primary-selected-background-color);
@@ -17020,10 +17479,12 @@ body.theme-highcontrast .s-btn__primary:not(.is-selected) {
17020
17479
  color: var(--black-800);
17021
17480
  }
17022
17481
  .s-btn__google:active {
17023
- border-color: var(--bc-darkest);
17024
17482
  background-color: var(--black-050);
17025
17483
  color: var(--black-900);
17026
17484
  }
17485
+ .s-btn__google:focus {
17486
+ box-shadow: 0 0 0 4px var(--focus-ring-muted);
17487
+ }
17027
17488
  .s-btn__facebook {
17028
17489
  border-color: transparent;
17029
17490
  background-color: #385499;
@@ -17057,9 +17518,13 @@ body.theme-highcontrast .s-btn__github {
17057
17518
  background-color: var(--black-900);
17058
17519
  color: var(--white);
17059
17520
  }
17521
+ .s-btn__github:focus {
17522
+ box-shadow: 0 0 0 4px var(--focus-ring-muted);
17523
+ }
17060
17524
  .s-btn__unset,
17061
17525
  .s-btn__unset:hover,
17062
- .s-btn__unset:active {
17526
+ .s-btn__unset:active,
17527
+ .s-btn__unset:focus {
17063
17528
  padding: 0;
17064
17529
  border: none;
17065
17530
  outline: none;
@@ -17071,9 +17536,6 @@ body.theme-highcontrast .s-btn__github {
17071
17536
  cursor: default;
17072
17537
  user-select: auto;
17073
17538
  }
17074
- .s-btn__unset:focus {
17075
- color: unset;
17076
- }
17077
17539
  .s-btn__link {
17078
17540
  display: inline;
17079
17541
  padding: 0;
@@ -17089,16 +17551,17 @@ body.theme-highcontrast .s-btn__github {
17089
17551
  cursor: pointer;
17090
17552
  user-select: auto;
17091
17553
  }
17554
+ body.theme-highcontrast .s-btn__link {
17555
+ text-decoration: underline;
17556
+ }
17092
17557
  .s-btn__link.s-link__visited:visited {
17093
17558
  color: var(--theme-link-color-visited);
17094
- text-decoration: none;
17095
17559
  }
17096
17560
  .s-btn__link:hover,
17097
17561
  .s-btn__link.s-link__visited:hover,
17098
17562
  .s-btn__link:active,
17099
17563
  .s-btn__link.s-link__visited:active {
17100
17564
  color: var(--theme-link-color-hover);
17101
- text-decoration: none;
17102
17565
  }
17103
17566
  .s-btn__link.s-link__grayscale {
17104
17567
  color: var(--black-800);
@@ -17147,11 +17610,35 @@ body.theme-highcontrast .s-btn__github {
17147
17610
  .s-btn__link.s-link__underlined {
17148
17611
  text-decoration: underline !important;
17149
17612
  }
17613
+ .s-btn__link.s-link__dropdown {
17614
+ position: relative;
17615
+ padding-right: 0.9em;
17616
+ }
17617
+ .s-btn__link.s-link__dropdown:after {
17618
+ content: "";
17619
+ position: absolute;
17620
+ z-index: 30;
17621
+ top: calc(50% - 2px);
17622
+ right: 0;
17623
+ border-style: solid;
17624
+ border-width: 4px;
17625
+ border-top-width: 4px;
17626
+ border-bottom-width: 0;
17627
+ border-color: currentColor transparent;
17628
+ pointer-events: none;
17629
+ }
17150
17630
  .s-btn__link:hover,
17151
17631
  .s-btn__link:active,
17152
17632
  .s-btn__link:focus,
17153
17633
  .s-btn__link[disabled] {
17154
17634
  background: none;
17635
+ box-shadow: none;
17636
+ }
17637
+ .s-btn__link.s-btn__dropdown {
17638
+ padding-right: 0.9em;
17639
+ }
17640
+ .s-btn__link.s-btn__dropdown:after {
17641
+ right: 0;
17155
17642
  }
17156
17643
  .s-btn__icon .svg-icon {
17157
17644
  vertical-align: baseline;
@@ -17202,10 +17689,13 @@ a,
17202
17689
  cursor: pointer;
17203
17690
  user-select: auto;
17204
17691
  }
17692
+ body.theme-highcontrast a,
17693
+ body.theme-highcontrast .s-link {
17694
+ text-decoration: underline;
17695
+ }
17205
17696
  a.s-link__visited:visited,
17206
17697
  .s-link.s-link__visited:visited {
17207
17698
  color: var(--theme-link-color-visited);
17208
- text-decoration: none;
17209
17699
  }
17210
17700
  a:hover,
17211
17701
  .s-link:hover,
@@ -17216,7 +17706,6 @@ a:active,
17216
17706
  a.s-link__visited:active,
17217
17707
  .s-link.s-link__visited:active {
17218
17708
  color: var(--theme-link-color-hover);
17219
- text-decoration: none;
17220
17709
  }
17221
17710
  a.s-link__grayscale,
17222
17711
  .s-link.s-link__grayscale {
@@ -17288,6 +17777,25 @@ a.s-link__underlined,
17288
17777
  .s-link.s-link__underlined {
17289
17778
  text-decoration: underline !important;
17290
17779
  }
17780
+ a.s-link__dropdown,
17781
+ .s-link.s-link__dropdown {
17782
+ position: relative;
17783
+ padding-right: 0.9em;
17784
+ }
17785
+ a.s-link__dropdown:after,
17786
+ .s-link.s-link__dropdown:after {
17787
+ content: "";
17788
+ position: absolute;
17789
+ z-index: 30;
17790
+ top: calc(50% - 2px);
17791
+ right: 0;
17792
+ border-style: solid;
17793
+ border-width: 4px;
17794
+ border-top-width: 4px;
17795
+ border-bottom-width: 0;
17796
+ border-color: currentColor transparent;
17797
+ pointer-events: none;
17798
+ }
17291
17799
  button.s-link {
17292
17800
  -webkit-appearance: none;
17293
17801
  -moz-appearance: none;
@@ -17296,6 +17804,7 @@ button.s-link {
17296
17804
  padding: 0;
17297
17805
  line-height: inherit;
17298
17806
  user-select: auto;
17807
+ font-family: inherit;
17299
17808
  }
17300
17809
  button.s-link:focus {
17301
17810
  outline: none;
@@ -17475,18 +17984,17 @@ button.s-link:focus {
17475
17984
  border-radius: 0;
17476
17985
  text-align: left;
17477
17986
  line-height: inherit;
17987
+ font-family: inherit;
17478
17988
  }
17479
17989
  .s-block-link:hover,
17480
17990
  .s-block-link:active {
17481
17991
  color: var(--black-800);
17482
17992
  }
17483
17993
  .s-block-link:focus:not(:focus-visible) {
17484
- color: inherit;
17485
17994
  outline: none;
17486
17995
  box-shadow: none;
17487
17996
  }
17488
17997
  .s-block-link:focus-visible {
17489
- color: inherit;
17490
17998
  outline: none;
17491
17999
  box-shadow: 0 0 0 4px var(--focus-ring-muted);
17492
18000
  }
@@ -17549,6 +18057,9 @@ a.s-link-preview--title.s-link__visited:visited {
17549
18057
  color: var(--theme-link-color);
17550
18058
  text-decoration: none;
17551
18059
  }
18060
+ body.theme-highcontrast a.s-link-preview--title.s-link__visited:visited {
18061
+ text-decoration: underline;
18062
+ }
17552
18063
  a.s-link-preview--title:hover,
17553
18064
  a.s-link-preview--title.s-link__visited:hover,
17554
18065
  a.s-link-preview--title:active,
@@ -17556,6 +18067,12 @@ a.s-link-preview--title.s-link__visited:active {
17556
18067
  color: var(--theme-link-color-hover);
17557
18068
  text-decoration: none;
17558
18069
  }
18070
+ body.theme-highcontrast a.s-link-preview--title:hover,
18071
+ body.theme-highcontrast a.s-link-preview--title.s-link__visited:hover,
18072
+ body.theme-highcontrast a.s-link-preview--title:active,
18073
+ body.theme-highcontrast a.s-link-preview--title.s-link__visited:active {
18074
+ text-decoration: underline;
18075
+ }
17559
18076
  .s-link-preview--details {
17560
18077
  font-size: 12px;
17561
18078
  color: var(--black-500);
@@ -17627,125 +18144,6 @@ a.s-link-preview--title.s-link__visited:active {
17627
18144
  .s-link-preview--footer a:focus {
17628
18145
  color: var(--black-600);
17629
18146
  }
17630
- .s-navigation {
17631
- display: flex;
17632
- margin: -2px;
17633
- padding: 2px 0;
17634
- flex-wrap: wrap;
17635
- list-style: none;
17636
- }
17637
- .s-navigation .s-navigation--item {
17638
- display: flex;
17639
- align-items: center;
17640
- padding: 6px 12px;
17641
- position: relative;
17642
- border: none;
17643
- font: unset;
17644
- background: none;
17645
- box-shadow: none;
17646
- cursor: pointer;
17647
- user-select: auto;
17648
- border-radius: 1000px;
17649
- margin: 2px;
17650
- white-space: nowrap;
17651
- color: var(--black-600);
17652
- }
17653
- .s-navigation .s-navigation--item:hover,
17654
- .s-navigation .s-navigation--item:active {
17655
- background: var(--black-075);
17656
- color: var(--black-600);
17657
- }
17658
- body.theme-highcontrast .s-navigation .s-navigation--item:hover,
17659
- body.theme-highcontrast .s-navigation .s-navigation--item:active {
17660
- background: var(--black-600);
17661
- color: var(--black-100);
17662
- }
17663
- .s-navigation .s-navigation--item:focus:not(:focus-visible) {
17664
- color: inherit;
17665
- outline: none;
17666
- box-shadow: none;
17667
- }
17668
- .s-navigation .s-navigation--item:focus-visible {
17669
- color: inherit;
17670
- outline: none;
17671
- box-shadow: 0 0 0 4px var(--focus-ring-muted);
17672
- }
17673
- .s-navigation .s-navigation--item.is-selected {
17674
- background: var(--theme-primary-color);
17675
- color: var(--white);
17676
- }
17677
- .s-navigation .s-navigation--item.s-navigation--item__dropdown {
17678
- padding-right: 2em;
17679
- }
17680
- .s-navigation .s-navigation--item.s-navigation--item__dropdown:after {
17681
- content: "";
17682
- position: absolute;
17683
- z-index: 30;
17684
- top: calc(50% - 2px);
17685
- right: 0.9em;
17686
- border-style: solid;
17687
- border-width: 4px;
17688
- border-top-width: 4px;
17689
- border-bottom-width: 0;
17690
- border-color: currentColor transparent;
17691
- pointer-events: none;
17692
- }
17693
- .s-navigation.s-navigation__scroll {
17694
- overflow-x: auto;
17695
- flex-wrap: nowrap;
17696
- scrollbar-color: var(--scrollbar) transparent;
17697
- }
17698
- .s-navigation.s-navigation__scroll::-webkit-scrollbar {
17699
- width: 10px;
17700
- height: 10px;
17701
- background-color: transparent;
17702
- }
17703
- .s-navigation.s-navigation__scroll::-webkit-scrollbar-track {
17704
- border-radius: 10px;
17705
- background-color: transparent;
17706
- }
17707
- .s-navigation.s-navigation__scroll::-webkit-scrollbar-thumb {
17708
- border-radius: 10px;
17709
- background-color: var(--scrollbar);
17710
- }
17711
- .s-navigation.s-navigation__scroll::-webkit-scrollbar-corner {
17712
- background-color: transparent;
17713
- border-color: transparent;
17714
- }
17715
- .s-navigation.s-navigation__vertical {
17716
- flex-direction: column;
17717
- padding: 0;
17718
- margin: 0;
17719
- }
17720
- .s-navigation.s-navigation__vertical .s-navigation--item {
17721
- margin: 0;
17722
- white-space: normal;
17723
- }
17724
- .s-navigation .s-navigation--title {
17725
- font-size: 11px;
17726
- font-weight: bold;
17727
- margin-top: 16px;
17728
- padding: 6px 12px;
17729
- text-transform: uppercase;
17730
- }
17731
- .s-navigation .s-navigation--title:first-child {
17732
- margin-top: 0;
17733
- }
17734
- .s-navigation.s-navigation__muted .s-navigation--item.is-selected {
17735
- background: var(--black-050);
17736
- color: var(--black-800);
17737
- }
17738
- body.theme-highcontrast .s-navigation.s-navigation__muted .s-navigation--item.is-selected {
17739
- background: var(--black-800);
17740
- color: var(--black-050);
17741
- }
17742
- .s-navigation.s-navigation__sm .s-navigation--item {
17743
- padding: 4px 12px;
17744
- font-size: 12px;
17745
- }
17746
- .s-navigation.s-navigation__sm .s-navigation--item.s-navigation--item__dropdown {
17747
- padding-right: 2em;
17748
- }
17749
18147
  .s-notice {
17750
18148
  padding: 16px;
17751
18149
  border: 1px solid transparent;
@@ -17952,7 +18350,7 @@ body.theme-highcontrast .s-notice__danger {
17952
18350
  }
17953
18351
  .s-tag {
17954
18352
  display: inline-flex;
17955
- align-content: center;
18353
+ align-items: center;
17956
18354
  justify-content: center;
17957
18355
  min-width: 0;
17958
18356
  padding-left: 4px;
@@ -17965,9 +18363,9 @@ body.theme-highcontrast .s-notice__danger {
17965
18363
  text-decoration: none;
17966
18364
  vertical-align: middle;
17967
18365
  white-space: nowrap;
17968
- border-color: transparent;
17969
- background-color: var(--powder-100);
17970
- color: var(--powder-700);
18366
+ border-color: var(--theme-tag-border-color);
18367
+ background-color: var(--theme-tag-background-color);
18368
+ color: var(--theme-tag-color);
17971
18369
  }
17972
18370
  body.theme-highcontrast .s-tag {
17973
18371
  border-color: currentColor;
@@ -17977,16 +18375,19 @@ body.theme-highcontrast .s-tag {
17977
18375
  background-color: transparent;
17978
18376
  }
17979
18377
  .s-tag .s-tag--dismiss:hover {
17980
- color: hsl(0, 0%, 100%);
17981
- background-color: var(--powder-700);
18378
+ color: var(--theme-tag-background-color);
18379
+ background-color: var(--theme-tag-color);
17982
18380
  }
17983
18381
  body.theme-highcontrast .s-tag .s-tag--dismiss:hover {
17984
18382
  color: var(--white);
17985
18383
  }
18384
+ body.theme-highcontrast .s-tag {
18385
+ text-decoration: none;
18386
+ }
17986
18387
  .s-tag.is-selected {
17987
18388
  border-color: transparent;
17988
- background-color: var(--powder-300);
17989
- color: var(--powder-900);
18389
+ background-color: var(--theme-secondary-200);
18390
+ color: var(--theme-secondary-900);
17990
18391
  }
17991
18392
  body.theme-highcontrast .s-tag.is-selected {
17992
18393
  border-color: currentColor;
@@ -18017,9 +18418,9 @@ body.theme-highcontrast .s-tag.is-selected {
18017
18418
  a.s-tag:not(.is-selected):hover,
18018
18419
  a.s-tag:not(.is-selected):focus,
18019
18420
  a.s-tag:not(.is-selected):active {
18020
- border-color: transparent;
18021
- background-color: var(--powder-200);
18022
- color: var(--powder-800);
18421
+ border-color: var(--theme-tag-hover-border-color);
18422
+ background-color: var(--theme-tag-hover-background-color);
18423
+ color: var(--theme-tag-hover-color);
18023
18424
  }
18024
18425
  body.theme-highcontrast a.s-tag:not(.is-selected):hover,
18025
18426
  body.theme-highcontrast a.s-tag:not(.is-selected):focus,
@@ -18066,7 +18467,7 @@ body.theme-highcontrast .s-tag__required {
18066
18467
  background-color: transparent;
18067
18468
  }
18068
18469
  .s-tag__required .s-tag--dismiss:hover {
18069
- color: hsl(0, 0%, 100%);
18470
+ color: var(--black-075);
18070
18471
  background-color: var(--black-700);
18071
18472
  }
18072
18473
  body.theme-highcontrast .s-tag__required .s-tag--dismiss:hover {
@@ -18093,9 +18494,9 @@ body.theme-highcontrast a.s-tag__required:not(.is-selected):active {
18093
18494
  border-color: currentColor;
18094
18495
  }
18095
18496
  .s-tag__moderator {
18096
- border-color: var(--red-100);
18497
+ border-color: var(--red-200);
18097
18498
  background-color: var(--red-050);
18098
- color: var(--red-600);
18499
+ color: var(--red-800);
18099
18500
  }
18100
18501
  body.theme-highcontrast .s-tag__moderator {
18101
18502
  border-color: currentColor;
@@ -18105,8 +18506,8 @@ body.theme-highcontrast .s-tag__moderator {
18105
18506
  background-color: transparent;
18106
18507
  }
18107
18508
  .s-tag__moderator .s-tag--dismiss:hover {
18108
- color: hsl(0, 0%, 100%);
18109
- background-color: var(--red-600);
18509
+ color: var(--red-050);
18510
+ background-color: var(--red-800);
18110
18511
  }
18111
18512
  body.theme-highcontrast .s-tag__moderator .s-tag--dismiss:hover {
18112
18513
  color: var(--white);
@@ -18122,9 +18523,9 @@ body.theme-highcontrast .s-tag__moderator.is-selected {
18122
18523
  a.s-tag__moderator:not(.is-selected):hover,
18123
18524
  a.s-tag__moderator:not(.is-selected):focus,
18124
18525
  a.s-tag__moderator:not(.is-selected):active {
18125
- border-color: var(--red-200);
18526
+ border-color: var(--red-300);
18126
18527
  background-color: var(--red-100);
18127
- color: var(--red-700);
18528
+ color: var(--red-900);
18128
18529
  }
18129
18530
  body.theme-highcontrast a.s-tag__moderator:not(.is-selected):hover,
18130
18531
  body.theme-highcontrast a.s-tag__moderator:not(.is-selected):focus,
@@ -18144,7 +18545,7 @@ body.theme-highcontrast .s-tag__muted {
18144
18545
  background-color: transparent;
18145
18546
  }
18146
18547
  .s-tag__muted .s-tag--dismiss:hover {
18147
- color: hsl(0, 0%, 100%);
18548
+ color: var(--black-075);
18148
18549
  background-color: var(--black-700);
18149
18550
  }
18150
18551
  body.theme-highcontrast .s-tag__muted .s-tag--dismiss:hover {
@@ -18170,44 +18571,32 @@ body.theme-highcontrast a.s-tag__muted:not(.is-selected):focus,
18170
18571
  body.theme-highcontrast a.s-tag__muted:not(.is-selected):active {
18171
18572
  border-color: currentColor;
18172
18573
  }
18173
- .s-tag__themed {
18174
- border-color: var(--theme-primary-300);
18175
- background-color: var(--theme-primary-050);
18176
- color: var(--theme-primary-700);
18177
- }
18178
- body.theme-highcontrast .s-tag__themed {
18179
- border-color: currentColor;
18180
- }
18181
- .s-tag__themed .s-tag--dismiss {
18182
- color: inherit;
18183
- background-color: transparent;
18184
- }
18185
- .s-tag__themed .s-tag--dismiss:hover {
18186
- color: hsl(0, 0%, 100%);
18187
- background-color: var(--theme-primary-700);
18188
- }
18189
- body.theme-highcontrast .s-tag__themed .s-tag--dismiss:hover {
18190
- color: var(--white);
18191
- }
18192
- .s-tag__themed.is-selected {
18193
- border-color: transparent;
18194
- background-color: var(--theme-primary-200);
18195
- color: var(--theme-primary-900);
18574
+ .s-tag__watched,
18575
+ .s-tag__ignored {
18576
+ position: relative;
18577
+ padding-left: 22px;
18196
18578
  }
18197
- body.theme-highcontrast .s-tag__themed.is-selected {
18198
- border-color: currentColor;
18579
+ .s-tag__watched:before,
18580
+ .s-tag__ignored:before {
18581
+ content: "";
18582
+ display: block;
18583
+ width: 14px;
18584
+ height: 14px;
18585
+ margin-right: 2px;
18586
+ background-color: currentColor;
18587
+ position: absolute;
18588
+ left: 4px;
18589
+ top: calc(50% - 7px);
18590
+ -webkit-mask: var(--s-tag-icon) no-repeat center;
18591
+ mask: var(--s-tag-icon) no-repeat center;
18592
+ -webkit-mask-size: contain;
18593
+ mask-size: contain;
18199
18594
  }
18200
- a.s-tag__themed:not(.is-selected):hover,
18201
- a.s-tag__themed:not(.is-selected):focus,
18202
- a.s-tag__themed:not(.is-selected):active {
18203
- border-color: var(--theme-primary-400);
18204
- background-color: var(--theme-primary-100);
18205
- color: var(--theme-primary-900);
18595
+ .s-tag__watched {
18596
+ --s-tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M7.05 1C2.63 1 0 6.5 0 6.5S2.63 12 7.05 12C11.38 12 14 6.5 14 6.5S11.37 1 7.05 1ZM7 10.17A3.59 3.59 0 0 1 3.5 6.5 3.6 3.6 0 0 1 7 2.83c1.94 0 3.5 1.65 3.5 3.67A3.57 3.57 0 0 1 7 10.17Zm0-1.84c.97 0 1.75-.81 1.75-1.83S7.97 4.67 7 4.67s-1.75.81-1.75 1.83S6.03 8.33 7 8.33Z'/%3E%3C/svg%3E");
18206
18597
  }
18207
- body.theme-highcontrast a.s-tag__themed:not(.is-selected):hover,
18208
- body.theme-highcontrast a.s-tag__themed:not(.is-selected):focus,
18209
- body.theme-highcontrast a.s-tag__themed:not(.is-selected):active {
18210
- border-color: currentColor;
18598
+ .s-tag__ignored {
18599
+ --s-tag-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath d='M3.52 7.38 1.58 9.26A12.38 12.38 0 0 1 0 7s2.63-5.14 7.05-5.14c.66 0 1.28.12 1.86.32L7.44 3.6a3.48 3.48 0 0 0-3.92 3.78ZM5.3 9.99c.5.28 1.1.44 1.71.44 1.94 0 3.5-1.53 3.5-3.43 0-.62-.17-1.21-.47-1.72L8.7 6.6a1.73 1.73 0 0 1-2.08 2.07L5.29 10Zm6.23-6.19A12.7 12.7 0 0 1 14 7s-2.63 5.14-6.95 5.14A6.1 6.1 0 0 1 4 11.3L2.27 13l-1.4-1.36L11.9 1l1.23 1.2-1.6 1.6Z'/%3E%3C/svg%3E");
18211
18600
  }
18212
18601
  .s-pagination {
18213
18602
  display: flex;
@@ -18226,6 +18615,9 @@ body.theme-highcontrast a.s-tag__themed:not(.is-selected):active {
18226
18615
  line-height: 1.92307692;
18227
18616
  color: var(--fc-medium);
18228
18617
  }
18618
+ body.theme-highcontrast .s-pagination--item {
18619
+ text-decoration: none;
18620
+ }
18229
18621
  .s-pagination--item:hover {
18230
18622
  border-color: var(--bc-darker);
18231
18623
  background-color: var(--black-100);