@stackoverflow/stacks 0.72.0 → 0.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/css/stacks.css +731 -551
- package/dist/css/stacks.min.css +1 -1
- package/dist/js/stacks.js +122 -96
- package/dist/js/stacks.min.js +1 -1
- package/lib/css/atomic/_stacks-flex.less +2 -7
- package/lib/css/atomic/_stacks-grid.less +1 -0
- package/lib/css/atomic/_stacks-typography.less +22 -7
- package/lib/css/base/_stacks-configuration-dynamic.less +4 -14
- package/lib/css/components/_stacks-badges.less +1 -0
- package/lib/css/components/_stacks-inputs.less +5 -0
- package/lib/css/components/_stacks-popovers.less +4 -0
- package/lib/css/components/_stacks-post-summary.less +76 -2
- package/lib/css/components/_stacks-progress-bars.less +18 -3
- package/lib/css/components/_stacks-tags.less +4 -19
- package/lib/css/exports/_stacks-constants-colors.less +8 -0
- package/lib/css/exports/_stacks-constants-helpers.less +1 -0
- package/package.json +10 -7
package/dist/css/stacks.css
CHANGED
|
@@ -571,7 +571,8 @@ body.theme-highcontrast .s-avatar .s-avatar--letter {
|
|
|
571
571
|
height: 128px;
|
|
572
572
|
border-radius: 14px;
|
|
573
573
|
}
|
|
574
|
-
.s-badge
|
|
574
|
+
.s-badge,
|
|
575
|
+
.s-topbar--notice {
|
|
575
576
|
display: inline-flex;
|
|
576
577
|
align-items: center;
|
|
577
578
|
justify-content: center;
|
|
@@ -590,9 +591,6 @@ body.theme-highcontrast .s-avatar .s-avatar--letter {
|
|
|
590
591
|
background-color: var(--black-050);
|
|
591
592
|
color: var(--black-700);
|
|
592
593
|
}
|
|
593
|
-
.s-badge .s-tag--dismiss {
|
|
594
|
-
background-color: transparent;
|
|
595
|
-
}
|
|
596
594
|
a.s-badge:hover {
|
|
597
595
|
text-decoration: none;
|
|
598
596
|
}
|
|
@@ -622,25 +620,16 @@ a.s-badge:hover {
|
|
|
622
620
|
background-color: var(--gold-lighter);
|
|
623
621
|
color: var(--black-700);
|
|
624
622
|
}
|
|
625
|
-
.s-badge__gold .s-tag--dismiss {
|
|
626
|
-
background-color: transparent;
|
|
627
|
-
}
|
|
628
623
|
.s-badge__silver {
|
|
629
624
|
border-color: var(--silver-darker);
|
|
630
625
|
background-color: var(--silver-lighter);
|
|
631
626
|
color: var(--black-700);
|
|
632
627
|
}
|
|
633
|
-
.s-badge__silver .s-tag--dismiss {
|
|
634
|
-
background-color: transparent;
|
|
635
|
-
}
|
|
636
628
|
.s-badge__bronze {
|
|
637
629
|
border-color: var(--bronze-darker);
|
|
638
630
|
background-color: var(--bronze-lighter);
|
|
639
631
|
color: var(--black-700);
|
|
640
632
|
}
|
|
641
|
-
.s-badge__bronze .s-tag--dismiss {
|
|
642
|
-
background-color: transparent;
|
|
643
|
-
}
|
|
644
633
|
body.theme-highcontrast .s-badge__gold,
|
|
645
634
|
body.theme-highcontrast .s-badge__silver,
|
|
646
635
|
body.theme-highcontrast .s-badge__bronze {
|
|
@@ -652,17 +641,11 @@ body.theme-highcontrast .s-badge__bronze {
|
|
|
652
641
|
background-color: var(--blue-600);
|
|
653
642
|
color: var(--white);
|
|
654
643
|
}
|
|
655
|
-
.s-badge__bounty .s-tag--dismiss {
|
|
656
|
-
background-color: transparent;
|
|
657
|
-
}
|
|
658
644
|
.s-badge__votes {
|
|
659
645
|
border-color: var(--black-150);
|
|
660
646
|
background-color: var(--white);
|
|
661
647
|
color: var(--black-700);
|
|
662
648
|
}
|
|
663
|
-
.s-badge__votes .s-tag--dismiss {
|
|
664
|
-
background-color: transparent;
|
|
665
|
-
}
|
|
666
649
|
body.theme-highcontrast .s-badge__votes {
|
|
667
650
|
border-color: currentColor;
|
|
668
651
|
}
|
|
@@ -671,17 +654,11 @@ body.theme-highcontrast .s-badge__votes {
|
|
|
671
654
|
background-color: var(--green-400);
|
|
672
655
|
color: var(--white);
|
|
673
656
|
}
|
|
674
|
-
.s-badge__answered .s-tag--dismiss {
|
|
675
|
-
background-color: transparent;
|
|
676
|
-
}
|
|
677
657
|
.s-badge__rep {
|
|
678
658
|
border-color: var(--green-400);
|
|
679
659
|
background-color: var(--white);
|
|
680
660
|
color: var(--green-500);
|
|
681
661
|
}
|
|
682
|
-
.s-badge__rep .s-tag--dismiss {
|
|
683
|
-
background-color: transparent;
|
|
684
|
-
}
|
|
685
662
|
body.theme-highcontrast .s-badge__rep {
|
|
686
663
|
border-color: currentColor;
|
|
687
664
|
}
|
|
@@ -690,9 +667,6 @@ body.theme-highcontrast .s-badge__rep {
|
|
|
690
667
|
background-color: var(--white);
|
|
691
668
|
color: var(--red-500);
|
|
692
669
|
}
|
|
693
|
-
.s-badge__rep-down .s-tag--dismiss {
|
|
694
|
-
background-color: transparent;
|
|
695
|
-
}
|
|
696
670
|
body.theme-highcontrast .s-badge__rep-down {
|
|
697
671
|
border-color: currentColor;
|
|
698
672
|
}
|
|
@@ -701,17 +675,11 @@ body.theme-highcontrast .s-badge__rep-down {
|
|
|
701
675
|
background-color: var(--red-600);
|
|
702
676
|
color: var(--white);
|
|
703
677
|
}
|
|
704
|
-
.s-badge__important .s-tag--dismiss {
|
|
705
|
-
background-color: transparent;
|
|
706
|
-
}
|
|
707
678
|
.s-badge__admin {
|
|
708
679
|
border-color: var(--theme-primary-200);
|
|
709
680
|
background-color: var(--theme-primary-075);
|
|
710
681
|
color: var(--theme-primary-800);
|
|
711
682
|
}
|
|
712
|
-
.s-badge__admin .s-tag--dismiss {
|
|
713
|
-
background-color: transparent;
|
|
714
|
-
}
|
|
715
683
|
body.theme-highcontrast .s-badge__admin {
|
|
716
684
|
border-color: currentColor;
|
|
717
685
|
}
|
|
@@ -720,9 +688,6 @@ body.theme-highcontrast .s-badge__admin {
|
|
|
720
688
|
background-color: var(--theme-secondary-075);
|
|
721
689
|
color: var(--theme-secondary-800);
|
|
722
690
|
}
|
|
723
|
-
.s-badge__moderator .s-tag--dismiss {
|
|
724
|
-
background-color: transparent;
|
|
725
|
-
}
|
|
726
691
|
body.theme-highcontrast .s-badge__moderator {
|
|
727
692
|
border-color: currentColor;
|
|
728
693
|
}
|
|
@@ -758,9 +723,6 @@ body.theme-highcontrast .s-badge__moderator {
|
|
|
758
723
|
background-color: var(--orange-100);
|
|
759
724
|
color: var(--orange-900);
|
|
760
725
|
}
|
|
761
|
-
.s-badge__staff .s-tag--dismiss {
|
|
762
|
-
background-color: transparent;
|
|
763
|
-
}
|
|
764
726
|
body.theme-highcontrast .s-badge__staff {
|
|
765
727
|
border-color: currentColor;
|
|
766
728
|
}
|
|
@@ -1691,6 +1653,10 @@ body.theme-highcontrast .s-input-icon.s-input-icon__creditcard {
|
|
|
1691
1653
|
padding-bottom: 0.5em;
|
|
1692
1654
|
border-radius: 4px;
|
|
1693
1655
|
}
|
|
1656
|
+
.s-textarea__md {
|
|
1657
|
+
padding-top: 0.72em;
|
|
1658
|
+
padding-bottom: 0.72em;
|
|
1659
|
+
}
|
|
1694
1660
|
.s-input__lg,
|
|
1695
1661
|
.s-textarea__lg,
|
|
1696
1662
|
.s-select__lg > select {
|
|
@@ -1876,6 +1842,131 @@ body.theme-dark .s-modal--dialog,
|
|
|
1876
1842
|
max-width: calc(100% - 48px);
|
|
1877
1843
|
max-height: calc(100% - 48px);
|
|
1878
1844
|
}
|
|
1845
|
+
.s-navigation {
|
|
1846
|
+
display: flex;
|
|
1847
|
+
margin: -2px;
|
|
1848
|
+
padding: 2px 0;
|
|
1849
|
+
flex-wrap: wrap;
|
|
1850
|
+
list-style: none;
|
|
1851
|
+
}
|
|
1852
|
+
.s-navigation .s-navigation--item {
|
|
1853
|
+
display: flex;
|
|
1854
|
+
align-items: center;
|
|
1855
|
+
padding: 6px 12px;
|
|
1856
|
+
position: relative;
|
|
1857
|
+
border: none;
|
|
1858
|
+
font: unset;
|
|
1859
|
+
background: none;
|
|
1860
|
+
box-shadow: none;
|
|
1861
|
+
cursor: pointer;
|
|
1862
|
+
user-select: auto;
|
|
1863
|
+
border-radius: 1000px;
|
|
1864
|
+
margin: 2px;
|
|
1865
|
+
white-space: nowrap;
|
|
1866
|
+
color: var(--black-600);
|
|
1867
|
+
}
|
|
1868
|
+
.s-navigation .s-navigation--item:hover,
|
|
1869
|
+
.s-navigation .s-navigation--item:active {
|
|
1870
|
+
background: var(--black-075);
|
|
1871
|
+
color: var(--black-600);
|
|
1872
|
+
}
|
|
1873
|
+
body.theme-highcontrast .s-navigation .s-navigation--item:hover,
|
|
1874
|
+
body.theme-highcontrast .s-navigation .s-navigation--item:active {
|
|
1875
|
+
background: var(--black-600);
|
|
1876
|
+
color: var(--black-100);
|
|
1877
|
+
}
|
|
1878
|
+
.s-navigation .s-navigation--item:focus:not(:focus-visible) {
|
|
1879
|
+
outline: none;
|
|
1880
|
+
box-shadow: none;
|
|
1881
|
+
}
|
|
1882
|
+
.s-navigation .s-navigation--item:focus-visible {
|
|
1883
|
+
outline: none;
|
|
1884
|
+
box-shadow: 0 0 0 4px var(--focus-ring-muted);
|
|
1885
|
+
}
|
|
1886
|
+
.s-navigation .s-navigation--item.is-selected {
|
|
1887
|
+
background: var(--theme-primary-color);
|
|
1888
|
+
color: var(--white);
|
|
1889
|
+
}
|
|
1890
|
+
.s-navigation .s-navigation--item.is-selected:hover,
|
|
1891
|
+
.s-navigation .s-navigation--item.is-selected:active {
|
|
1892
|
+
background: var(--theme-primary-600);
|
|
1893
|
+
color: var(--white);
|
|
1894
|
+
}
|
|
1895
|
+
body.theme-highcontrast .s-navigation .s-navigation--item.is-selected {
|
|
1896
|
+
text-decoration: none;
|
|
1897
|
+
}
|
|
1898
|
+
.s-navigation .s-navigation--item.s-navigation--item__dropdown {
|
|
1899
|
+
padding-right: 2em;
|
|
1900
|
+
}
|
|
1901
|
+
.s-navigation .s-navigation--item.s-navigation--item__dropdown:after {
|
|
1902
|
+
content: "";
|
|
1903
|
+
position: absolute;
|
|
1904
|
+
z-index: 30;
|
|
1905
|
+
top: calc(50% - 2px);
|
|
1906
|
+
right: 0.9em;
|
|
1907
|
+
border-style: solid;
|
|
1908
|
+
border-width: 4px;
|
|
1909
|
+
border-top-width: 4px;
|
|
1910
|
+
border-bottom-width: 0;
|
|
1911
|
+
border-color: currentColor transparent;
|
|
1912
|
+
pointer-events: none;
|
|
1913
|
+
}
|
|
1914
|
+
.s-navigation.s-navigation__scroll {
|
|
1915
|
+
overflow-x: auto;
|
|
1916
|
+
flex-wrap: nowrap;
|
|
1917
|
+
scrollbar-color: var(--scrollbar) transparent;
|
|
1918
|
+
}
|
|
1919
|
+
.s-navigation.s-navigation__scroll::-webkit-scrollbar {
|
|
1920
|
+
width: 10px;
|
|
1921
|
+
height: 10px;
|
|
1922
|
+
background-color: transparent;
|
|
1923
|
+
}
|
|
1924
|
+
.s-navigation.s-navigation__scroll::-webkit-scrollbar-track {
|
|
1925
|
+
border-radius: 10px;
|
|
1926
|
+
background-color: transparent;
|
|
1927
|
+
}
|
|
1928
|
+
.s-navigation.s-navigation__scroll::-webkit-scrollbar-thumb {
|
|
1929
|
+
border-radius: 10px;
|
|
1930
|
+
background-color: var(--scrollbar);
|
|
1931
|
+
}
|
|
1932
|
+
.s-navigation.s-navigation__scroll::-webkit-scrollbar-corner {
|
|
1933
|
+
background-color: transparent;
|
|
1934
|
+
border-color: transparent;
|
|
1935
|
+
}
|
|
1936
|
+
.s-navigation.s-navigation__vertical {
|
|
1937
|
+
flex-direction: column;
|
|
1938
|
+
padding: 0;
|
|
1939
|
+
margin: 0;
|
|
1940
|
+
}
|
|
1941
|
+
.s-navigation.s-navigation__vertical .s-navigation--item {
|
|
1942
|
+
margin: 0;
|
|
1943
|
+
white-space: normal;
|
|
1944
|
+
}
|
|
1945
|
+
.s-navigation .s-navigation--title {
|
|
1946
|
+
font-size: 11px;
|
|
1947
|
+
font-weight: bold;
|
|
1948
|
+
margin-top: 16px;
|
|
1949
|
+
padding: 6px 12px;
|
|
1950
|
+
text-transform: uppercase;
|
|
1951
|
+
}
|
|
1952
|
+
.s-navigation .s-navigation--title:first-child {
|
|
1953
|
+
margin-top: 0;
|
|
1954
|
+
}
|
|
1955
|
+
.s-navigation.s-navigation__muted .s-navigation--item.is-selected {
|
|
1956
|
+
background: var(--black-050);
|
|
1957
|
+
color: var(--black-800);
|
|
1958
|
+
}
|
|
1959
|
+
body.theme-highcontrast .s-navigation.s-navigation__muted .s-navigation--item.is-selected {
|
|
1960
|
+
background: var(--black-800);
|
|
1961
|
+
color: var(--black-050);
|
|
1962
|
+
}
|
|
1963
|
+
.s-navigation.s-navigation__sm .s-navigation--item {
|
|
1964
|
+
padding: 4px 12px;
|
|
1965
|
+
font-size: 12px;
|
|
1966
|
+
}
|
|
1967
|
+
.s-navigation.s-navigation__sm .s-navigation--item.s-navigation--item__dropdown {
|
|
1968
|
+
padding-right: 2em;
|
|
1969
|
+
}
|
|
1879
1970
|
.s-page-title {
|
|
1880
1971
|
display: flex;
|
|
1881
1972
|
flex-direction: row;
|
|
@@ -1937,6 +2028,7 @@ body.theme-dark .s-modal--dialog,
|
|
|
1937
2028
|
font-size: 13px;
|
|
1938
2029
|
min-width: 12rem;
|
|
1939
2030
|
width: 100%;
|
|
2031
|
+
white-space: normal;
|
|
1940
2032
|
}
|
|
1941
2033
|
@media (prefers-color-scheme: dark) {
|
|
1942
2034
|
body.theme-system .s-popover {
|
|
@@ -2143,7 +2235,14 @@ body.theme-dark .s-popover--arrow,
|
|
|
2143
2235
|
border: 1px solid transparent;
|
|
2144
2236
|
}
|
|
2145
2237
|
.s-post-summary--stats .s-post-summary--stats-item.has-answers,
|
|
2146
|
-
.s-post-summary--stats .s-post-summary--stats-item.has-bounty
|
|
2238
|
+
.s-post-summary--stats .s-post-summary--stats-item.has-bounty,
|
|
2239
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-watched,
|
|
2240
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-ignored,
|
|
2241
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-deleted,
|
|
2242
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-published,
|
|
2243
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-draft,
|
|
2244
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-review,
|
|
2245
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-rejected {
|
|
2147
2246
|
border-radius: 3px;
|
|
2148
2247
|
padding: 2px 4px;
|
|
2149
2248
|
}
|
|
@@ -2171,6 +2270,22 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2171
2270
|
.s-post-summary--stats .s-post-summary--stats-item.is-supernova {
|
|
2172
2271
|
color: var(--orange-400);
|
|
2173
2272
|
}
|
|
2273
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-published {
|
|
2274
|
+
color: var(--black-800);
|
|
2275
|
+
background-color: var(--black-050);
|
|
2276
|
+
}
|
|
2277
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-draft {
|
|
2278
|
+
color: var(--white);
|
|
2279
|
+
background-color: var(--blue-700);
|
|
2280
|
+
}
|
|
2281
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-review {
|
|
2282
|
+
color: var(--white);
|
|
2283
|
+
background-color: var(--yellow-700);
|
|
2284
|
+
}
|
|
2285
|
+
.s-post-summary--stats .s-post-summary--stats-item.is-rejected {
|
|
2286
|
+
color: var(--white);
|
|
2287
|
+
background-color: var(--red-600);
|
|
2288
|
+
}
|
|
2174
2289
|
@media (max-width: 980px) {
|
|
2175
2290
|
.s-post-summary--stats {
|
|
2176
2291
|
flex-direction: row;
|
|
@@ -2184,7 +2299,7 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2184
2299
|
}
|
|
2185
2300
|
.s-post-summary--content .s-post-summary--content-title {
|
|
2186
2301
|
display: inline-block;
|
|
2187
|
-
font-size: 1.
|
|
2302
|
+
font-size: 1.30769231rem;
|
|
2188
2303
|
margin-bottom: 6px;
|
|
2189
2304
|
overflow-wrap: break-word;
|
|
2190
2305
|
word-wrap: break-word;
|
|
@@ -2240,6 +2355,83 @@ body.theme-highcontrast .s-post-summary--stats .s-post-summary--stats-item.has-a
|
|
|
2240
2355
|
margin-bottom: var(--s-post-summary-tags-gap);
|
|
2241
2356
|
margin-left: auto;
|
|
2242
2357
|
}
|
|
2358
|
+
.s-post-summary--answer {
|
|
2359
|
+
position: relative;
|
|
2360
|
+
margin: 16px 1em 0 1em;
|
|
2361
|
+
padding: 0.5em 0 0.5em calc(1em + 4px);
|
|
2362
|
+
}
|
|
2363
|
+
.s-post-summary--answer + .s-post-summary--answer {
|
|
2364
|
+
margin-top: 16px;
|
|
2365
|
+
}
|
|
2366
|
+
.s-post-summary--answer:before {
|
|
2367
|
+
content: "";
|
|
2368
|
+
display: block;
|
|
2369
|
+
position: absolute;
|
|
2370
|
+
top: 0;
|
|
2371
|
+
bottom: 0;
|
|
2372
|
+
left: 0;
|
|
2373
|
+
width: 4px;
|
|
2374
|
+
border-radius: 8px;
|
|
2375
|
+
background: var(--black-150);
|
|
2376
|
+
}
|
|
2377
|
+
body.theme-highcontrast .s-post-summary--answer:before {
|
|
2378
|
+
background: var(--black-600);
|
|
2379
|
+
}
|
|
2380
|
+
.s-post-summary--answer .s-post-summary--stats {
|
|
2381
|
+
width: auto;
|
|
2382
|
+
flex-direction: row;
|
|
2383
|
+
align-items: center;
|
|
2384
|
+
margin-bottom: 4px;
|
|
2385
|
+
}
|
|
2386
|
+
.s-post-summary--answer .s-post-summary--answer-excerpt {
|
|
2387
|
+
color: var(--black-600);
|
|
2388
|
+
margin-bottom: 8px;
|
|
2389
|
+
display: -webkit-box;
|
|
2390
|
+
-webkit-line-clamp: 4;
|
|
2391
|
+
-webkit-box-orient: vertical;
|
|
2392
|
+
overflow: hidden;
|
|
2393
|
+
}
|
|
2394
|
+
.s-post-summary__watched .is-watched {
|
|
2395
|
+
color: var(--white);
|
|
2396
|
+
background-color: var(--yellow-600);
|
|
2397
|
+
}
|
|
2398
|
+
.s-post-summary__ignored .is-ignored {
|
|
2399
|
+
color: var(--white);
|
|
2400
|
+
background-color: var(--black-600);
|
|
2401
|
+
}
|
|
2402
|
+
.s-post-summary__deleted .is-deleted {
|
|
2403
|
+
color: hsl(0, 0%, 100%);
|
|
2404
|
+
background-color: var(--red-500);
|
|
2405
|
+
}
|
|
2406
|
+
.s-post-summary__ignored .s-post-summary--content,
|
|
2407
|
+
.s-post-summary__deleted .s-post-summary--content {
|
|
2408
|
+
opacity: 0.7;
|
|
2409
|
+
}
|
|
2410
|
+
.s-post-summary__ignored .s-post-summary--stats-item:not(.is-ignored):not(.is-deleted),
|
|
2411
|
+
.s-post-summary__deleted .s-post-summary--stats-item:not(.is-ignored):not(.is-deleted) {
|
|
2412
|
+
opacity: 0.7;
|
|
2413
|
+
filter: grayscale(100%);
|
|
2414
|
+
}
|
|
2415
|
+
.s-post-summary__ignored .s-post-summary--content-title,
|
|
2416
|
+
.s-post-summary__deleted .s-post-summary--content-title {
|
|
2417
|
+
color: var(--black-600);
|
|
2418
|
+
}
|
|
2419
|
+
.s-post-summary__ignored .s-post-summary--content-title:hover,
|
|
2420
|
+
.s-post-summary__deleted .s-post-summary--content-title:hover {
|
|
2421
|
+
color: var(--black-500);
|
|
2422
|
+
}
|
|
2423
|
+
.s-post-summary__ignored .s-post-summary--content-title:visited,
|
|
2424
|
+
.s-post-summary__deleted .s-post-summary--content-title:visited {
|
|
2425
|
+
color: var(--black-700);
|
|
2426
|
+
}
|
|
2427
|
+
.s-post-summary__ignored .s-post-summary--content-excerpt,
|
|
2428
|
+
.s-post-summary__deleted .s-post-summary--content-excerpt {
|
|
2429
|
+
color: var(--black-500);
|
|
2430
|
+
}
|
|
2431
|
+
.s-post-summary__ignored .s-post-summary--meta,
|
|
2432
|
+
.s-post-summary__deleted .s-post-summary--meta {
|
|
2433
|
+
filter: grayscale(100%);
|
|
2434
|
+
}
|
|
2243
2435
|
.s-progress,
|
|
2244
2436
|
.s-progress--bar {
|
|
2245
2437
|
position: relative;
|
|
@@ -2280,6 +2472,10 @@ body.theme-highcontrast .s-progress__privilege .s-progress--bar {
|
|
|
2280
2472
|
}
|
|
2281
2473
|
.s-progress__privilege .s-progress--label {
|
|
2282
2474
|
border-color: var(--green-400);
|
|
2475
|
+
display: flex;
|
|
2476
|
+
gap: 4px;
|
|
2477
|
+
align-items: center;
|
|
2478
|
+
justify-content: center;
|
|
2283
2479
|
}
|
|
2284
2480
|
.s-progress__privilege,
|
|
2285
2481
|
.s-progress__privilege .s-progress--bar,
|
|
@@ -2292,6 +2488,17 @@ body.theme-highcontrast .s-progress__privilege .s-progress--bar {
|
|
|
2292
2488
|
.s-progress__badge {
|
|
2293
2489
|
background-color: transparent;
|
|
2294
2490
|
}
|
|
2491
|
+
.s-progress__badge .s-progress--label {
|
|
2492
|
+
display: flex;
|
|
2493
|
+
gap: 4px;
|
|
2494
|
+
align-items: center;
|
|
2495
|
+
padding-left: 1em;
|
|
2496
|
+
padding-right: 1em;
|
|
2497
|
+
}
|
|
2498
|
+
.s-progress__badge .s-progress--label .s-badge--label {
|
|
2499
|
+
text-align: center;
|
|
2500
|
+
flex-grow: 1;
|
|
2501
|
+
}
|
|
2295
2502
|
.s-progress__gold .s-progress--bar {
|
|
2296
2503
|
background-color: var(--gold-lighter);
|
|
2297
2504
|
}
|
|
@@ -3279,69 +3486,429 @@ body.theme-highcontrast .s-table tr.is-disabled td:not(.is-enabled) {
|
|
|
3279
3486
|
width: 50%;
|
|
3280
3487
|
height: 100%;
|
|
3281
3488
|
}
|
|
3282
|
-
.s-toggle-switch input[type="checkbox"] + .s-toggle-switch--indicator:after {
|
|
3283
|
-
left: 0;
|
|
3284
|
-
border-radius: 50%;
|
|
3285
|
-
background: hsl(0, 0%, 100%);
|
|
3286
|
-
transition: left 0.1s ease;
|
|
3489
|
+
.s-toggle-switch input[type="checkbox"] + .s-toggle-switch--indicator:after {
|
|
3490
|
+
left: 0;
|
|
3491
|
+
border-radius: 50%;
|
|
3492
|
+
background: hsl(0, 0%, 100%);
|
|
3493
|
+
transition: left 0.1s ease;
|
|
3494
|
+
}
|
|
3495
|
+
body.theme-highcontrast .s-toggle-switch input[type="checkbox"] + .s-toggle-switch--indicator:after {
|
|
3496
|
+
background: var(--white);
|
|
3497
|
+
}
|
|
3498
|
+
.s-toggle-switch input[type="checkbox"] + .s-toggle-switch--indicator:before {
|
|
3499
|
+
display: none;
|
|
3500
|
+
}
|
|
3501
|
+
.s-toggle-switch input[type="checkbox"]:checked + .s-toggle-switch--indicator {
|
|
3502
|
+
background: var(--green-400);
|
|
3503
|
+
}
|
|
3504
|
+
.s-toggle-switch input[type="checkbox"]:checked + .s-toggle-switch--indicator:after {
|
|
3505
|
+
left: 50%;
|
|
3506
|
+
}
|
|
3507
|
+
.s-toggle-switch input[type="checkbox"]:focus + .s-toggle-switch--indicator {
|
|
3508
|
+
box-shadow: 0 0 0 4px var(--focus-ring-muted);
|
|
3509
|
+
}
|
|
3510
|
+
.s-toggle-switch input[type="checkbox"]:checked:focus + .s-toggle-switch--indicator {
|
|
3511
|
+
box-shadow: 0 0 0 4px var(--focus-ring-success);
|
|
3512
|
+
}
|
|
3513
|
+
.s-toggle-switch.s-toggle-switch__multiple {
|
|
3514
|
+
display: flex;
|
|
3515
|
+
align-items: stretch;
|
|
3516
|
+
}
|
|
3517
|
+
.s-toggle-switch.s-toggle-switch__multiple input[type="radio"] {
|
|
3518
|
+
position: absolute;
|
|
3519
|
+
left: -999em;
|
|
3520
|
+
opacity: 0;
|
|
3521
|
+
margin: 0;
|
|
3522
|
+
}
|
|
3523
|
+
.s-toggle-switch.s-toggle-switch__multiple label {
|
|
3524
|
+
width: 100%;
|
|
3525
|
+
margin: 0;
|
|
3526
|
+
padding: 0.5em 0.7em;
|
|
3527
|
+
border-radius: 1000px;
|
|
3528
|
+
color: var(--black-500);
|
|
3529
|
+
font-size: 13px;
|
|
3530
|
+
font-weight: 400;
|
|
3531
|
+
line-height: 1;
|
|
3532
|
+
text-align: center;
|
|
3533
|
+
white-space: nowrap;
|
|
3534
|
+
cursor: pointer;
|
|
3535
|
+
-webkit-touch-callout: none;
|
|
3536
|
+
-webkit-user-select: none;
|
|
3537
|
+
user-select: none;
|
|
3538
|
+
}
|
|
3539
|
+
.s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked + label.s-toggle-switch--label-off {
|
|
3540
|
+
background-color: var(--black-300);
|
|
3541
|
+
color: hsl(0, 0%, 100%);
|
|
3542
|
+
}
|
|
3543
|
+
body.theme-highcontrast .s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked + label.s-toggle-switch--label-off {
|
|
3544
|
+
color: var(--white);
|
|
3545
|
+
}
|
|
3546
|
+
.s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked + label:not(.s-toggle-switch--label-off) {
|
|
3547
|
+
background-color: var(--green-400);
|
|
3548
|
+
color: hsl(0, 0%, 100%);
|
|
3549
|
+
}
|
|
3550
|
+
body.theme-highcontrast .s-toggle-switch.s-toggle-switch__multiple input[type="radio"]:checked + label:not(.s-toggle-switch--label-off) {
|
|
3551
|
+
color: var(--white);
|
|
3552
|
+
}
|
|
3553
|
+
.s-topbar {
|
|
3554
|
+
min-width: auto;
|
|
3555
|
+
box-shadow: var(--bs-sm);
|
|
3556
|
+
width: 100%;
|
|
3557
|
+
z-index: 5050;
|
|
3558
|
+
background-color: var(--theme-topbar-background-color);
|
|
3559
|
+
height: var(--theme-topbar-height);
|
|
3560
|
+
display: flex;
|
|
3561
|
+
border-top: var(--theme-topbar-accent-border);
|
|
3562
|
+
position: relative;
|
|
3563
|
+
align-items: center;
|
|
3564
|
+
}
|
|
3565
|
+
body.theme-highcontrast .s-topbar {
|
|
3566
|
+
--theme-topbar-search-color: var(--theme-topbar-item-color);
|
|
3567
|
+
--theme-topbar-search-background: var(--theme-topbar-background-color);
|
|
3568
|
+
--theme-topbar-search-placeholder: var(--theme-topbar-item-color);
|
|
3569
|
+
--theme-topbar-search-border: var(--theme-topbar-item-color);
|
|
3570
|
+
--theme-topbar-search-border-focus: var(--theme-topbar-item-color);
|
|
3571
|
+
--theme-topbar-select-color: var(--theme-topbar-item-color);
|
|
3572
|
+
--theme-topbar-select-background: var(--theme-topbar-background-color);
|
|
3573
|
+
--theme-topbar-item-color: var(--black-800);
|
|
3574
|
+
--theme-topbar-item-color-hover: var(--black-900);
|
|
3575
|
+
--theme-topbar-item-background-hover: var(--black-200);
|
|
3576
|
+
--theme-topbar-item-color-current: var(--black);
|
|
3577
|
+
}
|
|
3578
|
+
body.theme-highcontrast .s-topbar {
|
|
3579
|
+
border-bottom: 1px solid currentColor;
|
|
3580
|
+
}
|
|
3581
|
+
.s-topbar .s-topbar--container {
|
|
3582
|
+
width: 97.2307692rem;
|
|
3583
|
+
max-width: 100%;
|
|
3584
|
+
height: 100%;
|
|
3585
|
+
display: flex;
|
|
3586
|
+
margin: 0 auto;
|
|
3587
|
+
align-items: center;
|
|
3588
|
+
}
|
|
3589
|
+
.s-topbar .s-topbar--logo {
|
|
3590
|
+
padding: 0 8px;
|
|
3591
|
+
height: 100%;
|
|
3592
|
+
display: flex;
|
|
3593
|
+
align-items: center;
|
|
3594
|
+
background-color: transparent;
|
|
3595
|
+
}
|
|
3596
|
+
.s-topbar a.s-topbar--logo:hover {
|
|
3597
|
+
background-color: var(--theme-topbar-item-background-hover);
|
|
3598
|
+
}
|
|
3599
|
+
.s-topbar a.s-topbar--logo.is-selected {
|
|
3600
|
+
background-color: var(--theme-topbar-item-background-hover);
|
|
3601
|
+
}
|
|
3602
|
+
.s-topbar .s-topbar--menu-btn {
|
|
3603
|
+
display: flex;
|
|
3604
|
+
height: 100%;
|
|
3605
|
+
padding: 0 16px;
|
|
3606
|
+
flex-shrink: 0;
|
|
3607
|
+
align-items: center;
|
|
3608
|
+
justify-content: center;
|
|
3609
|
+
}
|
|
3610
|
+
.s-topbar .s-topbar--menu-btn span,
|
|
3611
|
+
.s-topbar .s-topbar--menu-btn span:before,
|
|
3612
|
+
.s-topbar .s-topbar--menu-btn span:after {
|
|
3613
|
+
width: 16px;
|
|
3614
|
+
height: 2px;
|
|
3615
|
+
background-color: var(--theme-topbar-item-color);
|
|
3616
|
+
position: relative;
|
|
3617
|
+
}
|
|
3618
|
+
.s-topbar .s-topbar--menu-btn span:before,
|
|
3619
|
+
.s-topbar .s-topbar--menu-btn span:after {
|
|
3620
|
+
position: absolute;
|
|
3621
|
+
content: '';
|
|
3622
|
+
left: 0;
|
|
3623
|
+
top: -5px;
|
|
3624
|
+
transition: top, transform;
|
|
3625
|
+
transition-duration: 0.1s;
|
|
3626
|
+
transition-timing-function: ease-in-out;
|
|
3627
|
+
}
|
|
3628
|
+
.s-topbar .s-topbar--menu-btn span:after {
|
|
3629
|
+
top: 5px;
|
|
3630
|
+
}
|
|
3631
|
+
.s-topbar .s-topbar--menu-btn.is-selected {
|
|
3632
|
+
color: var(--theme-topbar-item-color-current);
|
|
3633
|
+
background-color: var(--theme-topbar-item-background-current);
|
|
3634
|
+
}
|
|
3635
|
+
.s-topbar .s-topbar--menu-btn.is-selected span {
|
|
3636
|
+
background-color: transparent;
|
|
3637
|
+
}
|
|
3638
|
+
.s-topbar .s-topbar--menu-btn.is-selected span:before,
|
|
3639
|
+
.s-topbar .s-topbar--menu-btn.is-selected span:after {
|
|
3640
|
+
top: 0;
|
|
3641
|
+
transform: rotate(-45deg);
|
|
3642
|
+
}
|
|
3643
|
+
.s-topbar .s-topbar--menu-btn.is-selected span:after {
|
|
3644
|
+
transform: rotate(45deg);
|
|
3645
|
+
}
|
|
3646
|
+
.s-topbar .s-topbar--menu-btn:hover {
|
|
3647
|
+
color: var(--theme-topbar-item-color-hover);
|
|
3648
|
+
background-color: var(--theme-topbar-item-background-hover);
|
|
3649
|
+
}
|
|
3650
|
+
.s-topbar .s-navigation .s-navigation--item:not(.is-selected) {
|
|
3651
|
+
color: var(--theme-topbar-item-color);
|
|
3652
|
+
}
|
|
3653
|
+
.s-topbar .s-navigation .s-navigation--item:not(.is-selected):hover {
|
|
3654
|
+
color: var(--theme-topbar-item-color-hover);
|
|
3655
|
+
background-color: var(--theme-topbar-item-background-hover);
|
|
3656
|
+
}
|
|
3657
|
+
.s-topbar__light {
|
|
3658
|
+
--theme-topbar-background-color: hsl(210, 8%, 97.5%);
|
|
3659
|
+
--theme-topbar-search-color: hsl(210, 8%, 25%);
|
|
3660
|
+
--theme-topbar-search-background: hsl(0, 0%, 100%);
|
|
3661
|
+
--theme-topbar-search-placeholder: hsl(210, 8%, 75%);
|
|
3662
|
+
--theme-topbar-search-border: hsl(210, 8%, 75%);
|
|
3663
|
+
--theme-topbar-search-border-focus: hsl(206, 90%, 69.5%);
|
|
3664
|
+
--theme-topbar-search-shadow-focus: 0 0 0 4px var(--focus-ring);
|
|
3665
|
+
--theme-topbar-select-color: hsl(210, 8%, 25%);
|
|
3666
|
+
--theme-topbar-select-background: hsl(210, 8%, 95%);
|
|
3667
|
+
--theme-topbar-item-color: hsl(210, 8%, 35%);
|
|
3668
|
+
--theme-topbar-item-color-hover: hsl(210, 8%, 15%);
|
|
3669
|
+
--theme-topbar-item-background-hover: hsl(210, 8%, 90%);
|
|
3670
|
+
--theme-topbar-item-color-current: hsl(210, 8%, 5%);
|
|
3671
|
+
--theme-topbar-item-border-current: var(--theme-primary-color);
|
|
3672
|
+
--scrollbar: hsla(0, 0%, 0%, 0.2);
|
|
3673
|
+
}
|
|
3674
|
+
body.theme-highcontrast .s-topbar__light {
|
|
3675
|
+
--theme-topbar-item-color: hsl(210, 8%, 15%);
|
|
3676
|
+
--theme-topbar-item-color-hover: hsl(210, 8%, 5%);
|
|
3677
|
+
--theme-topbar-item-background-hover: hsl(210, 8%, 90%);
|
|
3678
|
+
--theme-topbar-item-color-current: hsl(210, 8%, 5%);
|
|
3679
|
+
}
|
|
3680
|
+
.s-topbar__dark {
|
|
3681
|
+
--theme-topbar-background-color: hsl(210, 8%, 15%);
|
|
3682
|
+
--theme-topbar-search-color: hsl(0, 0%, 100%);
|
|
3683
|
+
--theme-topbar-search-background: hsl(210, 8%, 25%);
|
|
3684
|
+
--theme-topbar-search-placeholder: hsl(210, 8%, 85%);
|
|
3685
|
+
--theme-topbar-search-border: hsl(210, 8%, 45%);
|
|
3686
|
+
--theme-topbar-search-border-focus: hsl(210, 8%, 70%);
|
|
3687
|
+
--theme-topbar-search-shadow-focus: 0 0 0 4px hsla(0, 0%, 100%, 0.3);
|
|
3688
|
+
--theme-topbar-select-color: hsl(210, 8%, 85%);
|
|
3689
|
+
--theme-topbar-select-background: hsl(210, 8%, 35%);
|
|
3690
|
+
--theme-topbar-item-color: hsl(210, 8%, 97.5%);
|
|
3691
|
+
--theme-topbar-item-color-hover: hsl(0, 0%, 100%);
|
|
3692
|
+
--theme-topbar-item-background-hover: hsl(210, 8%, 25%);
|
|
3693
|
+
--theme-topbar-item-color-current: hsl(0, 0%, 100%);
|
|
3694
|
+
--theme-topbar-item-border-current: var(--theme-primary-color);
|
|
3695
|
+
--theme-topbar-accent-border: none;
|
|
3696
|
+
--scrollbar: hsla(0, 0%, 100%, 0.2);
|
|
3697
|
+
}
|
|
3698
|
+
body.theme-highcontrast .s-topbar__dark {
|
|
3699
|
+
--theme-topbar-item-color: hsl(0, 0%, 100%);
|
|
3700
|
+
--theme-topbar-item-color-hover: hsl(0, 0%, 100%);
|
|
3701
|
+
--theme-topbar-item-background-hover: hsl(210, 8%, 25%);
|
|
3702
|
+
--theme-topbar-item-color-current: hsl(0, 0%, 100%);
|
|
3703
|
+
}
|
|
3704
|
+
body.theme-highcontrast .s-topbar__dark .s-badge {
|
|
3705
|
+
border-color: currentColor;
|
|
3706
|
+
}
|
|
3707
|
+
.s-topbar .s-topbar--content,
|
|
3708
|
+
.s-topbar .s-topbar--ctas {
|
|
3709
|
+
display: flex;
|
|
3710
|
+
height: 100%;
|
|
3711
|
+
list-style: none;
|
|
3712
|
+
margin: 0;
|
|
3713
|
+
padding: 0;
|
|
3714
|
+
}
|
|
3715
|
+
.s-topbar .s-topbar--content > li,
|
|
3716
|
+
.s-topbar .s-topbar--ctas > li {
|
|
3717
|
+
display: inline-flex;
|
|
3718
|
+
}
|
|
3719
|
+
.s-topbar .s-topbar--content {
|
|
3720
|
+
overflow-x: auto;
|
|
3721
|
+
scrollbar-color: var(--scrollbar) transparent;
|
|
3722
|
+
margin-left: auto;
|
|
3723
|
+
}
|
|
3724
|
+
.s-topbar .s-topbar--content::-webkit-scrollbar {
|
|
3725
|
+
width: 10px;
|
|
3726
|
+
height: 10px;
|
|
3727
|
+
background-color: transparent;
|
|
3728
|
+
}
|
|
3729
|
+
.s-topbar .s-topbar--content::-webkit-scrollbar-track {
|
|
3730
|
+
border-radius: 10px;
|
|
3731
|
+
background-color: transparent;
|
|
3732
|
+
}
|
|
3733
|
+
.s-topbar .s-topbar--content::-webkit-scrollbar-thumb {
|
|
3734
|
+
border-radius: 10px;
|
|
3735
|
+
background-color: var(--scrollbar);
|
|
3736
|
+
}
|
|
3737
|
+
.s-topbar .s-topbar--content::-webkit-scrollbar-corner {
|
|
3738
|
+
background-color: transparent;
|
|
3739
|
+
border-color: transparent;
|
|
3740
|
+
}
|
|
3741
|
+
.s-topbar .s-topbar--content .s-topbar--item {
|
|
3742
|
+
color: var(--theme-topbar-item-color);
|
|
3743
|
+
display: inline-flex;
|
|
3744
|
+
align-items: center;
|
|
3745
|
+
padding: 0 10px;
|
|
3746
|
+
text-decoration: none;
|
|
3747
|
+
white-space: nowrap;
|
|
3748
|
+
position: relative;
|
|
3749
|
+
}
|
|
3750
|
+
.s-topbar .s-topbar--content .s-topbar--item:hover,
|
|
3751
|
+
.s-topbar .s-topbar--content .s-topbar--item:focus,
|
|
3752
|
+
.s-topbar .s-topbar--content .s-topbar--item.is-selected,
|
|
3753
|
+
.s-topbar .s-topbar--content .s-topbar--item.is-selected:hover,
|
|
3754
|
+
.s-topbar .s-topbar--content .s-topbar--item.is-selected:focus {
|
|
3755
|
+
color: var(--theme-topbar-item-color-hover);
|
|
3756
|
+
background-color: var(--theme-topbar-item-background-hover);
|
|
3757
|
+
text-decoration: none;
|
|
3758
|
+
outline: none;
|
|
3759
|
+
}
|
|
3760
|
+
.s-topbar .s-topbar--content .s-topbar--item:hover .s-activity-indicator,
|
|
3761
|
+
.s-topbar .s-topbar--content .s-topbar--item:focus .s-activity-indicator,
|
|
3762
|
+
.s-topbar .s-topbar--content .s-topbar--item.is-selected .s-activity-indicator,
|
|
3763
|
+
.s-topbar .s-topbar--content .s-topbar--item.is-selected:hover .s-activity-indicator,
|
|
3764
|
+
.s-topbar .s-topbar--content .s-topbar--item.is-selected:focus .s-activity-indicator {
|
|
3765
|
+
top: calc(50% - 18px);
|
|
3766
|
+
}
|
|
3767
|
+
.s-topbar .s-topbar--content .s-topbar--item .svg-icon {
|
|
3768
|
+
vertical-align: text-top;
|
|
3769
|
+
}
|
|
3770
|
+
.s-topbar .s-topbar--content .s-topbar--item .s-activity-indicator {
|
|
3771
|
+
position: absolute;
|
|
3772
|
+
top: calc(50% - 14px);
|
|
3773
|
+
right: 2px;
|
|
3774
|
+
transition: top cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
|
|
3775
|
+
}
|
|
3776
|
+
.s-topbar .s-topbar--ctas {
|
|
3777
|
+
padding-left: 4px;
|
|
3778
|
+
padding-right: 8px;
|
|
3779
|
+
overflow-x: auto;
|
|
3780
|
+
scrollbar-color: var(--scrollbar) transparent;
|
|
3781
|
+
margin-left: auto;
|
|
3782
|
+
}
|
|
3783
|
+
.s-topbar .s-topbar--ctas::-webkit-scrollbar {
|
|
3784
|
+
width: 10px;
|
|
3785
|
+
height: 10px;
|
|
3786
|
+
background-color: transparent;
|
|
3787
|
+
}
|
|
3788
|
+
.s-topbar .s-topbar--ctas::-webkit-scrollbar-track {
|
|
3789
|
+
border-radius: 10px;
|
|
3790
|
+
background-color: transparent;
|
|
3791
|
+
}
|
|
3792
|
+
.s-topbar .s-topbar--ctas::-webkit-scrollbar-thumb {
|
|
3793
|
+
border-radius: 10px;
|
|
3794
|
+
background-color: var(--scrollbar);
|
|
3795
|
+
}
|
|
3796
|
+
.s-topbar .s-topbar--ctas::-webkit-scrollbar-corner {
|
|
3797
|
+
background-color: transparent;
|
|
3798
|
+
border-color: transparent;
|
|
3799
|
+
}
|
|
3800
|
+
.s-topbar .s-topbar--ctas li + li {
|
|
3801
|
+
margin-left: 4px;
|
|
3802
|
+
}
|
|
3803
|
+
.s-topbar .s-topbar--ctas .s-topbar--item {
|
|
3804
|
+
align-self: center;
|
|
3805
|
+
padding-top: 8px;
|
|
3806
|
+
padding-bottom: 8px;
|
|
3807
|
+
}
|
|
3808
|
+
.s-topbar--notice {
|
|
3809
|
+
text-transform: uppercase;
|
|
3810
|
+
font-size: 11px;
|
|
3811
|
+
font-weight: 700;
|
|
3812
|
+
margin-left: 8px;
|
|
3813
|
+
margin-right: 8px;
|
|
3814
|
+
flex-shrink: 0;
|
|
3815
|
+
border-color: transparent;
|
|
3816
|
+
background-color: transparent;
|
|
3817
|
+
color: var(--theme-topbar-item-color);
|
|
3818
|
+
}
|
|
3819
|
+
.s-topbar--notice:hover,
|
|
3820
|
+
.s-topbar--notice:focus {
|
|
3821
|
+
border-color: var(--theme-topbar-item-background-hover);
|
|
3822
|
+
background-color: var(--theme-topbar-item-background-hover);
|
|
3823
|
+
color: var(--theme-topbar-item-color-hover);
|
|
3287
3824
|
}
|
|
3288
|
-
|
|
3289
|
-
|
|
3825
|
+
.s-topbar--notice.is-unread {
|
|
3826
|
+
border-color: var(--theme-primary-color);
|
|
3827
|
+
background-color: var(--theme-primary-color);
|
|
3828
|
+
color: var(--white);
|
|
3290
3829
|
}
|
|
3291
|
-
.s-
|
|
3292
|
-
|
|
3830
|
+
.s-topbar--notice.is-unread:hover,
|
|
3831
|
+
.s-topbar--notice.is-unread:focus {
|
|
3832
|
+
border-color: var(--theme-primary-600);
|
|
3833
|
+
background-color: var(--theme-primary-600);
|
|
3834
|
+
color: var(--white);
|
|
3293
3835
|
}
|
|
3294
|
-
.s-
|
|
3295
|
-
|
|
3836
|
+
.s-topbar .s-topbar--searchbar {
|
|
3837
|
+
padding: 0 8px;
|
|
3838
|
+
display: flex;
|
|
3839
|
+
align-items: center;
|
|
3840
|
+
flex-shrink: 10000;
|
|
3841
|
+
flex-grow: 1;
|
|
3296
3842
|
}
|
|
3297
|
-
.s-
|
|
3298
|
-
|
|
3843
|
+
.s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group {
|
|
3844
|
+
position: relative;
|
|
3845
|
+
flex-grow: 1;
|
|
3299
3846
|
}
|
|
3300
|
-
.s-
|
|
3301
|
-
|
|
3847
|
+
.s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input {
|
|
3848
|
+
border-color: var(--theme-topbar-search-border);
|
|
3849
|
+
background-color: var(--theme-topbar-search-background);
|
|
3850
|
+
box-shadow: var(--theme-topbar-search-shadow);
|
|
3851
|
+
color: var(--theme-topbar-search-color);
|
|
3852
|
+
display: block;
|
|
3853
|
+
line-height: 1.15384615;
|
|
3302
3854
|
}
|
|
3303
|
-
.s-
|
|
3304
|
-
|
|
3855
|
+
.s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input:focus {
|
|
3856
|
+
border-color: var(--theme-topbar-search-border-focus);
|
|
3857
|
+
box-shadow: var(--theme-topbar-search-shadow-focus);
|
|
3305
3858
|
}
|
|
3306
|
-
.s-
|
|
3307
|
-
|
|
3308
|
-
|
|
3859
|
+
.s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input::placeholder {
|
|
3860
|
+
color: var(--theme-topbar-search-placeholder);
|
|
3861
|
+
font-style: normal;
|
|
3309
3862
|
}
|
|
3310
|
-
.s-
|
|
3311
|
-
|
|
3312
|
-
left: -999em;
|
|
3313
|
-
opacity: 0;
|
|
3314
|
-
margin: 0;
|
|
3863
|
+
.s-topbar .s-topbar--searchbar .s-topbar--searchbar--input-group .s-input-icon {
|
|
3864
|
+
color: var(--theme-topbar-search-placeholder);
|
|
3315
3865
|
}
|
|
3316
|
-
.s-
|
|
3317
|
-
width:
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
color: var(--black-500);
|
|
3322
|
-
font-size: 13px;
|
|
3323
|
-
font-weight: 400;
|
|
3324
|
-
line-height: 1;
|
|
3325
|
-
text-align: center;
|
|
3326
|
-
white-space: nowrap;
|
|
3327
|
-
cursor: pointer;
|
|
3328
|
-
-webkit-touch-callout: none;
|
|
3329
|
-
-webkit-user-select: none;
|
|
3330
|
-
user-select: none;
|
|
3866
|
+
.s-topbar .s-topbar--searchbar .s-select {
|
|
3867
|
+
max-width: 16.2051282rem !important;
|
|
3868
|
+
align-self: stretch;
|
|
3869
|
+
margin-right: -1px;
|
|
3870
|
+
color: var(--theme-topbar-select-color);
|
|
3331
3871
|
}
|
|
3332
|
-
.s-
|
|
3333
|
-
|
|
3334
|
-
|
|
3872
|
+
.s-topbar .s-topbar--searchbar .s-select:before,
|
|
3873
|
+
.s-topbar .s-topbar--searchbar .s-select:after {
|
|
3874
|
+
z-index: 30;
|
|
3335
3875
|
}
|
|
3336
|
-
|
|
3337
|
-
|
|
3876
|
+
.s-topbar .s-topbar--searchbar .s-select > select {
|
|
3877
|
+
border-top-right-radius: 0 !important;
|
|
3878
|
+
border-bottom-right-radius: 0 !important;
|
|
3879
|
+
height: 100%;
|
|
3880
|
+
line-height: 1.15384615;
|
|
3881
|
+
border-color: var(--theme-topbar-search-border);
|
|
3882
|
+
background-color: var(--theme-topbar-select-background);
|
|
3883
|
+
color: var(--theme-topbar-select-color);
|
|
3338
3884
|
}
|
|
3339
|
-
.s-
|
|
3340
|
-
|
|
3341
|
-
|
|
3885
|
+
.s-topbar .s-topbar--searchbar .s-select > select:focus {
|
|
3886
|
+
border-color: var(--theme-topbar-search-border-focus);
|
|
3887
|
+
box-shadow: var(--theme-topbar-search-shadow-focus);
|
|
3888
|
+
z-index: 25;
|
|
3342
3889
|
}
|
|
3343
|
-
|
|
3344
|
-
|
|
3890
|
+
.s-topbar .s-topbar--searchbar .s-select + .s-topbar--searchbar--input-group > .s-input {
|
|
3891
|
+
border-top-left-radius: 0 !important;
|
|
3892
|
+
border-bottom-left-radius: 0 !important;
|
|
3893
|
+
}
|
|
3894
|
+
@media (max-width: 640px) {
|
|
3895
|
+
.s-topbar .s-topbar--searchbar {
|
|
3896
|
+
display: none;
|
|
3897
|
+
position: absolute;
|
|
3898
|
+
left: 0;
|
|
3899
|
+
right: 0;
|
|
3900
|
+
top: 100%;
|
|
3901
|
+
max-width: 100%;
|
|
3902
|
+
padding: 8px 12px;
|
|
3903
|
+
background: var(--theme-topbar-item-background-hover);
|
|
3904
|
+
}
|
|
3905
|
+
.s-topbar .s-topbar--searchbar.s-topbar--searchbar__open {
|
|
3906
|
+
display: flex;
|
|
3907
|
+
max-width: none;
|
|
3908
|
+
}
|
|
3909
|
+
.s-topbar .s-topbar--searchbar .s-select {
|
|
3910
|
+
width: 25% !important;
|
|
3911
|
+
}
|
|
3345
3912
|
}
|
|
3346
3913
|
.s-uploader {
|
|
3347
3914
|
align-items: center;
|
|
@@ -3927,6 +4494,28 @@ body:not(.theme-dark) .theme-dark__forced .themed {
|
|
|
3927
4494
|
--theme-button-filled-selected-border-color: var(--theme-secondary-500);
|
|
3928
4495
|
--theme-button-outlined-border-color: var(--theme-secondary-300);
|
|
3929
4496
|
--theme-button-outlined-selected-border-color: var(--theme-secondary-400);
|
|
4497
|
+
--theme-tag-color: var(--theme-secondary-800);
|
|
4498
|
+
--theme-tag-background-color: var(--theme-secondary-075);
|
|
4499
|
+
--theme-tag-border-color: transparent;
|
|
4500
|
+
--theme-tag-hover-color: var(--theme-secondary-900);
|
|
4501
|
+
--theme-tag-hover-background-color: var(--theme-secondary-100);
|
|
4502
|
+
--theme-tag-hover-border-color: transparent;
|
|
4503
|
+
--theme-topbar-height: 48px;
|
|
4504
|
+
--theme-topbar-background-color: var(--black-025);
|
|
4505
|
+
--theme-topbar-search-color: var(--black-700);
|
|
4506
|
+
--theme-topbar-search-background: var(--white);
|
|
4507
|
+
--theme-topbar-search-placeholder: var(--black-200);
|
|
4508
|
+
--theme-topbar-search-border: var(--black-200);
|
|
4509
|
+
--theme-topbar-search-border-focus: var(--blue-300);
|
|
4510
|
+
--theme-topbar-search-shadow-focus: 0 0 0 4px var(--focus-ring);
|
|
4511
|
+
--theme-topbar-select-color: var(--black-700);
|
|
4512
|
+
--theme-topbar-select-background: var(--black-075);
|
|
4513
|
+
--theme-topbar-item-color: var(--black-600);
|
|
4514
|
+
--theme-topbar-item-color-hover: var(--black-800);
|
|
4515
|
+
--theme-topbar-item-background-hover: var(--black-075);
|
|
4516
|
+
--theme-topbar-item-color-current: var(--black);
|
|
4517
|
+
--theme-topbar-item-border-current: var(--theme-primary-color);
|
|
4518
|
+
--theme-topbar-accent-border: 3px solid var(--theme-primary-color);
|
|
3930
4519
|
}
|
|
3931
4520
|
.highcontrast-themed-colors,
|
|
3932
4521
|
body.theme-highcontrast:not(.theme-dark),
|
|
@@ -8804,11 +9393,8 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
8804
9393
|
.fc-inherit {
|
|
8805
9394
|
color: inherit !important;
|
|
8806
9395
|
}
|
|
8807
|
-
.flex__fl0,
|
|
8808
9396
|
.flex__fl-shrink0,
|
|
8809
|
-
.flex__fl0 > .d-flex,
|
|
8810
9397
|
.flex__fl-shrink0 > .d-flex,
|
|
8811
|
-
.flex__fl0 > .flex--item,
|
|
8812
9398
|
.flex__fl-shrink0 > .flex--item {
|
|
8813
9399
|
flex: 0 auto;
|
|
8814
9400
|
}
|
|
@@ -8817,11 +9403,8 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
8817
9403
|
.flex__fl-equal > .flex--item {
|
|
8818
9404
|
flex: 1 1 0%;
|
|
8819
9405
|
}
|
|
8820
|
-
.flex__fl1,
|
|
8821
9406
|
.flex__fl-grow1,
|
|
8822
|
-
.flex__fl1 > .d-flex,
|
|
8823
9407
|
.flex__fl-grow1 > .d-flex,
|
|
8824
|
-
.flex__fl1 > .flex--item,
|
|
8825
9408
|
.flex__fl-grow1 > .flex--item {
|
|
8826
9409
|
flex: 1 auto;
|
|
8827
9410
|
}
|
|
@@ -8861,75 +9444,51 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
8861
9444
|
.flex--item12 {
|
|
8862
9445
|
flex-basis: 100%;
|
|
8863
9446
|
}
|
|
8864
|
-
.flex__allcells1 > .d-flex,
|
|
8865
9447
|
.flex__allitems1 > .d-flex,
|
|
8866
|
-
.flex__allcells1 > .flex--item,
|
|
8867
9448
|
.flex__allitems1 > .flex--item {
|
|
8868
9449
|
flex-basis: 8.33333333%;
|
|
8869
9450
|
}
|
|
8870
|
-
.flex__allcells2 > .d-flex,
|
|
8871
9451
|
.flex__allitems2 > .d-flex,
|
|
8872
|
-
.flex__allcells2 > .flex--item,
|
|
8873
9452
|
.flex__allitems2 > .flex--item {
|
|
8874
9453
|
flex-basis: 16.66666667%;
|
|
8875
9454
|
}
|
|
8876
|
-
.flex__allcells3 > .d-flex,
|
|
8877
9455
|
.flex__allitems3 > .d-flex,
|
|
8878
|
-
.flex__allcells3 > .flex--item,
|
|
8879
9456
|
.flex__allitems3 > .flex--item {
|
|
8880
9457
|
flex-basis: 25%;
|
|
8881
9458
|
}
|
|
8882
|
-
.flex__allcells4 > .d-flex,
|
|
8883
9459
|
.flex__allitems4 > .d-flex,
|
|
8884
|
-
.flex__allcells4 > .flex--item,
|
|
8885
9460
|
.flex__allitems4 > .flex--item {
|
|
8886
9461
|
flex-basis: 33.33333333%;
|
|
8887
9462
|
}
|
|
8888
|
-
.flex__allcells5 > .d-flex,
|
|
8889
9463
|
.flex__allitems5 > .d-flex,
|
|
8890
|
-
.flex__allcells5 > .flex--item,
|
|
8891
9464
|
.flex__allitems5 > .flex--item {
|
|
8892
9465
|
flex-basis: 41.66666667%;
|
|
8893
9466
|
}
|
|
8894
|
-
.flex__allcells6 > .d-flex,
|
|
8895
9467
|
.flex__allitems6 > .d-flex,
|
|
8896
|
-
.flex__allcells6 > .flex--item,
|
|
8897
9468
|
.flex__allitems6 > .flex--item {
|
|
8898
9469
|
flex-basis: 50%;
|
|
8899
9470
|
}
|
|
8900
|
-
.flex__allcells7 > .d-flex,
|
|
8901
9471
|
.flex__allitems7 > .d-flex,
|
|
8902
|
-
.flex__allcells7 > .flex--item,
|
|
8903
9472
|
.flex__allitems7 > .flex--item {
|
|
8904
9473
|
flex-basis: 58.33333333%;
|
|
8905
9474
|
}
|
|
8906
|
-
.flex__allcells8 > .d-flex,
|
|
8907
9475
|
.flex__allitems8 > .d-flex,
|
|
8908
|
-
.flex__allcells8 > .flex--item,
|
|
8909
9476
|
.flex__allitems8 > .flex--item {
|
|
8910
9477
|
flex-basis: 66.66666667%;
|
|
8911
9478
|
}
|
|
8912
|
-
.flex__allcells9 > .d-flex,
|
|
8913
9479
|
.flex__allitems9 > .d-flex,
|
|
8914
|
-
.flex__allcells9 > .flex--item,
|
|
8915
9480
|
.flex__allitems9 > .flex--item {
|
|
8916
9481
|
flex-basis: 75%;
|
|
8917
9482
|
}
|
|
8918
|
-
.flex__allcells10 > .d-flex,
|
|
8919
9483
|
.flex__allitems10 > .d-flex,
|
|
8920
|
-
.flex__allcells10 > .flex--item,
|
|
8921
9484
|
.flex__allitems10 > .flex--item {
|
|
8922
9485
|
flex-basis: 83.33333333%;
|
|
8923
9486
|
}
|
|
8924
|
-
.flex__allcells11 > .d-flex,
|
|
8925
9487
|
.flex__allitems11 > .d-flex,
|
|
8926
|
-
.flex__allcells11 > .flex--item,
|
|
8927
9488
|
.flex__allitems11 > .flex--item {
|
|
8928
9489
|
flex-basis: 91.66666667%;
|
|
8929
9490
|
}
|
|
8930
|
-
.flex__allcells12 > .d-flex,
|
|
8931
9491
|
.flex__allitems12 > .d-flex,
|
|
8932
|
-
.flex__allcells12 > .flex--item,
|
|
8933
9492
|
.flex__allitems12 > .flex--item {
|
|
8934
9493
|
flex-basis: 100%;
|
|
8935
9494
|
}
|
|
@@ -8944,9 +9503,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
8944
9503
|
margin: 1px;
|
|
8945
9504
|
}
|
|
8946
9505
|
.gs2 > .flex--item1,
|
|
8947
|
-
.gs2.flex__allcells1 > .d-flex,
|
|
8948
9506
|
.gs2.flex__allitems1 > .d-flex,
|
|
8949
|
-
.gs2.flex__allcells1 > .flex--item,
|
|
8950
9507
|
.gs2.flex__allitems1 > .flex--item {
|
|
8951
9508
|
flex-basis: calc(8.333333333333334% - 2px);
|
|
8952
9509
|
}
|
|
@@ -8954,9 +9511,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
8954
9511
|
margin: 1px;
|
|
8955
9512
|
}
|
|
8956
9513
|
.gs2 > .flex--item2,
|
|
8957
|
-
.gs2.flex__allcells2 > .d-flex,
|
|
8958
9514
|
.gs2.flex__allitems2 > .d-flex,
|
|
8959
|
-
.gs2.flex__allcells2 > .flex--item,
|
|
8960
9515
|
.gs2.flex__allitems2 > .flex--item {
|
|
8961
9516
|
flex-basis: calc(16.666666666666668% - 2px);
|
|
8962
9517
|
}
|
|
@@ -8964,9 +9519,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
8964
9519
|
margin: 1px;
|
|
8965
9520
|
}
|
|
8966
9521
|
.gs2 > .flex--item3,
|
|
8967
|
-
.gs2.flex__allcells3 > .d-flex,
|
|
8968
9522
|
.gs2.flex__allitems3 > .d-flex,
|
|
8969
|
-
.gs2.flex__allcells3 > .flex--item,
|
|
8970
9523
|
.gs2.flex__allitems3 > .flex--item {
|
|
8971
9524
|
flex-basis: calc(25% - 2px);
|
|
8972
9525
|
}
|
|
@@ -8974,9 +9527,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
8974
9527
|
margin: 1px;
|
|
8975
9528
|
}
|
|
8976
9529
|
.gs2 > .flex--item4,
|
|
8977
|
-
.gs2.flex__allcells4 > .d-flex,
|
|
8978
9530
|
.gs2.flex__allitems4 > .d-flex,
|
|
8979
|
-
.gs2.flex__allcells4 > .flex--item,
|
|
8980
9531
|
.gs2.flex__allitems4 > .flex--item {
|
|
8981
9532
|
flex-basis: calc(33.333333333333336% - 2px);
|
|
8982
9533
|
}
|
|
@@ -8984,9 +9535,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
8984
9535
|
margin: 1px;
|
|
8985
9536
|
}
|
|
8986
9537
|
.gs2 > .flex--item5,
|
|
8987
|
-
.gs2.flex__allcells5 > .d-flex,
|
|
8988
9538
|
.gs2.flex__allitems5 > .d-flex,
|
|
8989
|
-
.gs2.flex__allcells5 > .flex--item,
|
|
8990
9539
|
.gs2.flex__allitems5 > .flex--item {
|
|
8991
9540
|
flex-basis: calc(41.666666666666664% - 2px);
|
|
8992
9541
|
}
|
|
@@ -8994,9 +9543,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
8994
9543
|
margin: 1px;
|
|
8995
9544
|
}
|
|
8996
9545
|
.gs2 > .flex--item6,
|
|
8997
|
-
.gs2.flex__allcells6 > .d-flex,
|
|
8998
9546
|
.gs2.flex__allitems6 > .d-flex,
|
|
8999
|
-
.gs2.flex__allcells6 > .flex--item,
|
|
9000
9547
|
.gs2.flex__allitems6 > .flex--item {
|
|
9001
9548
|
flex-basis: calc(50% - 2px);
|
|
9002
9549
|
}
|
|
@@ -9004,9 +9551,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9004
9551
|
margin: 1px;
|
|
9005
9552
|
}
|
|
9006
9553
|
.gs2 > .flex--item7,
|
|
9007
|
-
.gs2.flex__allcells7 > .d-flex,
|
|
9008
9554
|
.gs2.flex__allitems7 > .d-flex,
|
|
9009
|
-
.gs2.flex__allcells7 > .flex--item,
|
|
9010
9555
|
.gs2.flex__allitems7 > .flex--item {
|
|
9011
9556
|
flex-basis: calc(58.333333333333336% - 2px);
|
|
9012
9557
|
}
|
|
@@ -9014,9 +9559,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9014
9559
|
margin: 1px;
|
|
9015
9560
|
}
|
|
9016
9561
|
.gs2 > .flex--item8,
|
|
9017
|
-
.gs2.flex__allcells8 > .d-flex,
|
|
9018
9562
|
.gs2.flex__allitems8 > .d-flex,
|
|
9019
|
-
.gs2.flex__allcells8 > .flex--item,
|
|
9020
9563
|
.gs2.flex__allitems8 > .flex--item {
|
|
9021
9564
|
flex-basis: calc(66.66666666666667% - 2px);
|
|
9022
9565
|
}
|
|
@@ -9024,9 +9567,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9024
9567
|
margin: 1px;
|
|
9025
9568
|
}
|
|
9026
9569
|
.gs2 > .flex--item9,
|
|
9027
|
-
.gs2.flex__allcells9 > .d-flex,
|
|
9028
9570
|
.gs2.flex__allitems9 > .d-flex,
|
|
9029
|
-
.gs2.flex__allcells9 > .flex--item,
|
|
9030
9571
|
.gs2.flex__allitems9 > .flex--item {
|
|
9031
9572
|
flex-basis: calc(75% - 2px);
|
|
9032
9573
|
}
|
|
@@ -9034,9 +9575,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9034
9575
|
margin: 1px;
|
|
9035
9576
|
}
|
|
9036
9577
|
.gs2 > .flex--item10,
|
|
9037
|
-
.gs2.flex__allcells10 > .d-flex,
|
|
9038
9578
|
.gs2.flex__allitems10 > .d-flex,
|
|
9039
|
-
.gs2.flex__allcells10 > .flex--item,
|
|
9040
9579
|
.gs2.flex__allitems10 > .flex--item {
|
|
9041
9580
|
flex-basis: calc(83.33333333333333% - 2px);
|
|
9042
9581
|
}
|
|
@@ -9044,9 +9583,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9044
9583
|
margin: 1px;
|
|
9045
9584
|
}
|
|
9046
9585
|
.gs2 > .flex--item11,
|
|
9047
|
-
.gs2.flex__allcells11 > .d-flex,
|
|
9048
9586
|
.gs2.flex__allitems11 > .d-flex,
|
|
9049
|
-
.gs2.flex__allcells11 > .flex--item,
|
|
9050
9587
|
.gs2.flex__allitems11 > .flex--item {
|
|
9051
9588
|
flex-basis: calc(91.66666666666667% - 2px);
|
|
9052
9589
|
}
|
|
@@ -9054,9 +9591,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9054
9591
|
margin: 1px;
|
|
9055
9592
|
}
|
|
9056
9593
|
.gs2 > .flex--item12,
|
|
9057
|
-
.gs2.flex__allcells12 > .d-flex,
|
|
9058
9594
|
.gs2.flex__allitems12 > .d-flex,
|
|
9059
|
-
.gs2.flex__allcells12 > .flex--item,
|
|
9060
9595
|
.gs2.flex__allitems12 > .flex--item {
|
|
9061
9596
|
flex-basis: calc(100% - 2px);
|
|
9062
9597
|
}
|
|
@@ -9071,9 +9606,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9071
9606
|
margin: 2px;
|
|
9072
9607
|
}
|
|
9073
9608
|
.gs4 > .flex--item1,
|
|
9074
|
-
.gs4.flex__allcells1 > .d-flex,
|
|
9075
9609
|
.gs4.flex__allitems1 > .d-flex,
|
|
9076
|
-
.gs4.flex__allcells1 > .flex--item,
|
|
9077
9610
|
.gs4.flex__allitems1 > .flex--item {
|
|
9078
9611
|
flex-basis: calc(8.333333333333334% - 4px);
|
|
9079
9612
|
}
|
|
@@ -9081,9 +9614,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9081
9614
|
margin: 2px;
|
|
9082
9615
|
}
|
|
9083
9616
|
.gs4 > .flex--item2,
|
|
9084
|
-
.gs4.flex__allcells2 > .d-flex,
|
|
9085
9617
|
.gs4.flex__allitems2 > .d-flex,
|
|
9086
|
-
.gs4.flex__allcells2 > .flex--item,
|
|
9087
9618
|
.gs4.flex__allitems2 > .flex--item {
|
|
9088
9619
|
flex-basis: calc(16.666666666666668% - 4px);
|
|
9089
9620
|
}
|
|
@@ -9091,9 +9622,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9091
9622
|
margin: 2px;
|
|
9092
9623
|
}
|
|
9093
9624
|
.gs4 > .flex--item3,
|
|
9094
|
-
.gs4.flex__allcells3 > .d-flex,
|
|
9095
9625
|
.gs4.flex__allitems3 > .d-flex,
|
|
9096
|
-
.gs4.flex__allcells3 > .flex--item,
|
|
9097
9626
|
.gs4.flex__allitems3 > .flex--item {
|
|
9098
9627
|
flex-basis: calc(25% - 4px);
|
|
9099
9628
|
}
|
|
@@ -9101,9 +9630,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9101
9630
|
margin: 2px;
|
|
9102
9631
|
}
|
|
9103
9632
|
.gs4 > .flex--item4,
|
|
9104
|
-
.gs4.flex__allcells4 > .d-flex,
|
|
9105
9633
|
.gs4.flex__allitems4 > .d-flex,
|
|
9106
|
-
.gs4.flex__allcells4 > .flex--item,
|
|
9107
9634
|
.gs4.flex__allitems4 > .flex--item {
|
|
9108
9635
|
flex-basis: calc(33.333333333333336% - 4px);
|
|
9109
9636
|
}
|
|
@@ -9111,9 +9638,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9111
9638
|
margin: 2px;
|
|
9112
9639
|
}
|
|
9113
9640
|
.gs4 > .flex--item5,
|
|
9114
|
-
.gs4.flex__allcells5 > .d-flex,
|
|
9115
9641
|
.gs4.flex__allitems5 > .d-flex,
|
|
9116
|
-
.gs4.flex__allcells5 > .flex--item,
|
|
9117
9642
|
.gs4.flex__allitems5 > .flex--item {
|
|
9118
9643
|
flex-basis: calc(41.666666666666664% - 4px);
|
|
9119
9644
|
}
|
|
@@ -9121,9 +9646,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9121
9646
|
margin: 2px;
|
|
9122
9647
|
}
|
|
9123
9648
|
.gs4 > .flex--item6,
|
|
9124
|
-
.gs4.flex__allcells6 > .d-flex,
|
|
9125
9649
|
.gs4.flex__allitems6 > .d-flex,
|
|
9126
|
-
.gs4.flex__allcells6 > .flex--item,
|
|
9127
9650
|
.gs4.flex__allitems6 > .flex--item {
|
|
9128
9651
|
flex-basis: calc(50% - 4px);
|
|
9129
9652
|
}
|
|
@@ -9131,9 +9654,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9131
9654
|
margin: 2px;
|
|
9132
9655
|
}
|
|
9133
9656
|
.gs4 > .flex--item7,
|
|
9134
|
-
.gs4.flex__allcells7 > .d-flex,
|
|
9135
9657
|
.gs4.flex__allitems7 > .d-flex,
|
|
9136
|
-
.gs4.flex__allcells7 > .flex--item,
|
|
9137
9658
|
.gs4.flex__allitems7 > .flex--item {
|
|
9138
9659
|
flex-basis: calc(58.333333333333336% - 4px);
|
|
9139
9660
|
}
|
|
@@ -9141,9 +9662,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9141
9662
|
margin: 2px;
|
|
9142
9663
|
}
|
|
9143
9664
|
.gs4 > .flex--item8,
|
|
9144
|
-
.gs4.flex__allcells8 > .d-flex,
|
|
9145
9665
|
.gs4.flex__allitems8 > .d-flex,
|
|
9146
|
-
.gs4.flex__allcells8 > .flex--item,
|
|
9147
9666
|
.gs4.flex__allitems8 > .flex--item {
|
|
9148
9667
|
flex-basis: calc(66.66666666666667% - 4px);
|
|
9149
9668
|
}
|
|
@@ -9151,9 +9670,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9151
9670
|
margin: 2px;
|
|
9152
9671
|
}
|
|
9153
9672
|
.gs4 > .flex--item9,
|
|
9154
|
-
.gs4.flex__allcells9 > .d-flex,
|
|
9155
9673
|
.gs4.flex__allitems9 > .d-flex,
|
|
9156
|
-
.gs4.flex__allcells9 > .flex--item,
|
|
9157
9674
|
.gs4.flex__allitems9 > .flex--item {
|
|
9158
9675
|
flex-basis: calc(75% - 4px);
|
|
9159
9676
|
}
|
|
@@ -9161,9 +9678,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9161
9678
|
margin: 2px;
|
|
9162
9679
|
}
|
|
9163
9680
|
.gs4 > .flex--item10,
|
|
9164
|
-
.gs4.flex__allcells10 > .d-flex,
|
|
9165
9681
|
.gs4.flex__allitems10 > .d-flex,
|
|
9166
|
-
.gs4.flex__allcells10 > .flex--item,
|
|
9167
9682
|
.gs4.flex__allitems10 > .flex--item {
|
|
9168
9683
|
flex-basis: calc(83.33333333333333% - 4px);
|
|
9169
9684
|
}
|
|
@@ -9171,9 +9686,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9171
9686
|
margin: 2px;
|
|
9172
9687
|
}
|
|
9173
9688
|
.gs4 > .flex--item11,
|
|
9174
|
-
.gs4.flex__allcells11 > .d-flex,
|
|
9175
9689
|
.gs4.flex__allitems11 > .d-flex,
|
|
9176
|
-
.gs4.flex__allcells11 > .flex--item,
|
|
9177
9690
|
.gs4.flex__allitems11 > .flex--item {
|
|
9178
9691
|
flex-basis: calc(91.66666666666667% - 4px);
|
|
9179
9692
|
}
|
|
@@ -9181,9 +9694,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9181
9694
|
margin: 2px;
|
|
9182
9695
|
}
|
|
9183
9696
|
.gs4 > .flex--item12,
|
|
9184
|
-
.gs4.flex__allcells12 > .d-flex,
|
|
9185
9697
|
.gs4.flex__allitems12 > .d-flex,
|
|
9186
|
-
.gs4.flex__allcells12 > .flex--item,
|
|
9187
9698
|
.gs4.flex__allitems12 > .flex--item {
|
|
9188
9699
|
flex-basis: calc(100% - 4px);
|
|
9189
9700
|
}
|
|
@@ -9198,9 +9709,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9198
9709
|
margin: 3px;
|
|
9199
9710
|
}
|
|
9200
9711
|
.gs6 > .flex--item1,
|
|
9201
|
-
.gs6.flex__allcells1 > .d-flex,
|
|
9202
9712
|
.gs6.flex__allitems1 > .d-flex,
|
|
9203
|
-
.gs6.flex__allcells1 > .flex--item,
|
|
9204
9713
|
.gs6.flex__allitems1 > .flex--item {
|
|
9205
9714
|
flex-basis: calc(8.333333333333334% - 6px);
|
|
9206
9715
|
}
|
|
@@ -9208,9 +9717,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9208
9717
|
margin: 3px;
|
|
9209
9718
|
}
|
|
9210
9719
|
.gs6 > .flex--item2,
|
|
9211
|
-
.gs6.flex__allcells2 > .d-flex,
|
|
9212
9720
|
.gs6.flex__allitems2 > .d-flex,
|
|
9213
|
-
.gs6.flex__allcells2 > .flex--item,
|
|
9214
9721
|
.gs6.flex__allitems2 > .flex--item {
|
|
9215
9722
|
flex-basis: calc(16.666666666666668% - 6px);
|
|
9216
9723
|
}
|
|
@@ -9218,9 +9725,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9218
9725
|
margin: 3px;
|
|
9219
9726
|
}
|
|
9220
9727
|
.gs6 > .flex--item3,
|
|
9221
|
-
.gs6.flex__allcells3 > .d-flex,
|
|
9222
9728
|
.gs6.flex__allitems3 > .d-flex,
|
|
9223
|
-
.gs6.flex__allcells3 > .flex--item,
|
|
9224
9729
|
.gs6.flex__allitems3 > .flex--item {
|
|
9225
9730
|
flex-basis: calc(25% - 6px);
|
|
9226
9731
|
}
|
|
@@ -9228,9 +9733,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9228
9733
|
margin: 3px;
|
|
9229
9734
|
}
|
|
9230
9735
|
.gs6 > .flex--item4,
|
|
9231
|
-
.gs6.flex__allcells4 > .d-flex,
|
|
9232
9736
|
.gs6.flex__allitems4 > .d-flex,
|
|
9233
|
-
.gs6.flex__allcells4 > .flex--item,
|
|
9234
9737
|
.gs6.flex__allitems4 > .flex--item {
|
|
9235
9738
|
flex-basis: calc(33.333333333333336% - 6px);
|
|
9236
9739
|
}
|
|
@@ -9238,9 +9741,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9238
9741
|
margin: 3px;
|
|
9239
9742
|
}
|
|
9240
9743
|
.gs6 > .flex--item5,
|
|
9241
|
-
.gs6.flex__allcells5 > .d-flex,
|
|
9242
9744
|
.gs6.flex__allitems5 > .d-flex,
|
|
9243
|
-
.gs6.flex__allcells5 > .flex--item,
|
|
9244
9745
|
.gs6.flex__allitems5 > .flex--item {
|
|
9245
9746
|
flex-basis: calc(41.666666666666664% - 6px);
|
|
9246
9747
|
}
|
|
@@ -9248,9 +9749,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9248
9749
|
margin: 3px;
|
|
9249
9750
|
}
|
|
9250
9751
|
.gs6 > .flex--item6,
|
|
9251
|
-
.gs6.flex__allcells6 > .d-flex,
|
|
9252
9752
|
.gs6.flex__allitems6 > .d-flex,
|
|
9253
|
-
.gs6.flex__allcells6 > .flex--item,
|
|
9254
9753
|
.gs6.flex__allitems6 > .flex--item {
|
|
9255
9754
|
flex-basis: calc(50% - 6px);
|
|
9256
9755
|
}
|
|
@@ -9258,9 +9757,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9258
9757
|
margin: 3px;
|
|
9259
9758
|
}
|
|
9260
9759
|
.gs6 > .flex--item7,
|
|
9261
|
-
.gs6.flex__allcells7 > .d-flex,
|
|
9262
9760
|
.gs6.flex__allitems7 > .d-flex,
|
|
9263
|
-
.gs6.flex__allcells7 > .flex--item,
|
|
9264
9761
|
.gs6.flex__allitems7 > .flex--item {
|
|
9265
9762
|
flex-basis: calc(58.333333333333336% - 6px);
|
|
9266
9763
|
}
|
|
@@ -9268,9 +9765,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9268
9765
|
margin: 3px;
|
|
9269
9766
|
}
|
|
9270
9767
|
.gs6 > .flex--item8,
|
|
9271
|
-
.gs6.flex__allcells8 > .d-flex,
|
|
9272
9768
|
.gs6.flex__allitems8 > .d-flex,
|
|
9273
|
-
.gs6.flex__allcells8 > .flex--item,
|
|
9274
9769
|
.gs6.flex__allitems8 > .flex--item {
|
|
9275
9770
|
flex-basis: calc(66.66666666666667% - 6px);
|
|
9276
9771
|
}
|
|
@@ -9278,9 +9773,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9278
9773
|
margin: 3px;
|
|
9279
9774
|
}
|
|
9280
9775
|
.gs6 > .flex--item9,
|
|
9281
|
-
.gs6.flex__allcells9 > .d-flex,
|
|
9282
9776
|
.gs6.flex__allitems9 > .d-flex,
|
|
9283
|
-
.gs6.flex__allcells9 > .flex--item,
|
|
9284
9777
|
.gs6.flex__allitems9 > .flex--item {
|
|
9285
9778
|
flex-basis: calc(75% - 6px);
|
|
9286
9779
|
}
|
|
@@ -9288,9 +9781,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9288
9781
|
margin: 3px;
|
|
9289
9782
|
}
|
|
9290
9783
|
.gs6 > .flex--item10,
|
|
9291
|
-
.gs6.flex__allcells10 > .d-flex,
|
|
9292
9784
|
.gs6.flex__allitems10 > .d-flex,
|
|
9293
|
-
.gs6.flex__allcells10 > .flex--item,
|
|
9294
9785
|
.gs6.flex__allitems10 > .flex--item {
|
|
9295
9786
|
flex-basis: calc(83.33333333333333% - 6px);
|
|
9296
9787
|
}
|
|
@@ -9298,9 +9789,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9298
9789
|
margin: 3px;
|
|
9299
9790
|
}
|
|
9300
9791
|
.gs6 > .flex--item11,
|
|
9301
|
-
.gs6.flex__allcells11 > .d-flex,
|
|
9302
9792
|
.gs6.flex__allitems11 > .d-flex,
|
|
9303
|
-
.gs6.flex__allcells11 > .flex--item,
|
|
9304
9793
|
.gs6.flex__allitems11 > .flex--item {
|
|
9305
9794
|
flex-basis: calc(91.66666666666667% - 6px);
|
|
9306
9795
|
}
|
|
@@ -9308,9 +9797,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9308
9797
|
margin: 3px;
|
|
9309
9798
|
}
|
|
9310
9799
|
.gs6 > .flex--item12,
|
|
9311
|
-
.gs6.flex__allcells12 > .d-flex,
|
|
9312
9800
|
.gs6.flex__allitems12 > .d-flex,
|
|
9313
|
-
.gs6.flex__allcells12 > .flex--item,
|
|
9314
9801
|
.gs6.flex__allitems12 > .flex--item {
|
|
9315
9802
|
flex-basis: calc(100% - 6px);
|
|
9316
9803
|
}
|
|
@@ -9325,9 +9812,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9325
9812
|
margin: 4px;
|
|
9326
9813
|
}
|
|
9327
9814
|
.gs8 > .flex--item1,
|
|
9328
|
-
.gs8.flex__allcells1 > .d-flex,
|
|
9329
9815
|
.gs8.flex__allitems1 > .d-flex,
|
|
9330
|
-
.gs8.flex__allcells1 > .flex--item,
|
|
9331
9816
|
.gs8.flex__allitems1 > .flex--item {
|
|
9332
9817
|
flex-basis: calc(8.333333333333334% - 8px);
|
|
9333
9818
|
}
|
|
@@ -9335,9 +9820,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9335
9820
|
margin: 4px;
|
|
9336
9821
|
}
|
|
9337
9822
|
.gs8 > .flex--item2,
|
|
9338
|
-
.gs8.flex__allcells2 > .d-flex,
|
|
9339
9823
|
.gs8.flex__allitems2 > .d-flex,
|
|
9340
|
-
.gs8.flex__allcells2 > .flex--item,
|
|
9341
9824
|
.gs8.flex__allitems2 > .flex--item {
|
|
9342
9825
|
flex-basis: calc(16.666666666666668% - 8px);
|
|
9343
9826
|
}
|
|
@@ -9345,9 +9828,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9345
9828
|
margin: 4px;
|
|
9346
9829
|
}
|
|
9347
9830
|
.gs8 > .flex--item3,
|
|
9348
|
-
.gs8.flex__allcells3 > .d-flex,
|
|
9349
9831
|
.gs8.flex__allitems3 > .d-flex,
|
|
9350
|
-
.gs8.flex__allcells3 > .flex--item,
|
|
9351
9832
|
.gs8.flex__allitems3 > .flex--item {
|
|
9352
9833
|
flex-basis: calc(25% - 8px);
|
|
9353
9834
|
}
|
|
@@ -9355,9 +9836,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9355
9836
|
margin: 4px;
|
|
9356
9837
|
}
|
|
9357
9838
|
.gs8 > .flex--item4,
|
|
9358
|
-
.gs8.flex__allcells4 > .d-flex,
|
|
9359
9839
|
.gs8.flex__allitems4 > .d-flex,
|
|
9360
|
-
.gs8.flex__allcells4 > .flex--item,
|
|
9361
9840
|
.gs8.flex__allitems4 > .flex--item {
|
|
9362
9841
|
flex-basis: calc(33.333333333333336% - 8px);
|
|
9363
9842
|
}
|
|
@@ -9365,9 +9844,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9365
9844
|
margin: 4px;
|
|
9366
9845
|
}
|
|
9367
9846
|
.gs8 > .flex--item5,
|
|
9368
|
-
.gs8.flex__allcells5 > .d-flex,
|
|
9369
9847
|
.gs8.flex__allitems5 > .d-flex,
|
|
9370
|
-
.gs8.flex__allcells5 > .flex--item,
|
|
9371
9848
|
.gs8.flex__allitems5 > .flex--item {
|
|
9372
9849
|
flex-basis: calc(41.666666666666664% - 8px);
|
|
9373
9850
|
}
|
|
@@ -9375,9 +9852,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9375
9852
|
margin: 4px;
|
|
9376
9853
|
}
|
|
9377
9854
|
.gs8 > .flex--item6,
|
|
9378
|
-
.gs8.flex__allcells6 > .d-flex,
|
|
9379
9855
|
.gs8.flex__allitems6 > .d-flex,
|
|
9380
|
-
.gs8.flex__allcells6 > .flex--item,
|
|
9381
9856
|
.gs8.flex__allitems6 > .flex--item {
|
|
9382
9857
|
flex-basis: calc(50% - 8px);
|
|
9383
9858
|
}
|
|
@@ -9385,9 +9860,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9385
9860
|
margin: 4px;
|
|
9386
9861
|
}
|
|
9387
9862
|
.gs8 > .flex--item7,
|
|
9388
|
-
.gs8.flex__allcells7 > .d-flex,
|
|
9389
9863
|
.gs8.flex__allitems7 > .d-flex,
|
|
9390
|
-
.gs8.flex__allcells7 > .flex--item,
|
|
9391
9864
|
.gs8.flex__allitems7 > .flex--item {
|
|
9392
9865
|
flex-basis: calc(58.333333333333336% - 8px);
|
|
9393
9866
|
}
|
|
@@ -9395,9 +9868,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9395
9868
|
margin: 4px;
|
|
9396
9869
|
}
|
|
9397
9870
|
.gs8 > .flex--item8,
|
|
9398
|
-
.gs8.flex__allcells8 > .d-flex,
|
|
9399
9871
|
.gs8.flex__allitems8 > .d-flex,
|
|
9400
|
-
.gs8.flex__allcells8 > .flex--item,
|
|
9401
9872
|
.gs8.flex__allitems8 > .flex--item {
|
|
9402
9873
|
flex-basis: calc(66.66666666666667% - 8px);
|
|
9403
9874
|
}
|
|
@@ -9405,9 +9876,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9405
9876
|
margin: 4px;
|
|
9406
9877
|
}
|
|
9407
9878
|
.gs8 > .flex--item9,
|
|
9408
|
-
.gs8.flex__allcells9 > .d-flex,
|
|
9409
9879
|
.gs8.flex__allitems9 > .d-flex,
|
|
9410
|
-
.gs8.flex__allcells9 > .flex--item,
|
|
9411
9880
|
.gs8.flex__allitems9 > .flex--item {
|
|
9412
9881
|
flex-basis: calc(75% - 8px);
|
|
9413
9882
|
}
|
|
@@ -9415,9 +9884,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9415
9884
|
margin: 4px;
|
|
9416
9885
|
}
|
|
9417
9886
|
.gs8 > .flex--item10,
|
|
9418
|
-
.gs8.flex__allcells10 > .d-flex,
|
|
9419
9887
|
.gs8.flex__allitems10 > .d-flex,
|
|
9420
|
-
.gs8.flex__allcells10 > .flex--item,
|
|
9421
9888
|
.gs8.flex__allitems10 > .flex--item {
|
|
9422
9889
|
flex-basis: calc(83.33333333333333% - 8px);
|
|
9423
9890
|
}
|
|
@@ -9425,9 +9892,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9425
9892
|
margin: 4px;
|
|
9426
9893
|
}
|
|
9427
9894
|
.gs8 > .flex--item11,
|
|
9428
|
-
.gs8.flex__allcells11 > .d-flex,
|
|
9429
9895
|
.gs8.flex__allitems11 > .d-flex,
|
|
9430
|
-
.gs8.flex__allcells11 > .flex--item,
|
|
9431
9896
|
.gs8.flex__allitems11 > .flex--item {
|
|
9432
9897
|
flex-basis: calc(91.66666666666667% - 8px);
|
|
9433
9898
|
}
|
|
@@ -9435,9 +9900,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9435
9900
|
margin: 4px;
|
|
9436
9901
|
}
|
|
9437
9902
|
.gs8 > .flex--item12,
|
|
9438
|
-
.gs8.flex__allcells12 > .d-flex,
|
|
9439
9903
|
.gs8.flex__allitems12 > .d-flex,
|
|
9440
|
-
.gs8.flex__allcells12 > .flex--item,
|
|
9441
9904
|
.gs8.flex__allitems12 > .flex--item {
|
|
9442
9905
|
flex-basis: calc(100% - 8px);
|
|
9443
9906
|
}
|
|
@@ -9452,9 +9915,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9452
9915
|
margin: 6px;
|
|
9453
9916
|
}
|
|
9454
9917
|
.gs12 > .flex--item1,
|
|
9455
|
-
.gs12.flex__allcells1 > .d-flex,
|
|
9456
9918
|
.gs12.flex__allitems1 > .d-flex,
|
|
9457
|
-
.gs12.flex__allcells1 > .flex--item,
|
|
9458
9919
|
.gs12.flex__allitems1 > .flex--item {
|
|
9459
9920
|
flex-basis: calc(8.333333333333334% - 12px);
|
|
9460
9921
|
}
|
|
@@ -9462,9 +9923,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9462
9923
|
margin: 6px;
|
|
9463
9924
|
}
|
|
9464
9925
|
.gs12 > .flex--item2,
|
|
9465
|
-
.gs12.flex__allcells2 > .d-flex,
|
|
9466
9926
|
.gs12.flex__allitems2 > .d-flex,
|
|
9467
|
-
.gs12.flex__allcells2 > .flex--item,
|
|
9468
9927
|
.gs12.flex__allitems2 > .flex--item {
|
|
9469
9928
|
flex-basis: calc(16.666666666666668% - 12px);
|
|
9470
9929
|
}
|
|
@@ -9472,9 +9931,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9472
9931
|
margin: 6px;
|
|
9473
9932
|
}
|
|
9474
9933
|
.gs12 > .flex--item3,
|
|
9475
|
-
.gs12.flex__allcells3 > .d-flex,
|
|
9476
9934
|
.gs12.flex__allitems3 > .d-flex,
|
|
9477
|
-
.gs12.flex__allcells3 > .flex--item,
|
|
9478
9935
|
.gs12.flex__allitems3 > .flex--item {
|
|
9479
9936
|
flex-basis: calc(25% - 12px);
|
|
9480
9937
|
}
|
|
@@ -9482,9 +9939,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9482
9939
|
margin: 6px;
|
|
9483
9940
|
}
|
|
9484
9941
|
.gs12 > .flex--item4,
|
|
9485
|
-
.gs12.flex__allcells4 > .d-flex,
|
|
9486
9942
|
.gs12.flex__allitems4 > .d-flex,
|
|
9487
|
-
.gs12.flex__allcells4 > .flex--item,
|
|
9488
9943
|
.gs12.flex__allitems4 > .flex--item {
|
|
9489
9944
|
flex-basis: calc(33.333333333333336% - 12px);
|
|
9490
9945
|
}
|
|
@@ -9492,9 +9947,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9492
9947
|
margin: 6px;
|
|
9493
9948
|
}
|
|
9494
9949
|
.gs12 > .flex--item5,
|
|
9495
|
-
.gs12.flex__allcells5 > .d-flex,
|
|
9496
9950
|
.gs12.flex__allitems5 > .d-flex,
|
|
9497
|
-
.gs12.flex__allcells5 > .flex--item,
|
|
9498
9951
|
.gs12.flex__allitems5 > .flex--item {
|
|
9499
9952
|
flex-basis: calc(41.666666666666664% - 12px);
|
|
9500
9953
|
}
|
|
@@ -9502,9 +9955,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9502
9955
|
margin: 6px;
|
|
9503
9956
|
}
|
|
9504
9957
|
.gs12 > .flex--item6,
|
|
9505
|
-
.gs12.flex__allcells6 > .d-flex,
|
|
9506
9958
|
.gs12.flex__allitems6 > .d-flex,
|
|
9507
|
-
.gs12.flex__allcells6 > .flex--item,
|
|
9508
9959
|
.gs12.flex__allitems6 > .flex--item {
|
|
9509
9960
|
flex-basis: calc(50% - 12px);
|
|
9510
9961
|
}
|
|
@@ -9512,9 +9963,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9512
9963
|
margin: 6px;
|
|
9513
9964
|
}
|
|
9514
9965
|
.gs12 > .flex--item7,
|
|
9515
|
-
.gs12.flex__allcells7 > .d-flex,
|
|
9516
9966
|
.gs12.flex__allitems7 > .d-flex,
|
|
9517
|
-
.gs12.flex__allcells7 > .flex--item,
|
|
9518
9967
|
.gs12.flex__allitems7 > .flex--item {
|
|
9519
9968
|
flex-basis: calc(58.333333333333336% - 12px);
|
|
9520
9969
|
}
|
|
@@ -9522,9 +9971,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9522
9971
|
margin: 6px;
|
|
9523
9972
|
}
|
|
9524
9973
|
.gs12 > .flex--item8,
|
|
9525
|
-
.gs12.flex__allcells8 > .d-flex,
|
|
9526
9974
|
.gs12.flex__allitems8 > .d-flex,
|
|
9527
|
-
.gs12.flex__allcells8 > .flex--item,
|
|
9528
9975
|
.gs12.flex__allitems8 > .flex--item {
|
|
9529
9976
|
flex-basis: calc(66.66666666666667% - 12px);
|
|
9530
9977
|
}
|
|
@@ -9532,9 +9979,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9532
9979
|
margin: 6px;
|
|
9533
9980
|
}
|
|
9534
9981
|
.gs12 > .flex--item9,
|
|
9535
|
-
.gs12.flex__allcells9 > .d-flex,
|
|
9536
9982
|
.gs12.flex__allitems9 > .d-flex,
|
|
9537
|
-
.gs12.flex__allcells9 > .flex--item,
|
|
9538
9983
|
.gs12.flex__allitems9 > .flex--item {
|
|
9539
9984
|
flex-basis: calc(75% - 12px);
|
|
9540
9985
|
}
|
|
@@ -9542,9 +9987,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9542
9987
|
margin: 6px;
|
|
9543
9988
|
}
|
|
9544
9989
|
.gs12 > .flex--item10,
|
|
9545
|
-
.gs12.flex__allcells10 > .d-flex,
|
|
9546
9990
|
.gs12.flex__allitems10 > .d-flex,
|
|
9547
|
-
.gs12.flex__allcells10 > .flex--item,
|
|
9548
9991
|
.gs12.flex__allitems10 > .flex--item {
|
|
9549
9992
|
flex-basis: calc(83.33333333333333% - 12px);
|
|
9550
9993
|
}
|
|
@@ -9552,9 +9995,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9552
9995
|
margin: 6px;
|
|
9553
9996
|
}
|
|
9554
9997
|
.gs12 > .flex--item11,
|
|
9555
|
-
.gs12.flex__allcells11 > .d-flex,
|
|
9556
9998
|
.gs12.flex__allitems11 > .d-flex,
|
|
9557
|
-
.gs12.flex__allcells11 > .flex--item,
|
|
9558
9999
|
.gs12.flex__allitems11 > .flex--item {
|
|
9559
10000
|
flex-basis: calc(91.66666666666667% - 12px);
|
|
9560
10001
|
}
|
|
@@ -9562,9 +10003,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9562
10003
|
margin: 6px;
|
|
9563
10004
|
}
|
|
9564
10005
|
.gs12 > .flex--item12,
|
|
9565
|
-
.gs12.flex__allcells12 > .d-flex,
|
|
9566
10006
|
.gs12.flex__allitems12 > .d-flex,
|
|
9567
|
-
.gs12.flex__allcells12 > .flex--item,
|
|
9568
10007
|
.gs12.flex__allitems12 > .flex--item {
|
|
9569
10008
|
flex-basis: calc(100% - 12px);
|
|
9570
10009
|
}
|
|
@@ -9579,9 +10018,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9579
10018
|
margin: 8px;
|
|
9580
10019
|
}
|
|
9581
10020
|
.gs16 > .flex--item1,
|
|
9582
|
-
.gs16.flex__allcells1 > .d-flex,
|
|
9583
10021
|
.gs16.flex__allitems1 > .d-flex,
|
|
9584
|
-
.gs16.flex__allcells1 > .flex--item,
|
|
9585
10022
|
.gs16.flex__allitems1 > .flex--item {
|
|
9586
10023
|
flex-basis: calc(8.333333333333334% - 16px);
|
|
9587
10024
|
}
|
|
@@ -9589,9 +10026,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9589
10026
|
margin: 8px;
|
|
9590
10027
|
}
|
|
9591
10028
|
.gs16 > .flex--item2,
|
|
9592
|
-
.gs16.flex__allcells2 > .d-flex,
|
|
9593
10029
|
.gs16.flex__allitems2 > .d-flex,
|
|
9594
|
-
.gs16.flex__allcells2 > .flex--item,
|
|
9595
10030
|
.gs16.flex__allitems2 > .flex--item {
|
|
9596
10031
|
flex-basis: calc(16.666666666666668% - 16px);
|
|
9597
10032
|
}
|
|
@@ -9599,9 +10034,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9599
10034
|
margin: 8px;
|
|
9600
10035
|
}
|
|
9601
10036
|
.gs16 > .flex--item3,
|
|
9602
|
-
.gs16.flex__allcells3 > .d-flex,
|
|
9603
10037
|
.gs16.flex__allitems3 > .d-flex,
|
|
9604
|
-
.gs16.flex__allcells3 > .flex--item,
|
|
9605
10038
|
.gs16.flex__allitems3 > .flex--item {
|
|
9606
10039
|
flex-basis: calc(25% - 16px);
|
|
9607
10040
|
}
|
|
@@ -9609,9 +10042,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9609
10042
|
margin: 8px;
|
|
9610
10043
|
}
|
|
9611
10044
|
.gs16 > .flex--item4,
|
|
9612
|
-
.gs16.flex__allcells4 > .d-flex,
|
|
9613
10045
|
.gs16.flex__allitems4 > .d-flex,
|
|
9614
|
-
.gs16.flex__allcells4 > .flex--item,
|
|
9615
10046
|
.gs16.flex__allitems4 > .flex--item {
|
|
9616
10047
|
flex-basis: calc(33.333333333333336% - 16px);
|
|
9617
10048
|
}
|
|
@@ -9619,9 +10050,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9619
10050
|
margin: 8px;
|
|
9620
10051
|
}
|
|
9621
10052
|
.gs16 > .flex--item5,
|
|
9622
|
-
.gs16.flex__allcells5 > .d-flex,
|
|
9623
10053
|
.gs16.flex__allitems5 > .d-flex,
|
|
9624
|
-
.gs16.flex__allcells5 > .flex--item,
|
|
9625
10054
|
.gs16.flex__allitems5 > .flex--item {
|
|
9626
10055
|
flex-basis: calc(41.666666666666664% - 16px);
|
|
9627
10056
|
}
|
|
@@ -9629,9 +10058,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9629
10058
|
margin: 8px;
|
|
9630
10059
|
}
|
|
9631
10060
|
.gs16 > .flex--item6,
|
|
9632
|
-
.gs16.flex__allcells6 > .d-flex,
|
|
9633
10061
|
.gs16.flex__allitems6 > .d-flex,
|
|
9634
|
-
.gs16.flex__allcells6 > .flex--item,
|
|
9635
10062
|
.gs16.flex__allitems6 > .flex--item {
|
|
9636
10063
|
flex-basis: calc(50% - 16px);
|
|
9637
10064
|
}
|
|
@@ -9639,9 +10066,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9639
10066
|
margin: 8px;
|
|
9640
10067
|
}
|
|
9641
10068
|
.gs16 > .flex--item7,
|
|
9642
|
-
.gs16.flex__allcells7 > .d-flex,
|
|
9643
10069
|
.gs16.flex__allitems7 > .d-flex,
|
|
9644
|
-
.gs16.flex__allcells7 > .flex--item,
|
|
9645
10070
|
.gs16.flex__allitems7 > .flex--item {
|
|
9646
10071
|
flex-basis: calc(58.333333333333336% - 16px);
|
|
9647
10072
|
}
|
|
@@ -9649,9 +10074,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9649
10074
|
margin: 8px;
|
|
9650
10075
|
}
|
|
9651
10076
|
.gs16 > .flex--item8,
|
|
9652
|
-
.gs16.flex__allcells8 > .d-flex,
|
|
9653
10077
|
.gs16.flex__allitems8 > .d-flex,
|
|
9654
|
-
.gs16.flex__allcells8 > .flex--item,
|
|
9655
10078
|
.gs16.flex__allitems8 > .flex--item {
|
|
9656
10079
|
flex-basis: calc(66.66666666666667% - 16px);
|
|
9657
10080
|
}
|
|
@@ -9659,9 +10082,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9659
10082
|
margin: 8px;
|
|
9660
10083
|
}
|
|
9661
10084
|
.gs16 > .flex--item9,
|
|
9662
|
-
.gs16.flex__allcells9 > .d-flex,
|
|
9663
10085
|
.gs16.flex__allitems9 > .d-flex,
|
|
9664
|
-
.gs16.flex__allcells9 > .flex--item,
|
|
9665
10086
|
.gs16.flex__allitems9 > .flex--item {
|
|
9666
10087
|
flex-basis: calc(75% - 16px);
|
|
9667
10088
|
}
|
|
@@ -9669,9 +10090,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9669
10090
|
margin: 8px;
|
|
9670
10091
|
}
|
|
9671
10092
|
.gs16 > .flex--item10,
|
|
9672
|
-
.gs16.flex__allcells10 > .d-flex,
|
|
9673
10093
|
.gs16.flex__allitems10 > .d-flex,
|
|
9674
|
-
.gs16.flex__allcells10 > .flex--item,
|
|
9675
10094
|
.gs16.flex__allitems10 > .flex--item {
|
|
9676
10095
|
flex-basis: calc(83.33333333333333% - 16px);
|
|
9677
10096
|
}
|
|
@@ -9679,9 +10098,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9679
10098
|
margin: 8px;
|
|
9680
10099
|
}
|
|
9681
10100
|
.gs16 > .flex--item11,
|
|
9682
|
-
.gs16.flex__allcells11 > .d-flex,
|
|
9683
10101
|
.gs16.flex__allitems11 > .d-flex,
|
|
9684
|
-
.gs16.flex__allcells11 > .flex--item,
|
|
9685
10102
|
.gs16.flex__allitems11 > .flex--item {
|
|
9686
10103
|
flex-basis: calc(91.66666666666667% - 16px);
|
|
9687
10104
|
}
|
|
@@ -9689,9 +10106,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9689
10106
|
margin: 8px;
|
|
9690
10107
|
}
|
|
9691
10108
|
.gs16 > .flex--item12,
|
|
9692
|
-
.gs16.flex__allcells12 > .d-flex,
|
|
9693
10109
|
.gs16.flex__allitems12 > .d-flex,
|
|
9694
|
-
.gs16.flex__allcells12 > .flex--item,
|
|
9695
10110
|
.gs16.flex__allitems12 > .flex--item {
|
|
9696
10111
|
flex-basis: calc(100% - 16px);
|
|
9697
10112
|
}
|
|
@@ -9706,9 +10121,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9706
10121
|
margin: 12px;
|
|
9707
10122
|
}
|
|
9708
10123
|
.gs24 > .flex--item1,
|
|
9709
|
-
.gs24.flex__allcells1 > .d-flex,
|
|
9710
10124
|
.gs24.flex__allitems1 > .d-flex,
|
|
9711
|
-
.gs24.flex__allcells1 > .flex--item,
|
|
9712
10125
|
.gs24.flex__allitems1 > .flex--item {
|
|
9713
10126
|
flex-basis: calc(8.333333333333334% - 24px);
|
|
9714
10127
|
}
|
|
@@ -9716,9 +10129,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9716
10129
|
margin: 12px;
|
|
9717
10130
|
}
|
|
9718
10131
|
.gs24 > .flex--item2,
|
|
9719
|
-
.gs24.flex__allcells2 > .d-flex,
|
|
9720
10132
|
.gs24.flex__allitems2 > .d-flex,
|
|
9721
|
-
.gs24.flex__allcells2 > .flex--item,
|
|
9722
10133
|
.gs24.flex__allitems2 > .flex--item {
|
|
9723
10134
|
flex-basis: calc(16.666666666666668% - 24px);
|
|
9724
10135
|
}
|
|
@@ -9726,9 +10137,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9726
10137
|
margin: 12px;
|
|
9727
10138
|
}
|
|
9728
10139
|
.gs24 > .flex--item3,
|
|
9729
|
-
.gs24.flex__allcells3 > .d-flex,
|
|
9730
10140
|
.gs24.flex__allitems3 > .d-flex,
|
|
9731
|
-
.gs24.flex__allcells3 > .flex--item,
|
|
9732
10141
|
.gs24.flex__allitems3 > .flex--item {
|
|
9733
10142
|
flex-basis: calc(25% - 24px);
|
|
9734
10143
|
}
|
|
@@ -9736,9 +10145,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9736
10145
|
margin: 12px;
|
|
9737
10146
|
}
|
|
9738
10147
|
.gs24 > .flex--item4,
|
|
9739
|
-
.gs24.flex__allcells4 > .d-flex,
|
|
9740
10148
|
.gs24.flex__allitems4 > .d-flex,
|
|
9741
|
-
.gs24.flex__allcells4 > .flex--item,
|
|
9742
10149
|
.gs24.flex__allitems4 > .flex--item {
|
|
9743
10150
|
flex-basis: calc(33.333333333333336% - 24px);
|
|
9744
10151
|
}
|
|
@@ -9746,9 +10153,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9746
10153
|
margin: 12px;
|
|
9747
10154
|
}
|
|
9748
10155
|
.gs24 > .flex--item5,
|
|
9749
|
-
.gs24.flex__allcells5 > .d-flex,
|
|
9750
10156
|
.gs24.flex__allitems5 > .d-flex,
|
|
9751
|
-
.gs24.flex__allcells5 > .flex--item,
|
|
9752
10157
|
.gs24.flex__allitems5 > .flex--item {
|
|
9753
10158
|
flex-basis: calc(41.666666666666664% - 24px);
|
|
9754
10159
|
}
|
|
@@ -9756,9 +10161,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9756
10161
|
margin: 12px;
|
|
9757
10162
|
}
|
|
9758
10163
|
.gs24 > .flex--item6,
|
|
9759
|
-
.gs24.flex__allcells6 > .d-flex,
|
|
9760
10164
|
.gs24.flex__allitems6 > .d-flex,
|
|
9761
|
-
.gs24.flex__allcells6 > .flex--item,
|
|
9762
10165
|
.gs24.flex__allitems6 > .flex--item {
|
|
9763
10166
|
flex-basis: calc(50% - 24px);
|
|
9764
10167
|
}
|
|
@@ -9766,9 +10169,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9766
10169
|
margin: 12px;
|
|
9767
10170
|
}
|
|
9768
10171
|
.gs24 > .flex--item7,
|
|
9769
|
-
.gs24.flex__allcells7 > .d-flex,
|
|
9770
10172
|
.gs24.flex__allitems7 > .d-flex,
|
|
9771
|
-
.gs24.flex__allcells7 > .flex--item,
|
|
9772
10173
|
.gs24.flex__allitems7 > .flex--item {
|
|
9773
10174
|
flex-basis: calc(58.333333333333336% - 24px);
|
|
9774
10175
|
}
|
|
@@ -9776,9 +10177,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9776
10177
|
margin: 12px;
|
|
9777
10178
|
}
|
|
9778
10179
|
.gs24 > .flex--item8,
|
|
9779
|
-
.gs24.flex__allcells8 > .d-flex,
|
|
9780
10180
|
.gs24.flex__allitems8 > .d-flex,
|
|
9781
|
-
.gs24.flex__allcells8 > .flex--item,
|
|
9782
10181
|
.gs24.flex__allitems8 > .flex--item {
|
|
9783
10182
|
flex-basis: calc(66.66666666666667% - 24px);
|
|
9784
10183
|
}
|
|
@@ -9786,9 +10185,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9786
10185
|
margin: 12px;
|
|
9787
10186
|
}
|
|
9788
10187
|
.gs24 > .flex--item9,
|
|
9789
|
-
.gs24.flex__allcells9 > .d-flex,
|
|
9790
10188
|
.gs24.flex__allitems9 > .d-flex,
|
|
9791
|
-
.gs24.flex__allcells9 > .flex--item,
|
|
9792
10189
|
.gs24.flex__allitems9 > .flex--item {
|
|
9793
10190
|
flex-basis: calc(75% - 24px);
|
|
9794
10191
|
}
|
|
@@ -9796,9 +10193,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9796
10193
|
margin: 12px;
|
|
9797
10194
|
}
|
|
9798
10195
|
.gs24 > .flex--item10,
|
|
9799
|
-
.gs24.flex__allcells10 > .d-flex,
|
|
9800
10196
|
.gs24.flex__allitems10 > .d-flex,
|
|
9801
|
-
.gs24.flex__allcells10 > .flex--item,
|
|
9802
10197
|
.gs24.flex__allitems10 > .flex--item {
|
|
9803
10198
|
flex-basis: calc(83.33333333333333% - 24px);
|
|
9804
10199
|
}
|
|
@@ -9806,9 +10201,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9806
10201
|
margin: 12px;
|
|
9807
10202
|
}
|
|
9808
10203
|
.gs24 > .flex--item11,
|
|
9809
|
-
.gs24.flex__allcells11 > .d-flex,
|
|
9810
10204
|
.gs24.flex__allitems11 > .d-flex,
|
|
9811
|
-
.gs24.flex__allcells11 > .flex--item,
|
|
9812
10205
|
.gs24.flex__allitems11 > .flex--item {
|
|
9813
10206
|
flex-basis: calc(91.66666666666667% - 24px);
|
|
9814
10207
|
}
|
|
@@ -9816,9 +10209,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9816
10209
|
margin: 12px;
|
|
9817
10210
|
}
|
|
9818
10211
|
.gs24 > .flex--item12,
|
|
9819
|
-
.gs24.flex__allcells12 > .d-flex,
|
|
9820
10212
|
.gs24.flex__allitems12 > .d-flex,
|
|
9821
|
-
.gs24.flex__allcells12 > .flex--item,
|
|
9822
10213
|
.gs24.flex__allitems12 > .flex--item {
|
|
9823
10214
|
flex-basis: calc(100% - 24px);
|
|
9824
10215
|
}
|
|
@@ -9833,9 +10224,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9833
10224
|
margin: 16px;
|
|
9834
10225
|
}
|
|
9835
10226
|
.gs32 > .flex--item1,
|
|
9836
|
-
.gs32.flex__allcells1 > .d-flex,
|
|
9837
10227
|
.gs32.flex__allitems1 > .d-flex,
|
|
9838
|
-
.gs32.flex__allcells1 > .flex--item,
|
|
9839
10228
|
.gs32.flex__allitems1 > .flex--item {
|
|
9840
10229
|
flex-basis: calc(8.333333333333334% - 32px);
|
|
9841
10230
|
}
|
|
@@ -9843,9 +10232,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9843
10232
|
margin: 16px;
|
|
9844
10233
|
}
|
|
9845
10234
|
.gs32 > .flex--item2,
|
|
9846
|
-
.gs32.flex__allcells2 > .d-flex,
|
|
9847
10235
|
.gs32.flex__allitems2 > .d-flex,
|
|
9848
|
-
.gs32.flex__allcells2 > .flex--item,
|
|
9849
10236
|
.gs32.flex__allitems2 > .flex--item {
|
|
9850
10237
|
flex-basis: calc(16.666666666666668% - 32px);
|
|
9851
10238
|
}
|
|
@@ -9853,9 +10240,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9853
10240
|
margin: 16px;
|
|
9854
10241
|
}
|
|
9855
10242
|
.gs32 > .flex--item3,
|
|
9856
|
-
.gs32.flex__allcells3 > .d-flex,
|
|
9857
10243
|
.gs32.flex__allitems3 > .d-flex,
|
|
9858
|
-
.gs32.flex__allcells3 > .flex--item,
|
|
9859
10244
|
.gs32.flex__allitems3 > .flex--item {
|
|
9860
10245
|
flex-basis: calc(25% - 32px);
|
|
9861
10246
|
}
|
|
@@ -9863,9 +10248,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9863
10248
|
margin: 16px;
|
|
9864
10249
|
}
|
|
9865
10250
|
.gs32 > .flex--item4,
|
|
9866
|
-
.gs32.flex__allcells4 > .d-flex,
|
|
9867
10251
|
.gs32.flex__allitems4 > .d-flex,
|
|
9868
|
-
.gs32.flex__allcells4 > .flex--item,
|
|
9869
10252
|
.gs32.flex__allitems4 > .flex--item {
|
|
9870
10253
|
flex-basis: calc(33.333333333333336% - 32px);
|
|
9871
10254
|
}
|
|
@@ -9873,9 +10256,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9873
10256
|
margin: 16px;
|
|
9874
10257
|
}
|
|
9875
10258
|
.gs32 > .flex--item5,
|
|
9876
|
-
.gs32.flex__allcells5 > .d-flex,
|
|
9877
10259
|
.gs32.flex__allitems5 > .d-flex,
|
|
9878
|
-
.gs32.flex__allcells5 > .flex--item,
|
|
9879
10260
|
.gs32.flex__allitems5 > .flex--item {
|
|
9880
10261
|
flex-basis: calc(41.666666666666664% - 32px);
|
|
9881
10262
|
}
|
|
@@ -9883,9 +10264,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9883
10264
|
margin: 16px;
|
|
9884
10265
|
}
|
|
9885
10266
|
.gs32 > .flex--item6,
|
|
9886
|
-
.gs32.flex__allcells6 > .d-flex,
|
|
9887
10267
|
.gs32.flex__allitems6 > .d-flex,
|
|
9888
|
-
.gs32.flex__allcells6 > .flex--item,
|
|
9889
10268
|
.gs32.flex__allitems6 > .flex--item {
|
|
9890
10269
|
flex-basis: calc(50% - 32px);
|
|
9891
10270
|
}
|
|
@@ -9893,9 +10272,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9893
10272
|
margin: 16px;
|
|
9894
10273
|
}
|
|
9895
10274
|
.gs32 > .flex--item7,
|
|
9896
|
-
.gs32.flex__allcells7 > .d-flex,
|
|
9897
10275
|
.gs32.flex__allitems7 > .d-flex,
|
|
9898
|
-
.gs32.flex__allcells7 > .flex--item,
|
|
9899
10276
|
.gs32.flex__allitems7 > .flex--item {
|
|
9900
10277
|
flex-basis: calc(58.333333333333336% - 32px);
|
|
9901
10278
|
}
|
|
@@ -9903,9 +10280,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9903
10280
|
margin: 16px;
|
|
9904
10281
|
}
|
|
9905
10282
|
.gs32 > .flex--item8,
|
|
9906
|
-
.gs32.flex__allcells8 > .d-flex,
|
|
9907
10283
|
.gs32.flex__allitems8 > .d-flex,
|
|
9908
|
-
.gs32.flex__allcells8 > .flex--item,
|
|
9909
10284
|
.gs32.flex__allitems8 > .flex--item {
|
|
9910
10285
|
flex-basis: calc(66.66666666666667% - 32px);
|
|
9911
10286
|
}
|
|
@@ -9913,9 +10288,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9913
10288
|
margin: 16px;
|
|
9914
10289
|
}
|
|
9915
10290
|
.gs32 > .flex--item9,
|
|
9916
|
-
.gs32.flex__allcells9 > .d-flex,
|
|
9917
10291
|
.gs32.flex__allitems9 > .d-flex,
|
|
9918
|
-
.gs32.flex__allcells9 > .flex--item,
|
|
9919
10292
|
.gs32.flex__allitems9 > .flex--item {
|
|
9920
10293
|
flex-basis: calc(75% - 32px);
|
|
9921
10294
|
}
|
|
@@ -9923,9 +10296,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9923
10296
|
margin: 16px;
|
|
9924
10297
|
}
|
|
9925
10298
|
.gs32 > .flex--item10,
|
|
9926
|
-
.gs32.flex__allcells10 > .d-flex,
|
|
9927
10299
|
.gs32.flex__allitems10 > .d-flex,
|
|
9928
|
-
.gs32.flex__allcells10 > .flex--item,
|
|
9929
10300
|
.gs32.flex__allitems10 > .flex--item {
|
|
9930
10301
|
flex-basis: calc(83.33333333333333% - 32px);
|
|
9931
10302
|
}
|
|
@@ -9933,9 +10304,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9933
10304
|
margin: 16px;
|
|
9934
10305
|
}
|
|
9935
10306
|
.gs32 > .flex--item11,
|
|
9936
|
-
.gs32.flex__allcells11 > .d-flex,
|
|
9937
10307
|
.gs32.flex__allitems11 > .d-flex,
|
|
9938
|
-
.gs32.flex__allcells11 > .flex--item,
|
|
9939
10308
|
.gs32.flex__allitems11 > .flex--item {
|
|
9940
10309
|
flex-basis: calc(91.66666666666667% - 32px);
|
|
9941
10310
|
}
|
|
@@ -9943,9 +10312,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9943
10312
|
margin: 16px;
|
|
9944
10313
|
}
|
|
9945
10314
|
.gs32 > .flex--item12,
|
|
9946
|
-
.gs32.flex__allcells12 > .d-flex,
|
|
9947
10315
|
.gs32.flex__allitems12 > .d-flex,
|
|
9948
|
-
.gs32.flex__allcells12 > .flex--item,
|
|
9949
10316
|
.gs32.flex__allitems12 > .flex--item {
|
|
9950
10317
|
flex-basis: calc(100% - 32px);
|
|
9951
10318
|
}
|
|
@@ -9960,9 +10327,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9960
10327
|
margin: 24px;
|
|
9961
10328
|
}
|
|
9962
10329
|
.gs48 > .flex--item1,
|
|
9963
|
-
.gs48.flex__allcells1 > .d-flex,
|
|
9964
10330
|
.gs48.flex__allitems1 > .d-flex,
|
|
9965
|
-
.gs48.flex__allcells1 > .flex--item,
|
|
9966
10331
|
.gs48.flex__allitems1 > .flex--item {
|
|
9967
10332
|
flex-basis: calc(8.333333333333334% - 48px);
|
|
9968
10333
|
}
|
|
@@ -9970,9 +10335,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9970
10335
|
margin: 24px;
|
|
9971
10336
|
}
|
|
9972
10337
|
.gs48 > .flex--item2,
|
|
9973
|
-
.gs48.flex__allcells2 > .d-flex,
|
|
9974
10338
|
.gs48.flex__allitems2 > .d-flex,
|
|
9975
|
-
.gs48.flex__allcells2 > .flex--item,
|
|
9976
10339
|
.gs48.flex__allitems2 > .flex--item {
|
|
9977
10340
|
flex-basis: calc(16.666666666666668% - 48px);
|
|
9978
10341
|
}
|
|
@@ -9980,9 +10343,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9980
10343
|
margin: 24px;
|
|
9981
10344
|
}
|
|
9982
10345
|
.gs48 > .flex--item3,
|
|
9983
|
-
.gs48.flex__allcells3 > .d-flex,
|
|
9984
10346
|
.gs48.flex__allitems3 > .d-flex,
|
|
9985
|
-
.gs48.flex__allcells3 > .flex--item,
|
|
9986
10347
|
.gs48.flex__allitems3 > .flex--item {
|
|
9987
10348
|
flex-basis: calc(25% - 48px);
|
|
9988
10349
|
}
|
|
@@ -9990,9 +10351,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
9990
10351
|
margin: 24px;
|
|
9991
10352
|
}
|
|
9992
10353
|
.gs48 > .flex--item4,
|
|
9993
|
-
.gs48.flex__allcells4 > .d-flex,
|
|
9994
10354
|
.gs48.flex__allitems4 > .d-flex,
|
|
9995
|
-
.gs48.flex__allcells4 > .flex--item,
|
|
9996
10355
|
.gs48.flex__allitems4 > .flex--item {
|
|
9997
10356
|
flex-basis: calc(33.333333333333336% - 48px);
|
|
9998
10357
|
}
|
|
@@ -10000,9 +10359,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10000
10359
|
margin: 24px;
|
|
10001
10360
|
}
|
|
10002
10361
|
.gs48 > .flex--item5,
|
|
10003
|
-
.gs48.flex__allcells5 > .d-flex,
|
|
10004
10362
|
.gs48.flex__allitems5 > .d-flex,
|
|
10005
|
-
.gs48.flex__allcells5 > .flex--item,
|
|
10006
10363
|
.gs48.flex__allitems5 > .flex--item {
|
|
10007
10364
|
flex-basis: calc(41.666666666666664% - 48px);
|
|
10008
10365
|
}
|
|
@@ -10010,9 +10367,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10010
10367
|
margin: 24px;
|
|
10011
10368
|
}
|
|
10012
10369
|
.gs48 > .flex--item6,
|
|
10013
|
-
.gs48.flex__allcells6 > .d-flex,
|
|
10014
10370
|
.gs48.flex__allitems6 > .d-flex,
|
|
10015
|
-
.gs48.flex__allcells6 > .flex--item,
|
|
10016
10371
|
.gs48.flex__allitems6 > .flex--item {
|
|
10017
10372
|
flex-basis: calc(50% - 48px);
|
|
10018
10373
|
}
|
|
@@ -10020,9 +10375,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10020
10375
|
margin: 24px;
|
|
10021
10376
|
}
|
|
10022
10377
|
.gs48 > .flex--item7,
|
|
10023
|
-
.gs48.flex__allcells7 > .d-flex,
|
|
10024
10378
|
.gs48.flex__allitems7 > .d-flex,
|
|
10025
|
-
.gs48.flex__allcells7 > .flex--item,
|
|
10026
10379
|
.gs48.flex__allitems7 > .flex--item {
|
|
10027
10380
|
flex-basis: calc(58.333333333333336% - 48px);
|
|
10028
10381
|
}
|
|
@@ -10030,9 +10383,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10030
10383
|
margin: 24px;
|
|
10031
10384
|
}
|
|
10032
10385
|
.gs48 > .flex--item8,
|
|
10033
|
-
.gs48.flex__allcells8 > .d-flex,
|
|
10034
10386
|
.gs48.flex__allitems8 > .d-flex,
|
|
10035
|
-
.gs48.flex__allcells8 > .flex--item,
|
|
10036
10387
|
.gs48.flex__allitems8 > .flex--item {
|
|
10037
10388
|
flex-basis: calc(66.66666666666667% - 48px);
|
|
10038
10389
|
}
|
|
@@ -10040,9 +10391,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10040
10391
|
margin: 24px;
|
|
10041
10392
|
}
|
|
10042
10393
|
.gs48 > .flex--item9,
|
|
10043
|
-
.gs48.flex__allcells9 > .d-flex,
|
|
10044
10394
|
.gs48.flex__allitems9 > .d-flex,
|
|
10045
|
-
.gs48.flex__allcells9 > .flex--item,
|
|
10046
10395
|
.gs48.flex__allitems9 > .flex--item {
|
|
10047
10396
|
flex-basis: calc(75% - 48px);
|
|
10048
10397
|
}
|
|
@@ -10050,9 +10399,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10050
10399
|
margin: 24px;
|
|
10051
10400
|
}
|
|
10052
10401
|
.gs48 > .flex--item10,
|
|
10053
|
-
.gs48.flex__allcells10 > .d-flex,
|
|
10054
10402
|
.gs48.flex__allitems10 > .d-flex,
|
|
10055
|
-
.gs48.flex__allcells10 > .flex--item,
|
|
10056
10403
|
.gs48.flex__allitems10 > .flex--item {
|
|
10057
10404
|
flex-basis: calc(83.33333333333333% - 48px);
|
|
10058
10405
|
}
|
|
@@ -10060,9 +10407,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10060
10407
|
margin: 24px;
|
|
10061
10408
|
}
|
|
10062
10409
|
.gs48 > .flex--item11,
|
|
10063
|
-
.gs48.flex__allcells11 > .d-flex,
|
|
10064
10410
|
.gs48.flex__allitems11 > .d-flex,
|
|
10065
|
-
.gs48.flex__allcells11 > .flex--item,
|
|
10066
10411
|
.gs48.flex__allitems11 > .flex--item {
|
|
10067
10412
|
flex-basis: calc(91.66666666666667% - 48px);
|
|
10068
10413
|
}
|
|
@@ -10070,9 +10415,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10070
10415
|
margin: 24px;
|
|
10071
10416
|
}
|
|
10072
10417
|
.gs48 > .flex--item12,
|
|
10073
|
-
.gs48.flex__allcells12 > .d-flex,
|
|
10074
10418
|
.gs48.flex__allitems12 > .d-flex,
|
|
10075
|
-
.gs48.flex__allcells12 > .flex--item,
|
|
10076
10419
|
.gs48.flex__allitems12 > .flex--item {
|
|
10077
10420
|
flex-basis: calc(100% - 48px);
|
|
10078
10421
|
}
|
|
@@ -10087,9 +10430,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10087
10430
|
margin: 32px;
|
|
10088
10431
|
}
|
|
10089
10432
|
.gs64 > .flex--item1,
|
|
10090
|
-
.gs64.flex__allcells1 > .d-flex,
|
|
10091
10433
|
.gs64.flex__allitems1 > .d-flex,
|
|
10092
|
-
.gs64.flex__allcells1 > .flex--item,
|
|
10093
10434
|
.gs64.flex__allitems1 > .flex--item {
|
|
10094
10435
|
flex-basis: calc(8.333333333333334% - 64px);
|
|
10095
10436
|
}
|
|
@@ -10097,9 +10438,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10097
10438
|
margin: 32px;
|
|
10098
10439
|
}
|
|
10099
10440
|
.gs64 > .flex--item2,
|
|
10100
|
-
.gs64.flex__allcells2 > .d-flex,
|
|
10101
10441
|
.gs64.flex__allitems2 > .d-flex,
|
|
10102
|
-
.gs64.flex__allcells2 > .flex--item,
|
|
10103
10442
|
.gs64.flex__allitems2 > .flex--item {
|
|
10104
10443
|
flex-basis: calc(16.666666666666668% - 64px);
|
|
10105
10444
|
}
|
|
@@ -10107,9 +10446,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10107
10446
|
margin: 32px;
|
|
10108
10447
|
}
|
|
10109
10448
|
.gs64 > .flex--item3,
|
|
10110
|
-
.gs64.flex__allcells3 > .d-flex,
|
|
10111
10449
|
.gs64.flex__allitems3 > .d-flex,
|
|
10112
|
-
.gs64.flex__allcells3 > .flex--item,
|
|
10113
10450
|
.gs64.flex__allitems3 > .flex--item {
|
|
10114
10451
|
flex-basis: calc(25% - 64px);
|
|
10115
10452
|
}
|
|
@@ -10117,9 +10454,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10117
10454
|
margin: 32px;
|
|
10118
10455
|
}
|
|
10119
10456
|
.gs64 > .flex--item4,
|
|
10120
|
-
.gs64.flex__allcells4 > .d-flex,
|
|
10121
10457
|
.gs64.flex__allitems4 > .d-flex,
|
|
10122
|
-
.gs64.flex__allcells4 > .flex--item,
|
|
10123
10458
|
.gs64.flex__allitems4 > .flex--item {
|
|
10124
10459
|
flex-basis: calc(33.333333333333336% - 64px);
|
|
10125
10460
|
}
|
|
@@ -10127,9 +10462,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10127
10462
|
margin: 32px;
|
|
10128
10463
|
}
|
|
10129
10464
|
.gs64 > .flex--item5,
|
|
10130
|
-
.gs64.flex__allcells5 > .d-flex,
|
|
10131
10465
|
.gs64.flex__allitems5 > .d-flex,
|
|
10132
|
-
.gs64.flex__allcells5 > .flex--item,
|
|
10133
10466
|
.gs64.flex__allitems5 > .flex--item {
|
|
10134
10467
|
flex-basis: calc(41.666666666666664% - 64px);
|
|
10135
10468
|
}
|
|
@@ -10137,9 +10470,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10137
10470
|
margin: 32px;
|
|
10138
10471
|
}
|
|
10139
10472
|
.gs64 > .flex--item6,
|
|
10140
|
-
.gs64.flex__allcells6 > .d-flex,
|
|
10141
10473
|
.gs64.flex__allitems6 > .d-flex,
|
|
10142
|
-
.gs64.flex__allcells6 > .flex--item,
|
|
10143
10474
|
.gs64.flex__allitems6 > .flex--item {
|
|
10144
10475
|
flex-basis: calc(50% - 64px);
|
|
10145
10476
|
}
|
|
@@ -10147,9 +10478,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10147
10478
|
margin: 32px;
|
|
10148
10479
|
}
|
|
10149
10480
|
.gs64 > .flex--item7,
|
|
10150
|
-
.gs64.flex__allcells7 > .d-flex,
|
|
10151
10481
|
.gs64.flex__allitems7 > .d-flex,
|
|
10152
|
-
.gs64.flex__allcells7 > .flex--item,
|
|
10153
10482
|
.gs64.flex__allitems7 > .flex--item {
|
|
10154
10483
|
flex-basis: calc(58.333333333333336% - 64px);
|
|
10155
10484
|
}
|
|
@@ -10157,9 +10486,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10157
10486
|
margin: 32px;
|
|
10158
10487
|
}
|
|
10159
10488
|
.gs64 > .flex--item8,
|
|
10160
|
-
.gs64.flex__allcells8 > .d-flex,
|
|
10161
10489
|
.gs64.flex__allitems8 > .d-flex,
|
|
10162
|
-
.gs64.flex__allcells8 > .flex--item,
|
|
10163
10490
|
.gs64.flex__allitems8 > .flex--item {
|
|
10164
10491
|
flex-basis: calc(66.66666666666667% - 64px);
|
|
10165
10492
|
}
|
|
@@ -10167,9 +10494,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10167
10494
|
margin: 32px;
|
|
10168
10495
|
}
|
|
10169
10496
|
.gs64 > .flex--item9,
|
|
10170
|
-
.gs64.flex__allcells9 > .d-flex,
|
|
10171
10497
|
.gs64.flex__allitems9 > .d-flex,
|
|
10172
|
-
.gs64.flex__allcells9 > .flex--item,
|
|
10173
10498
|
.gs64.flex__allitems9 > .flex--item {
|
|
10174
10499
|
flex-basis: calc(75% - 64px);
|
|
10175
10500
|
}
|
|
@@ -10177,9 +10502,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10177
10502
|
margin: 32px;
|
|
10178
10503
|
}
|
|
10179
10504
|
.gs64 > .flex--item10,
|
|
10180
|
-
.gs64.flex__allcells10 > .d-flex,
|
|
10181
10505
|
.gs64.flex__allitems10 > .d-flex,
|
|
10182
|
-
.gs64.flex__allcells10 > .flex--item,
|
|
10183
10506
|
.gs64.flex__allitems10 > .flex--item {
|
|
10184
10507
|
flex-basis: calc(83.33333333333333% - 64px);
|
|
10185
10508
|
}
|
|
@@ -10187,9 +10510,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10187
10510
|
margin: 32px;
|
|
10188
10511
|
}
|
|
10189
10512
|
.gs64 > .flex--item11,
|
|
10190
|
-
.gs64.flex__allcells11 > .d-flex,
|
|
10191
10513
|
.gs64.flex__allitems11 > .d-flex,
|
|
10192
|
-
.gs64.flex__allcells11 > .flex--item,
|
|
10193
10514
|
.gs64.flex__allitems11 > .flex--item {
|
|
10194
10515
|
flex-basis: calc(91.66666666666667% - 64px);
|
|
10195
10516
|
}
|
|
@@ -10197,9 +10518,7 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10197
10518
|
margin: 32px;
|
|
10198
10519
|
}
|
|
10199
10520
|
.gs64 > .flex--item12,
|
|
10200
|
-
.gs64.flex__allcells12 > .d-flex,
|
|
10201
10521
|
.gs64.flex__allitems12 > .d-flex,
|
|
10202
|
-
.gs64.flex__allcells12 > .flex--item,
|
|
10203
10522
|
.gs64.flex__allitems12 > .flex--item {
|
|
10204
10523
|
flex-basis: calc(100% - 64px);
|
|
10205
10524
|
}
|
|
@@ -10408,6 +10727,9 @@ body.theme-dark .d\:bg-theme-secondary-025,
|
|
|
10408
10727
|
.g0 {
|
|
10409
10728
|
gap: 0;
|
|
10410
10729
|
}
|
|
10730
|
+
.g1 {
|
|
10731
|
+
gap: 1px;
|
|
10732
|
+
}
|
|
10411
10733
|
.g2 {
|
|
10412
10734
|
gap: 2px;
|
|
10413
10735
|
}
|
|
@@ -12359,9 +12681,6 @@ p {
|
|
|
12359
12681
|
overflow-wrap: unset !important;
|
|
12360
12682
|
word-wrap: unset !important;
|
|
12361
12683
|
}
|
|
12362
|
-
.ww-break-word {
|
|
12363
|
-
word-wrap: break-word !important;
|
|
12364
|
-
}
|
|
12365
12684
|
.hyphens-none {
|
|
12366
12685
|
hyphens: none !important;
|
|
12367
12686
|
}
|
|
@@ -12373,6 +12692,26 @@ p {
|
|
|
12373
12692
|
.hyphens-unset {
|
|
12374
12693
|
hyphens: unset !important;
|
|
12375
12694
|
}
|
|
12695
|
+
.break-word {
|
|
12696
|
+
word-break: break-word !important;
|
|
12697
|
+
word-wrap: break-word !important;
|
|
12698
|
+
overflow-wrap: break-word !important;
|
|
12699
|
+
-webkit-hyphens: auto !important;
|
|
12700
|
+
-moz-hyphens: auto !important;
|
|
12701
|
+
-ms-hyphens: auto !important;
|
|
12702
|
+
hyphens: auto !important;
|
|
12703
|
+
}
|
|
12704
|
+
ul,
|
|
12705
|
+
ol {
|
|
12706
|
+
padding: 0;
|
|
12707
|
+
margin-left: 2.8em;
|
|
12708
|
+
}
|
|
12709
|
+
ul ul,
|
|
12710
|
+
ol ul,
|
|
12711
|
+
ul ol,
|
|
12712
|
+
ol ol {
|
|
12713
|
+
margin-bottom: 0;
|
|
12714
|
+
}
|
|
12376
12715
|
.list-reset {
|
|
12377
12716
|
list-style: none;
|
|
12378
12717
|
margin: 0;
|
|
@@ -13617,6 +13956,9 @@ p {
|
|
|
13617
13956
|
.lg\:g0 {
|
|
13618
13957
|
gap: 0;
|
|
13619
13958
|
}
|
|
13959
|
+
.lg\:g1 {
|
|
13960
|
+
gap: 1px;
|
|
13961
|
+
}
|
|
13620
13962
|
.lg\:g2 {
|
|
13621
13963
|
gap: 2px;
|
|
13622
13964
|
}
|
|
@@ -14662,6 +15004,9 @@ p {
|
|
|
14662
15004
|
.md\:g0 {
|
|
14663
15005
|
gap: 0;
|
|
14664
15006
|
}
|
|
15007
|
+
.md\:g1 {
|
|
15008
|
+
gap: 1px;
|
|
15009
|
+
}
|
|
14665
15010
|
.md\:g2 {
|
|
14666
15011
|
gap: 2px;
|
|
14667
15012
|
}
|
|
@@ -15707,6 +16052,9 @@ p {
|
|
|
15707
16052
|
.sm\:g0 {
|
|
15708
16053
|
gap: 0;
|
|
15709
16054
|
}
|
|
16055
|
+
.sm\:g1 {
|
|
16056
|
+
gap: 1px;
|
|
16057
|
+
}
|
|
15710
16058
|
.sm\:g2 {
|
|
15711
16059
|
gap: 2px;
|
|
15712
16060
|
}
|
|
@@ -17602,12 +17950,10 @@ button.s-link:focus {
|
|
|
17602
17950
|
color: var(--black-800);
|
|
17603
17951
|
}
|
|
17604
17952
|
.s-block-link:focus:not(:focus-visible) {
|
|
17605
|
-
color: inherit;
|
|
17606
17953
|
outline: none;
|
|
17607
17954
|
box-shadow: none;
|
|
17608
17955
|
}
|
|
17609
17956
|
.s-block-link:focus-visible {
|
|
17610
|
-
color: inherit;
|
|
17611
17957
|
outline: none;
|
|
17612
17958
|
box-shadow: 0 0 0 4px var(--focus-ring-muted);
|
|
17613
17959
|
}
|
|
@@ -17757,133 +18103,6 @@ body.theme-highcontrast a.s-link-preview--title.s-link__visited:active {
|
|
|
17757
18103
|
.s-link-preview--footer a:focus {
|
|
17758
18104
|
color: var(--black-600);
|
|
17759
18105
|
}
|
|
17760
|
-
.s-navigation {
|
|
17761
|
-
display: flex;
|
|
17762
|
-
margin: -2px;
|
|
17763
|
-
padding: 2px 0;
|
|
17764
|
-
flex-wrap: wrap;
|
|
17765
|
-
list-style: none;
|
|
17766
|
-
}
|
|
17767
|
-
.s-navigation .s-navigation--item {
|
|
17768
|
-
display: flex;
|
|
17769
|
-
align-items: center;
|
|
17770
|
-
padding: 6px 12px;
|
|
17771
|
-
position: relative;
|
|
17772
|
-
border: none;
|
|
17773
|
-
font: unset;
|
|
17774
|
-
background: none;
|
|
17775
|
-
box-shadow: none;
|
|
17776
|
-
cursor: pointer;
|
|
17777
|
-
user-select: auto;
|
|
17778
|
-
border-radius: 1000px;
|
|
17779
|
-
margin: 2px;
|
|
17780
|
-
white-space: nowrap;
|
|
17781
|
-
color: var(--black-600);
|
|
17782
|
-
}
|
|
17783
|
-
.s-navigation .s-navigation--item:hover,
|
|
17784
|
-
.s-navigation .s-navigation--item:active {
|
|
17785
|
-
background: var(--black-075);
|
|
17786
|
-
color: var(--black-600);
|
|
17787
|
-
}
|
|
17788
|
-
body.theme-highcontrast .s-navigation .s-navigation--item:hover,
|
|
17789
|
-
body.theme-highcontrast .s-navigation .s-navigation--item:active {
|
|
17790
|
-
background: var(--black-600);
|
|
17791
|
-
color: var(--black-100);
|
|
17792
|
-
}
|
|
17793
|
-
.s-navigation .s-navigation--item:focus:not(:focus-visible) {
|
|
17794
|
-
color: inherit;
|
|
17795
|
-
outline: none;
|
|
17796
|
-
box-shadow: none;
|
|
17797
|
-
}
|
|
17798
|
-
.s-navigation .s-navigation--item:focus-visible {
|
|
17799
|
-
color: inherit;
|
|
17800
|
-
outline: none;
|
|
17801
|
-
box-shadow: 0 0 0 4px var(--focus-ring-muted);
|
|
17802
|
-
}
|
|
17803
|
-
.s-navigation .s-navigation--item.is-selected {
|
|
17804
|
-
background: var(--theme-primary-color);
|
|
17805
|
-
color: var(--white);
|
|
17806
|
-
}
|
|
17807
|
-
body.theme-highcontrast .s-navigation .s-navigation--item.is-selected {
|
|
17808
|
-
text-decoration: none;
|
|
17809
|
-
}
|
|
17810
|
-
.s-navigation .s-navigation--item.is-selected:hover,
|
|
17811
|
-
.s-navigation .s-navigation--item.is-selected:active {
|
|
17812
|
-
background: var(--theme-primary-600);
|
|
17813
|
-
color: var(--white);
|
|
17814
|
-
}
|
|
17815
|
-
.s-navigation .s-navigation--item.s-navigation--item__dropdown {
|
|
17816
|
-
padding-right: 2em;
|
|
17817
|
-
}
|
|
17818
|
-
.s-navigation .s-navigation--item.s-navigation--item__dropdown:after {
|
|
17819
|
-
content: "";
|
|
17820
|
-
position: absolute;
|
|
17821
|
-
z-index: 30;
|
|
17822
|
-
top: calc(50% - 2px);
|
|
17823
|
-
right: 0.9em;
|
|
17824
|
-
border-style: solid;
|
|
17825
|
-
border-width: 4px;
|
|
17826
|
-
border-top-width: 4px;
|
|
17827
|
-
border-bottom-width: 0;
|
|
17828
|
-
border-color: currentColor transparent;
|
|
17829
|
-
pointer-events: none;
|
|
17830
|
-
}
|
|
17831
|
-
.s-navigation.s-navigation__scroll {
|
|
17832
|
-
overflow-x: auto;
|
|
17833
|
-
flex-wrap: nowrap;
|
|
17834
|
-
scrollbar-color: var(--scrollbar) transparent;
|
|
17835
|
-
}
|
|
17836
|
-
.s-navigation.s-navigation__scroll::-webkit-scrollbar {
|
|
17837
|
-
width: 10px;
|
|
17838
|
-
height: 10px;
|
|
17839
|
-
background-color: transparent;
|
|
17840
|
-
}
|
|
17841
|
-
.s-navigation.s-navigation__scroll::-webkit-scrollbar-track {
|
|
17842
|
-
border-radius: 10px;
|
|
17843
|
-
background-color: transparent;
|
|
17844
|
-
}
|
|
17845
|
-
.s-navigation.s-navigation__scroll::-webkit-scrollbar-thumb {
|
|
17846
|
-
border-radius: 10px;
|
|
17847
|
-
background-color: var(--scrollbar);
|
|
17848
|
-
}
|
|
17849
|
-
.s-navigation.s-navigation__scroll::-webkit-scrollbar-corner {
|
|
17850
|
-
background-color: transparent;
|
|
17851
|
-
border-color: transparent;
|
|
17852
|
-
}
|
|
17853
|
-
.s-navigation.s-navigation__vertical {
|
|
17854
|
-
flex-direction: column;
|
|
17855
|
-
padding: 0;
|
|
17856
|
-
margin: 0;
|
|
17857
|
-
}
|
|
17858
|
-
.s-navigation.s-navigation__vertical .s-navigation--item {
|
|
17859
|
-
margin: 0;
|
|
17860
|
-
white-space: normal;
|
|
17861
|
-
}
|
|
17862
|
-
.s-navigation .s-navigation--title {
|
|
17863
|
-
font-size: 11px;
|
|
17864
|
-
font-weight: bold;
|
|
17865
|
-
margin-top: 16px;
|
|
17866
|
-
padding: 6px 12px;
|
|
17867
|
-
text-transform: uppercase;
|
|
17868
|
-
}
|
|
17869
|
-
.s-navigation .s-navigation--title:first-child {
|
|
17870
|
-
margin-top: 0;
|
|
17871
|
-
}
|
|
17872
|
-
.s-navigation.s-navigation__muted .s-navigation--item.is-selected {
|
|
17873
|
-
background: var(--black-050);
|
|
17874
|
-
color: var(--black-800);
|
|
17875
|
-
}
|
|
17876
|
-
body.theme-highcontrast .s-navigation.s-navigation__muted .s-navigation--item.is-selected {
|
|
17877
|
-
background: var(--black-800);
|
|
17878
|
-
color: var(--black-050);
|
|
17879
|
-
}
|
|
17880
|
-
.s-navigation.s-navigation__sm .s-navigation--item {
|
|
17881
|
-
padding: 4px 12px;
|
|
17882
|
-
font-size: 12px;
|
|
17883
|
-
}
|
|
17884
|
-
.s-navigation.s-navigation__sm .s-navigation--item.s-navigation--item__dropdown {
|
|
17885
|
-
padding-right: 2em;
|
|
17886
|
-
}
|
|
17887
18106
|
.s-notice {
|
|
17888
18107
|
padding: 16px;
|
|
17889
18108
|
border: 1px solid transparent;
|
|
@@ -18103,9 +18322,9 @@ body.theme-highcontrast .s-notice__danger {
|
|
|
18103
18322
|
text-decoration: none;
|
|
18104
18323
|
vertical-align: middle;
|
|
18105
18324
|
white-space: nowrap;
|
|
18106
|
-
border-color:
|
|
18107
|
-
background-color: var(--
|
|
18108
|
-
color: var(--
|
|
18325
|
+
border-color: var(--theme-tag-border-color);
|
|
18326
|
+
background-color: var(--theme-tag-background-color);
|
|
18327
|
+
color: var(--theme-tag-color);
|
|
18109
18328
|
}
|
|
18110
18329
|
body.theme-highcontrast .s-tag {
|
|
18111
18330
|
border-color: currentColor;
|
|
@@ -18115,8 +18334,8 @@ body.theme-highcontrast .s-tag {
|
|
|
18115
18334
|
background-color: transparent;
|
|
18116
18335
|
}
|
|
18117
18336
|
.s-tag .s-tag--dismiss:hover {
|
|
18118
|
-
color:
|
|
18119
|
-
background-color: var(--
|
|
18337
|
+
color: var(--theme-tag-background-color);
|
|
18338
|
+
background-color: var(--theme-tag-color);
|
|
18120
18339
|
}
|
|
18121
18340
|
body.theme-highcontrast .s-tag .s-tag--dismiss:hover {
|
|
18122
18341
|
color: var(--white);
|
|
@@ -18126,8 +18345,8 @@ body.theme-highcontrast .s-tag {
|
|
|
18126
18345
|
}
|
|
18127
18346
|
.s-tag.is-selected {
|
|
18128
18347
|
border-color: transparent;
|
|
18129
|
-
background-color: var(--
|
|
18130
|
-
color: var(--
|
|
18348
|
+
background-color: var(--theme-secondary-200);
|
|
18349
|
+
color: var(--theme-secondary-900);
|
|
18131
18350
|
}
|
|
18132
18351
|
body.theme-highcontrast .s-tag.is-selected {
|
|
18133
18352
|
border-color: currentColor;
|
|
@@ -18158,9 +18377,9 @@ body.theme-highcontrast .s-tag.is-selected {
|
|
|
18158
18377
|
a.s-tag:not(.is-selected):hover,
|
|
18159
18378
|
a.s-tag:not(.is-selected):focus,
|
|
18160
18379
|
a.s-tag:not(.is-selected):active {
|
|
18161
|
-
border-color:
|
|
18162
|
-
background-color: var(--
|
|
18163
|
-
color: var(--
|
|
18380
|
+
border-color: var(--theme-tag-hover-border-color);
|
|
18381
|
+
background-color: var(--theme-tag-hover-background-color);
|
|
18382
|
+
color: var(--theme-tag-hover-color);
|
|
18164
18383
|
}
|
|
18165
18384
|
body.theme-highcontrast a.s-tag:not(.is-selected):hover,
|
|
18166
18385
|
body.theme-highcontrast a.s-tag:not(.is-selected):focus,
|
|
@@ -18207,7 +18426,7 @@ body.theme-highcontrast .s-tag__required {
|
|
|
18207
18426
|
background-color: transparent;
|
|
18208
18427
|
}
|
|
18209
18428
|
.s-tag__required .s-tag--dismiss:hover {
|
|
18210
|
-
color:
|
|
18429
|
+
color: var(--black-075);
|
|
18211
18430
|
background-color: var(--black-700);
|
|
18212
18431
|
}
|
|
18213
18432
|
body.theme-highcontrast .s-tag__required .s-tag--dismiss:hover {
|
|
@@ -18234,9 +18453,9 @@ body.theme-highcontrast a.s-tag__required:not(.is-selected):active {
|
|
|
18234
18453
|
border-color: currentColor;
|
|
18235
18454
|
}
|
|
18236
18455
|
.s-tag__moderator {
|
|
18237
|
-
border-color: var(--red-
|
|
18456
|
+
border-color: var(--red-200);
|
|
18238
18457
|
background-color: var(--red-050);
|
|
18239
|
-
color: var(--red-
|
|
18458
|
+
color: var(--red-800);
|
|
18240
18459
|
}
|
|
18241
18460
|
body.theme-highcontrast .s-tag__moderator {
|
|
18242
18461
|
border-color: currentColor;
|
|
@@ -18246,8 +18465,8 @@ body.theme-highcontrast .s-tag__moderator {
|
|
|
18246
18465
|
background-color: transparent;
|
|
18247
18466
|
}
|
|
18248
18467
|
.s-tag__moderator .s-tag--dismiss:hover {
|
|
18249
|
-
color:
|
|
18250
|
-
background-color: var(--red-
|
|
18468
|
+
color: var(--red-050);
|
|
18469
|
+
background-color: var(--red-800);
|
|
18251
18470
|
}
|
|
18252
18471
|
body.theme-highcontrast .s-tag__moderator .s-tag--dismiss:hover {
|
|
18253
18472
|
color: var(--white);
|
|
@@ -18263,9 +18482,9 @@ body.theme-highcontrast .s-tag__moderator.is-selected {
|
|
|
18263
18482
|
a.s-tag__moderator:not(.is-selected):hover,
|
|
18264
18483
|
a.s-tag__moderator:not(.is-selected):focus,
|
|
18265
18484
|
a.s-tag__moderator:not(.is-selected):active {
|
|
18266
|
-
border-color: var(--red-
|
|
18485
|
+
border-color: var(--red-300);
|
|
18267
18486
|
background-color: var(--red-100);
|
|
18268
|
-
color: var(--red-
|
|
18487
|
+
color: var(--red-900);
|
|
18269
18488
|
}
|
|
18270
18489
|
body.theme-highcontrast a.s-tag__moderator:not(.is-selected):hover,
|
|
18271
18490
|
body.theme-highcontrast a.s-tag__moderator:not(.is-selected):focus,
|
|
@@ -18285,7 +18504,7 @@ body.theme-highcontrast .s-tag__muted {
|
|
|
18285
18504
|
background-color: transparent;
|
|
18286
18505
|
}
|
|
18287
18506
|
.s-tag__muted .s-tag--dismiss:hover {
|
|
18288
|
-
color:
|
|
18507
|
+
color: var(--black-075);
|
|
18289
18508
|
background-color: var(--black-700);
|
|
18290
18509
|
}
|
|
18291
18510
|
body.theme-highcontrast .s-tag__muted .s-tag--dismiss:hover {
|
|
@@ -18311,45 +18530,6 @@ body.theme-highcontrast a.s-tag__muted:not(.is-selected):focus,
|
|
|
18311
18530
|
body.theme-highcontrast a.s-tag__muted:not(.is-selected):active {
|
|
18312
18531
|
border-color: currentColor;
|
|
18313
18532
|
}
|
|
18314
|
-
.s-tag__themed {
|
|
18315
|
-
border-color: var(--theme-primary-300);
|
|
18316
|
-
background-color: var(--theme-primary-050);
|
|
18317
|
-
color: var(--theme-primary-700);
|
|
18318
|
-
}
|
|
18319
|
-
body.theme-highcontrast .s-tag__themed {
|
|
18320
|
-
border-color: currentColor;
|
|
18321
|
-
}
|
|
18322
|
-
.s-tag__themed .s-tag--dismiss {
|
|
18323
|
-
color: inherit;
|
|
18324
|
-
background-color: transparent;
|
|
18325
|
-
}
|
|
18326
|
-
.s-tag__themed .s-tag--dismiss:hover {
|
|
18327
|
-
color: hsl(0, 0%, 100%);
|
|
18328
|
-
background-color: var(--theme-primary-700);
|
|
18329
|
-
}
|
|
18330
|
-
body.theme-highcontrast .s-tag__themed .s-tag--dismiss:hover {
|
|
18331
|
-
color: var(--white);
|
|
18332
|
-
}
|
|
18333
|
-
.s-tag__themed.is-selected {
|
|
18334
|
-
border-color: transparent;
|
|
18335
|
-
background-color: var(--theme-primary-200);
|
|
18336
|
-
color: var(--theme-primary-900);
|
|
18337
|
-
}
|
|
18338
|
-
body.theme-highcontrast .s-tag__themed.is-selected {
|
|
18339
|
-
border-color: currentColor;
|
|
18340
|
-
}
|
|
18341
|
-
a.s-tag__themed:not(.is-selected):hover,
|
|
18342
|
-
a.s-tag__themed:not(.is-selected):focus,
|
|
18343
|
-
a.s-tag__themed:not(.is-selected):active {
|
|
18344
|
-
border-color: var(--theme-primary-400);
|
|
18345
|
-
background-color: var(--theme-primary-100);
|
|
18346
|
-
color: var(--theme-primary-900);
|
|
18347
|
-
}
|
|
18348
|
-
body.theme-highcontrast a.s-tag__themed:not(.is-selected):hover,
|
|
18349
|
-
body.theme-highcontrast a.s-tag__themed:not(.is-selected):focus,
|
|
18350
|
-
body.theme-highcontrast a.s-tag__themed:not(.is-selected):active {
|
|
18351
|
-
border-color: currentColor;
|
|
18352
|
-
}
|
|
18353
18533
|
.s-pagination {
|
|
18354
18534
|
display: flex;
|
|
18355
18535
|
flex-wrap: wrap;
|