@stackoverflow/stacks 1.7.1 → 1.8.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.
@@ -391,6 +391,11 @@ template {
391
391
  [hidden] {
392
392
  display: none;
393
393
  }
394
+ fieldset {
395
+ border: 0;
396
+ min-width: 0;
397
+ padding: 0;
398
+ }
394
399
  .svg-icon,
395
400
  .svg-spot {
396
401
  vertical-align: bottom;
@@ -399,6 +404,13 @@ template {
399
404
  .svg-spot:not(.native) * {
400
405
  fill: currentColor;
401
406
  }
407
+ .is-disabled,
408
+ .is-readonly,
409
+ .has-success,
410
+ .has-error,
411
+ .has-warning {
412
+ position: relative;
413
+ }
402
414
  .s-activity-indicator {
403
415
  --_ai-focus-ring: var(--focus-ring);
404
416
  --_ai-bg: var(--theme-secondary-400);
@@ -905,6 +917,7 @@ body.theme-highcontrast .s-btn {
905
917
  --_bu-bc-selected: var(--_bu-bc);
906
918
  --_bu-badge-o: 0.8;
907
919
  }
920
+ fieldset[disabled] .s-btn,
908
921
  .s-btn[disabled],
909
922
  .s-btn[aria-disabled="true"] {
910
923
  --_bu-bs: none !important;
@@ -1076,6 +1089,11 @@ body.theme-highcontrast .s-btn.s-btn__link {
1076
1089
  --_li-fc-hover: var(--black-600);
1077
1090
  --_li-fc-visited: var(--black-700);
1078
1091
  }
1092
+ fieldset[disabled] .s-btn.s-btn__link {
1093
+ box-shadow: none !important;
1094
+ opacity: var(--_o-disabled-static);
1095
+ pointer-events: none;
1096
+ }
1079
1097
  .s-btn.s-btn__link:active,
1080
1098
  .s-btn.s-btn__link:hover {
1081
1099
  color: var(--_li-fc-hover);
@@ -1130,16 +1148,16 @@ button.s-btn.s-btn__link:focus {
1130
1148
  transition: opacity 200ms var(--te-smooth);
1131
1149
  }
1132
1150
  .s-btn.s-btn__xs {
1133
- --_bu-dropdown-bw: calc(var(--su-static4) - var(--su-static1));
1134
1151
  --_bu-fs: var(--fs-fine);
1152
+ --_bu-dropdown-bw: calc(var(--su-static4) - var(--su-static1));
1135
1153
  --_bu-p: 0.6em;
1136
1154
  }
1137
1155
  .s-btn.s-btn__sm {
1138
1156
  --_bu-fs: var(--fs-caption);
1139
1157
  }
1140
1158
  .s-btn.s-btn__md {
1141
- --_bu-br: calc(var(--br-sm) + var(--su-static1));
1142
1159
  --_bu-fs: var(--fs-body3);
1160
+ --_bu-br: calc(var(--br-sm) + var(--su-static1));
1143
1161
  --_bu-p: 0.7em;
1144
1162
  }
1145
1163
  body.theme-highcontrast .s-btn.s-btn__danger,
@@ -1622,6 +1640,158 @@ a.s-card {
1622
1640
  .s-card p:last-of-type {
1623
1641
  margin-bottom: 0;
1624
1642
  }
1643
+ .s-checkbox,
1644
+ .s-radio {
1645
+ --_ch-baw: var(--su-static1);
1646
+ --_ch-bc: var(--bc-darker);
1647
+ --_ch-bc-focus: var(--theme-secondary-300);
1648
+ --_ch-bg: var(--white);
1649
+ --_ch-bg-image: unset;
1650
+ --_ch-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring);
1651
+ background-color: var(--_ch-bg);
1652
+ border: var(--_ch-baw) solid var(--_ch-bc);
1653
+ appearance: none;
1654
+ cursor: pointer;
1655
+ font-size: inherit;
1656
+ height: 1em;
1657
+ margin: 0;
1658
+ outline: 0;
1659
+ vertical-align: middle;
1660
+ width: 1em;
1661
+ }
1662
+ fieldset[disabled] .s-checkbox,
1663
+ fieldset[disabled] .s-radio,
1664
+ .s-checkbox[disabled],
1665
+ .s-radio[disabled] {
1666
+ cursor: not-allowed;
1667
+ opacity: var(--_o-disabled-static);
1668
+ }
1669
+ .s-check-group .s-checkbox,
1670
+ .s-check-group .s-radio {
1671
+ margin-top: calc(var(--su2) + var(--su1));
1672
+ }
1673
+ input.s-checkbox,
1674
+ input.s-radio {
1675
+ flex-shrink: 0;
1676
+ }
1677
+ .s-checkbox:focus,
1678
+ .s-radio:focus {
1679
+ box-shadow: var(--_ch-bs-focus);
1680
+ }
1681
+ .s-checkbox {
1682
+ background-image: var(--_ch-bg-image);
1683
+ background-position: center center;
1684
+ background-repeat: no-repeat;
1685
+ background-size: contain;
1686
+ border-radius: var(--br-sm);
1687
+ }
1688
+ @media (prefers-color-scheme: dark) {
1689
+ body.theme-highcontrast.theme-system .s-checkbox:checked,
1690
+ body.theme-highcontrast.theme-system .s-checkbox:indeterminate {
1691
+ --_ch-bc: var(--blue-700) !important;
1692
+ --_ch-bc-focus: var(--_ch-bc);
1693
+ --_ch-bg: var(--blue-300);
1694
+ }
1695
+ }
1696
+ body.theme-highcontrast.theme-dark .s-checkbox:checked,
1697
+ body.theme-highcontrast.theme-dark .s-checkbox:indeterminate {
1698
+ --_ch-bc: var(--blue-700) !important;
1699
+ --_ch-bc-focus: var(--_ch-bc);
1700
+ --_ch-bg: var(--blue-300);
1701
+ }
1702
+ .s-checkbox:checked,
1703
+ .s-checkbox:indeterminate {
1704
+ --_ch-bc: var(--theme-secondary-400) !important;
1705
+ --_ch-bg: var(--theme-secondary-400);
1706
+ }
1707
+ .s-checkbox:checked:focus,
1708
+ .s-checkbox:indeterminate:focus {
1709
+ --_ch-bc-focus: var(--theme-secondary-400);
1710
+ }
1711
+ .s-checkbox:checked {
1712
+ --_ch-bg-image: url("data:image/svg+xml,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='%23fff'/%3E%3C/svg%3E");
1713
+ }
1714
+ .s-checkbox:indeterminate {
1715
+ --_ch-bg-image: url("data:image/svg+xml,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5 h7 v2 h-7 z' fill='%23fff'/%3E%3C/svg%3E");
1716
+ }
1717
+ .s-checkbox:focus {
1718
+ border-color: var(--_ch-bc-focus);
1719
+ }
1720
+ .s-radio {
1721
+ border-radius: var(--br-circle);
1722
+ }
1723
+ @media (prefers-color-scheme: dark) {
1724
+ body.theme-highcontrast.theme-system .s-radio:checked {
1725
+ --_ch-bc: var(--blue-300);
1726
+ outline: var(--su-static1) solid var(--black);
1727
+ }
1728
+ }
1729
+ body.theme-highcontrast.theme-dark .s-radio:checked {
1730
+ --_ch-bc: var(--blue-300);
1731
+ outline: var(--su-static1) solid var(--black);
1732
+ }
1733
+ @media (prefers-color-scheme: dark) {
1734
+ body.theme-system .s-radio:checked {
1735
+ --_ch-bg: var(--black);
1736
+ }
1737
+ }
1738
+ body.theme-dark .s-radio:checked,
1739
+ .theme-dark__forced .s-radio:checked,
1740
+ body.theme-system .theme-dark__forced .s-radio:checked {
1741
+ --_ch-bg: var(--black);
1742
+ }
1743
+ .s-radio:checked {
1744
+ --_ch-baw: 0.30769231em;
1745
+ --_ch-bc: var(--theme-secondary-400);
1746
+ --_ch-bg: var(--white);
1747
+ }
1748
+ .has-error .s-checkbox,
1749
+ .has-error .s-radio:not(:checked),
1750
+ .has-success .s-checkbox,
1751
+ .has-success .s-radio:not(:checked),
1752
+ .has-warning .s-checkbox,
1753
+ .has-warning .s-radio:not(:checked) {
1754
+ --_ch-bc-focus: var(--_ch-bc);
1755
+ }
1756
+ .has-error .s-checkbox,
1757
+ .has-error .s-radio:not(:checked) {
1758
+ --_ch-bc: var(--red-400);
1759
+ --_ch-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring-error);
1760
+ }
1761
+ .has-success .s-checkbox,
1762
+ .has-success .s-radio:not(:checked) {
1763
+ --_ch-bc: var(--green-400);
1764
+ --_ch-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring-success);
1765
+ }
1766
+ .has-warning .s-checkbox,
1767
+ .has-warning .s-radio:not(:checked) {
1768
+ --_ch-bc: var(--yellow-600);
1769
+ --_ch-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring-warning);
1770
+ }
1771
+ .s-check-control {
1772
+ --_cc-ai: center;
1773
+ align-items: var(--_cc-ai);
1774
+ display: flex;
1775
+ gap: var(--su8);
1776
+ }
1777
+ .s-check-group .s-check-control {
1778
+ --_cc-ai: flex-start;
1779
+ }
1780
+ .s-check-control .s-label {
1781
+ font-weight: normal;
1782
+ }
1783
+ .s-check-group {
1784
+ --_cg-fd: column;
1785
+ flex-direction: var(--_cg-fd);
1786
+ display: flex;
1787
+ gap: var(--su8);
1788
+ }
1789
+ .s-check-group.s-check-group__horizontal {
1790
+ --_cg-fd: row;
1791
+ }
1792
+ .s-check-group legend.s-label {
1793
+ margin-bottom: var(--su8);
1794
+ }
1625
1795
  .s-code-block {
1626
1796
  --_cb-line-numbers-bg: var(--black-050);
1627
1797
  }
@@ -1777,6 +1947,14 @@ pre.s-code-block::-webkit-scrollbar-corner {
1777
1947
  background-color: transparent;
1778
1948
  border-color: transparent;
1779
1949
  }
1950
+ .s-description {
1951
+ color: var(--fc-medium);
1952
+ font-size: var(--fs-caption);
1953
+ padding: 0 var(--su2);
1954
+ }
1955
+ .is-disabled .s-description {
1956
+ opacity: var(--_o-disabled-static);
1957
+ }
1780
1958
  .s-expandable {
1781
1959
  --_ex-after-h: 10px;
1782
1960
  --_ex-after-hmx: 0;
@@ -1841,388 +2019,219 @@ pre.s-code-block::-webkit-scrollbar-corner {
1841
2019
  }
1842
2020
  .s-input,
1843
2021
  .s-textarea {
2022
+ --_in-bc: var(--bc-darker);
2023
+ --_in-bc-focus: var(--theme-secondary-300);
2024
+ --_in-bg: var(--white);
2025
+ --_in-br: var(--br-sm);
2026
+ --_in-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring);
2027
+ --_in-c: unset;
2028
+ --_in-fc: var(--fc-dark);
2029
+ --_in-fc-focus: var(--black);
2030
+ --_in-fs: var(--fs-body1);
2031
+ --_in-o: unset;
2032
+ --_in-px: 0.7em;
2033
+ --_in-py: 0.6em;
2034
+ --_in-placeholder-fc: var(--black-200);
2035
+ scrollbar-color: var(--scrollbar) transparent;
2036
+ background-color: var(--_in-bg);
2037
+ border: var(--su-static1) solid var(--_in-bc);
2038
+ border-radius: var(--_in-br);
2039
+ color: var(--_in-fc);
2040
+ cursor: var(--_in-c);
2041
+ font-size: var(--_in-fs);
2042
+ opacity: var(--_in-o);
2043
+ padding: var(--_in-py) var(--_in-px) var(--_in-py) var(--_in-pl, var(--_in-px));
1844
2044
  -webkit-appearance: none;
1845
- width: 100%;
1846
- margin: 0;
1847
- padding: 0.6em 0.7em;
1848
- border: 1px solid var(--bc-darker);
1849
- border-radius: var(--br-sm);
1850
- background-color: var(--white);
1851
- color: var(--fc-dark);
1852
- font-size: var(--fs-body1);
1853
2045
  font-family: inherit;
1854
- scrollbar-color: var(--scrollbar) transparent;
2046
+ margin: 0;
2047
+ width: 100%;
1855
2048
  }
1856
2049
  @supports (-webkit-overflow-scrolling: touch) {
1857
2050
  .s-input,
1858
2051
  .s-textarea {
1859
- font-size: 16px;
1860
- padding: 0.36em 0.55em;
2052
+ --_in-fs: var(--su-static16);
2053
+ --_in-px: 0.55em;
2054
+ --_in-py: 0.36em;
1861
2055
  }
1862
2056
  .s-input::-webkit-input-placeholder,
1863
2057
  .s-textarea::-webkit-input-placeholder {
1864
2058
  line-height: normal !important;
1865
2059
  }
1866
2060
  }
1867
- .s-input::-webkit-input-placeholder,
1868
- .s-textarea::-webkit-input-placeholder {
1869
- color: var(--black-200);
1870
- }
1871
- body.theme-highcontrast .s-input::-webkit-input-placeholder,
1872
- body.theme-highcontrast .s-textarea::-webkit-input-placeholder {
1873
- color: var(--black-400);
1874
- }
1875
- .s-input::placeholder,
1876
- .s-textarea::placeholder {
1877
- color: var(--black-200);
1878
- opacity: 1;
1879
- }
1880
- body.theme-highcontrast .s-input::placeholder,
1881
- body.theme-highcontrast .s-textarea::placeholder {
1882
- color: var(--black-400);
1883
- }
1884
- .s-input::-webkit-scrollbar,
1885
- .s-textarea::-webkit-scrollbar {
1886
- width: calc(var(--su-static12) - var(--su-static2));
1887
- height: calc(var(--su-static12) - var(--su-static2));
1888
- background-color: transparent;
1889
- }
1890
- .s-input::-webkit-scrollbar-track,
1891
- .s-textarea::-webkit-scrollbar-track {
1892
- border-radius: calc(var(--su-static12) - var(--su-static2));
1893
- background-color: transparent;
1894
- }
1895
- .s-input::-webkit-scrollbar-thumb,
1896
- .s-textarea::-webkit-scrollbar-thumb {
1897
- border-radius: calc(var(--su-static12) - var(--su-static2));
1898
- background-color: var(--scrollbar);
1899
- }
1900
- .s-input::-webkit-scrollbar-corner,
1901
- .s-textarea::-webkit-scrollbar-corner {
1902
- background-color: transparent;
1903
- border-color: transparent;
1904
- }
1905
- .s-input::-webkit-contacts-auto-fill-button,
1906
- .s-textarea::-webkit-contacts-auto-fill-button {
1907
- background-color: var(--black);
1908
- }
1909
- .s-input:-webkit-autofill,
1910
- .s-textarea:-webkit-autofill {
1911
- border-color: var(--blue-300);
1912
- -webkit-text-fill-color: var(--black);
1913
- -webkit-box-shadow: 0 0 0 1000px var(--theme-secondary-050) inset;
1914
- transition: background-color 0s 50000s;
1915
- }
1916
- .s-input:-webkit-autofill:focus,
1917
- .s-textarea:-webkit-autofill:focus {
1918
- border-color: var(--blue-300);
1919
- -webkit-box-shadow: 0 0 0 1000px var(--blue-050) inset, 0 0 0 var(--su-static4) var(--focus-ring);
1920
- }
1921
- .s-input.s-input__search,
1922
- .s-input.s-input__creditcard {
1923
- padding-left: var(--su-static32);
1924
- }
1925
- fieldset {
1926
- min-width: 0;
1927
- padding: 0;
1928
- border: 0;
1929
- }
1930
- fieldset[disabled] a,
1931
- fieldset[disabled] .s-btn,
1932
- fieldset[disabled] .s-link {
1933
- box-shadow: none !important;
1934
- opacity: var(--_o-disabled-static);
1935
- pointer-events: none;
1936
- }
1937
- fieldset[disabled] .s-checkbox,
1938
- fieldset[disabled] .s-input-message,
1939
- fieldset[disabled] .s-radio,
1940
- fieldset[disabled] .s-toggle-switch,
1941
- fieldset[disabled] .s-toggle-switch label {
1942
- cursor: not-allowed;
1943
- opacity: var(--_o-disabled-static);
2061
+ body.theme-highcontrast .s-input,
2062
+ body.theme-highcontrast .s-textarea {
2063
+ --_in-bc: var(--black);
2064
+ --_in-placeholder-fc: var(--black-400);
1944
2065
  }
1945
2066
  fieldset[disabled] .s-input,
1946
2067
  fieldset[disabled] .s-textarea,
1947
- fieldset[disabled] .s-select > select {
1948
- cursor: not-allowed;
1949
- opacity: var(--_o-disabled-static);
1950
- }
1951
- .s-description {
1952
- padding: 0 var(--su2);
1953
- color: var(--fc-medium);
1954
- font-size: var(--fs-caption);
1955
- }
1956
- .s-input-fill {
1957
- padding: 0.6em 0.7em;
1958
- border: 1px solid var(--bc-darker);
1959
- border-right-width: 0;
1960
- border-left-width: 0;
1961
- background-color: var(--black-050);
1962
- color: var(--fc-medium);
1963
- font-family: inherit;
1964
- white-space: nowrap;
1965
- line-height: var(--lh-sm);
1966
- }
1967
- .s-input-fill.s-input-fill__clear {
1968
- border-color: transparent;
1969
- background-color: transparent;
2068
+ .s-input[disabled],
2069
+ .s-textarea[disabled],
2070
+ .s-input[readonly],
2071
+ .s-textarea[readonly],
2072
+ .is-readonly .s-input,
2073
+ .is-readonly .s-textarea {
2074
+ --_in-c: not-allowed;
1970
2075
  }
1971
- .s-input-fill.order-first {
1972
- border-left-width: 1px;
1973
- border-top-left-radius: var(--br-sm);
1974
- border-bottom-left-radius: var(--br-sm);
2076
+ fieldset[disabled] .s-input,
2077
+ fieldset[disabled] .s-textarea,
2078
+ .s-input[disabled],
2079
+ .s-textarea[disabled] {
2080
+ --_in-o: var(--_o-disabled-static);
1975
2081
  }
1976
- .s-input-fill.order-last {
1977
- border-right-width: 1px;
1978
- border-top-right-radius: var(--br-sm);
1979
- border-bottom-right-radius: var(--br-sm);
2082
+ .s-input[readonly],
2083
+ .s-textarea[readonly],
2084
+ .is-readonly .s-input,
2085
+ .is-readonly .s-textarea {
2086
+ --_in-bg: var(--black-050);
2087
+ --_in-bc: var(--bc-light);
2088
+ --_in-fc: var(--black-200);
2089
+ --_in-fc-focus: var(--_in-fc);
1980
2090
  }
1981
- .s-select {
1982
- position: relative;
1983
- color: var(--fc-dark);
2091
+ body.theme-highcontrast .s-input[readonly],
2092
+ body.theme-highcontrast .s-textarea[readonly],
2093
+ body.theme-highcontrast .is-readonly .s-input,
2094
+ body.theme-highcontrast .is-readonly .s-textarea {
2095
+ --_in-fc: var(--fc-light);
1984
2096
  }
1985
- .s-select:before,
1986
- .s-select:after {
1987
- content: "";
1988
- position: absolute;
1989
- z-index: var(--zi-selected);
1990
- right: 13px;
1991
- border-color: currentColor transparent;
1992
- border-style: solid;
1993
- border-width: 4px;
1994
- pointer-events: none;
2097
+ .has-error .s-input,
2098
+ .has-error .s-textarea,
2099
+ .has-success .s-input,
2100
+ .has-success .s-textarea,
2101
+ .has-warning .s-input,
2102
+ .has-warning .s-textarea {
2103
+ --_in-bc-focus: var(--_in-bc);
1995
2104
  }
1996
- .s-select:before {
1997
- top: calc(50% - 5px);
1998
- border-top-width: 0;
1999
- border-bottom-width: 4px;
2105
+ .has-error .s-input,
2106
+ .has-error .s-textarea {
2107
+ --_in-bc: var(--red-400);
2108
+ --_in-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring-error);
2000
2109
  }
2001
- .s-select:after {
2002
- top: calc(50% + 1px);
2003
- border-top-width: 4px;
2004
- border-bottom-width: 0;
2110
+ body.theme-highcontrast .has-error .s-input,
2111
+ body.theme-highcontrast .has-error .s-textarea {
2112
+ --_in-bc: var(--red-400);
2005
2113
  }
2006
- .s-select > select {
2007
- -webkit-appearance: none;
2008
- -moz-appearance: none;
2009
- appearance: none;
2010
- position: relative;
2011
- width: 100%;
2012
- height: 100%;
2013
- padding: 0.6em 0.7em;
2014
- padding-right: var(--su32);
2015
- border: 1px solid var(--bc-darker);
2016
- border-radius: var(--br-sm);
2017
- background-color: var(--white);
2018
- outline: 0;
2019
- font-size: var(--fs-body1);
2020
- font-family: inherit;
2021
- color: var(--black);
2022
- line-height: var(--lh-sm);
2023
- }
2024
- .s-select > select::-moz-focus-inner {
2025
- outline: none !important;
2114
+ .has-success .s-input,
2115
+ .has-success .s-textarea {
2116
+ --_in-bc: var(--green-400);
2117
+ --_in-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring-success);
2026
2118
  }
2027
- .s-select > select:-moz-focusring {
2028
- color: transparent;
2029
- text-shadow: 0 0 0 #000;
2119
+ body.theme-highcontrast .has-success .s-input,
2120
+ body.theme-highcontrast .has-success .s-textarea {
2121
+ --_in-bc: var(--green-400);
2030
2122
  }
2031
- .s-select > select::-ms-expand {
2032
- display: none;
2123
+ .has-warning .s-input,
2124
+ .has-warning .s-textarea {
2125
+ --_in-bc: var(--yellow-600);
2126
+ --_in-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring-warning);
2127
+ }
2128
+ body.theme-highcontrast .has-warning .s-input,
2129
+ body.theme-highcontrast .has-warning .s-textarea {
2130
+ --_in-bc: var(--yellow-600);
2131
+ }
2132
+ .s-input.s-input__sm,
2133
+ .s-input.s-textarea__sm,
2134
+ .s-textarea.s-input__sm,
2135
+ .s-textarea.s-textarea__sm {
2136
+ --_in-fs: var(--fs-caption);
2137
+ }
2138
+ .s-input.s-input__md,
2139
+ .s-input.s-textarea__md,
2140
+ .s-textarea.s-input__md,
2141
+ .s-textarea.s-textarea__md {
2142
+ --_in-fs: var(--fs-body3);
2143
+ --_in-br: calc(var(--br-sm) + var(--su-static1));
2033
2144
  }
2034
2145
  @supports (-webkit-overflow-scrolling: touch) {
2035
- .s-select > select {
2036
- font-size: 16px;
2037
- padding: 0.4em 0.55em;
2038
- }
2039
- }
2040
- .s-select > select::-webkit-contacts-auto-fill-button {
2041
- background-color: var(--black);
2146
+ .s-input.s-input__md,
2147
+ .s-input.s-textarea__md,
2148
+ .s-textarea.s-input__md,
2149
+ .s-textarea.s-textarea__md {
2150
+ --_in-fs: 17px;
2151
+ --_in-py: 0.4em;
2152
+ }
2153
+ }
2154
+ .s-input.s-input__lg,
2155
+ .s-input.s-textarea__lg,
2156
+ .s-textarea.s-input__lg,
2157
+ .s-textarea.s-textarea__lg {
2158
+ --_in-fs: var(--fs-title);
2159
+ --_in-br: calc(var(--br-sm) + var(--su-static1));
2160
+ --_in-px: 0.6em;
2161
+ --_in-py: 0.45em;
2162
+ }
2163
+ .s-input.s-input__xl,
2164
+ .s-input.s-textarea__xl,
2165
+ .s-textarea.s-input__xl,
2166
+ .s-textarea.s-textarea__xl {
2167
+ --_in-fs: var(--fs-headline1);
2168
+ --_in-br: var(--br-md);
2169
+ --_in-px: 0.5em;
2170
+ --_in-py: 0.4em;
2042
2171
  }
2043
- .s-select > select:-webkit-autofill {
2044
- border-color: var(--blue-300);
2045
- -webkit-text-fill-color: var(--black);
2172
+ .s-input:-webkit-autofill,
2173
+ .s-textarea:-webkit-autofill {
2046
2174
  -webkit-box-shadow: 0 0 0 1000px var(--theme-secondary-050) inset;
2175
+ -webkit-text-fill-color: var(--black);
2176
+ border-color: var(--blue-300);
2047
2177
  transition: background-color 0s 50000s;
2048
2178
  }
2049
- .s-select > select:-webkit-autofill:focus {
2179
+ .s-input:-webkit-autofill:focus,
2180
+ .s-textarea:-webkit-autofill:focus {
2050
2181
  border-color: var(--blue-300);
2051
2182
  -webkit-box-shadow: 0 0 0 1000px var(--blue-050) inset, 0 0 0 var(--su-static4) var(--focus-ring);
2052
2183
  }
2053
- .s-check-control {
2054
- display: flex;
2055
- gap: var(--su8);
2056
- align-items: center;
2057
- }
2058
- .s-check-control .s-label {
2059
- font-weight: normal;
2060
- }
2061
- .s-check-group {
2062
- display: flex;
2063
- flex-direction: column;
2064
- gap: var(--su8);
2065
- }
2066
- .s-check-group.s-check-group__horizontal {
2067
- flex-direction: row;
2068
- }
2069
- .s-check-group legend.s-label {
2070
- margin-bottom: var(--su8);
2071
- }
2072
- .s-check-group .s-check-control {
2073
- align-items: flex-start;
2074
- }
2075
- .s-check-group .s-checkbox,
2076
- .s-check-group .s-radio {
2077
- margin-top: calc(var(--su2) + var(--su1));
2078
- }
2079
- @supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) {
2080
- .s-checkbox,
2081
- .s-radio {
2082
- -webkit-appearance: none;
2083
- -moz-appearance: none;
2084
- appearance: none;
2085
- margin: 0;
2086
- width: 1em;
2087
- height: 1em;
2088
- border: 1px solid var(--bc-darker);
2089
- background-color: var(--white);
2090
- outline: 0;
2091
- font-size: inherit;
2092
- vertical-align: middle;
2093
- cursor: pointer;
2094
- }
2095
- .s-checkbox::-ms-check,
2096
- .s-radio::-ms-check {
2097
- display: none;
2098
- }
2099
- }
2100
- input.s-checkbox,
2101
- input.s-radio {
2102
- flex-shrink: 0;
2103
- }
2104
- .s-checkbox[disabled],
2105
- .s-radio[disabled] {
2106
- opacity: var(--_o-disabled-static);
2107
- cursor: not-allowed;
2108
- }
2109
- @supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) {
2110
- .s-checkbox {
2111
- border-radius: var(--br-sm);
2112
- background-position: center center;
2113
- background-repeat: no-repeat;
2114
- background-size: contain;
2115
- }
2116
- .s-checkbox:checked,
2117
- .s-checkbox:indeterminate {
2118
- border-color: var(--theme-secondary-400) !important;
2119
- background-color: var(--theme-secondary-400);
2120
- }
2121
- @media (prefers-color-scheme: dark) {
2122
- body.theme-highcontrast.theme-system .s-checkbox:checked,
2123
- body.theme-highcontrast.theme-system .s-checkbox:indeterminate {
2124
- border-color: var(--blue-700) !important;
2125
- background-color: var(--blue-300);
2126
- }
2127
- }
2128
- body.theme-highcontrast.theme-dark .s-checkbox:checked,
2129
- body.theme-highcontrast.theme-dark .s-checkbox:indeterminate {
2130
- border-color: var(--blue-700) !important;
2131
- background-color: var(--blue-300);
2132
- }
2133
- .s-checkbox:checked:focus,
2134
- .s-checkbox:indeterminate:focus {
2135
- border-color: var(--theme-secondary-400);
2136
- }
2137
- .s-checkbox:checked {
2138
- background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3.41L8.59 2 4 6.59 2.41 5 1 6.41l3 3z' fill='%23fff'/%3E%3C/svg%3E");
2139
- }
2140
- .s-checkbox:indeterminate {
2141
- background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5 h7 v2 h-7 z' fill='%23fff'/%3E%3C/svg%3E");
2142
- }
2143
- .s-checkbox:focus {
2144
- border-color: var(--theme-secondary-300);
2145
- box-shadow: 0 0 0 var(--su-static4) var(--focus-ring);
2146
- }
2147
- }
2148
- @supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) {
2149
- .s-radio {
2150
- border-radius: var(--br-circle);
2151
- }
2152
- .s-radio:checked {
2153
- border-color: var(--theme-secondary-400);
2154
- border-width: 0.30769231em;
2155
- background-color: hsl(0, 0%, 100%);
2156
- }
2157
- @media (prefers-color-scheme: dark) {
2158
- body.theme-highcontrast.theme-system .s-radio:checked {
2159
- border-color: var(--blue-300);
2160
- outline: 1px solid var(--black);
2161
- }
2162
- }
2163
- body.theme-highcontrast.theme-dark .s-radio:checked {
2164
- border-color: var(--blue-300);
2165
- outline: 1px solid var(--black);
2166
- }
2167
- .s-radio:focus {
2168
- box-shadow: 0 0 0 var(--su-static4) var(--focus-ring);
2169
- }
2184
+ .s-input::-webkit-contacts-auto-fill-button,
2185
+ .s-textarea::-webkit-contacts-auto-fill-button {
2186
+ background-color: var(--black);
2170
2187
  }
2171
- .s-input:focus,
2172
- .s-input.has-focus,
2173
- .s-textarea:focus,
2174
- .s-select > select:focus {
2175
- border-color: var(--theme-secondary-300);
2176
- box-shadow: 0 0 0 var(--su-static4) var(--focus-ring);
2177
- color: var(--black);
2178
- outline: 0;
2188
+ .s-input::placeholder,
2189
+ .s-textarea::placeholder,
2190
+ .s-input::-webkit-input-placeholder,
2191
+ .s-textarea::-webkit-input-placeholder {
2192
+ color: var(--_in-placeholder-fc);
2179
2193
  }
2180
- body.theme-highcontrast .s-input:focus,
2181
- body.theme-highcontrast .s-input.has-focus,
2182
- body.theme-highcontrast .s-textarea:focus,
2183
- body.theme-highcontrast .s-select > select:focus {
2184
- border-color: var(--black);
2194
+ .s-input::placeholder,
2195
+ .s-textarea::placeholder {
2196
+ opacity: 1;
2185
2197
  }
2186
- .s-input:focus-within {
2187
- border-color: var(--theme-secondary-300);
2188
- box-shadow: 0 0 0 var(--su-static4) var(--focus-ring);
2189
- color: var(--black);
2190
- outline: 0;
2198
+ .s-input.s-input__creditcard,
2199
+ .s-input.s-textarea__creditcard,
2200
+ .s-textarea.s-input__creditcard,
2201
+ .s-textarea.s-textarea__creditcard,
2202
+ .s-input.s-input__search,
2203
+ .s-input.s-textarea__search,
2204
+ .s-textarea.s-input__search,
2205
+ .s-textarea.s-textarea__search {
2206
+ --_in-pl: var(--su-static32);
2191
2207
  }
2192
- body.theme-highcontrast .s-input:focus-within {
2193
- border-color: var(--black);
2208
+ .s-input:focus,
2209
+ .s-textarea:focus {
2210
+ border-color: var(--_in-bc-focus);
2211
+ box-shadow: var(--_in-bs-focus);
2212
+ color: var(--_in-fc-focus);
2213
+ outline: 0;
2194
2214
  }
2195
- .s-input[disabled],
2196
- .s-textarea[disabled],
2197
- .s-select > select[disabled] {
2198
- cursor: not-allowed;
2199
- opacity: var(--_o-disabled-static);
2215
+ .s-input::-webkit-scrollbar,
2216
+ .s-textarea::-webkit-scrollbar {
2217
+ width: calc(var(--su-static12) - var(--su-static2));
2218
+ height: calc(var(--su-static12) - var(--su-static2));
2219
+ background-color: transparent;
2200
2220
  }
2201
- .s-input[readonly],
2202
- .s-textarea[readonly],
2203
- .s-select > select[readonly],
2204
- .is-readonly .s-input,
2205
- .is-readonly .s-textarea,
2206
- .is-readonly .s-select > select {
2207
- border-color: var(--bc-light);
2208
- background-color: var(--black-050);
2209
- color: var(--black-200);
2210
- cursor: not-allowed;
2221
+ .s-input::-webkit-scrollbar-track,
2222
+ .s-textarea::-webkit-scrollbar-track {
2223
+ border-radius: calc(var(--su-static12) - var(--su-static2));
2224
+ background-color: transparent;
2211
2225
  }
2212
- body.theme-highcontrast .s-input[readonly],
2213
- body.theme-highcontrast .s-textarea[readonly],
2214
- body.theme-highcontrast .s-select > select[readonly],
2215
- body.theme-highcontrast .is-readonly .s-input,
2216
- body.theme-highcontrast .is-readonly .s-textarea,
2217
- body.theme-highcontrast .is-readonly .s-select > select {
2218
- color: var(--fc-light);
2226
+ .s-input::-webkit-scrollbar-thumb,
2227
+ .s-textarea::-webkit-scrollbar-thumb {
2228
+ border-radius: calc(var(--su-static12) - var(--su-static2));
2229
+ background-color: var(--scrollbar);
2219
2230
  }
2220
- .is-disabled,
2221
- .is-readonly,
2222
- .has-success,
2223
- .has-error,
2224
- .has-warning {
2225
- position: relative;
2231
+ .s-input::-webkit-scrollbar-corner,
2232
+ .s-textarea::-webkit-scrollbar-corner {
2233
+ background-color: transparent;
2234
+ border-color: transparent;
2226
2235
  }
2227
2236
  .is-disabled .s-input,
2228
2237
  .is-readonly .s-input,
@@ -2231,12 +2240,17 @@ body.theme-highcontrast .is-readonly .s-select > select {
2231
2240
  .has-warning .s-input {
2232
2241
  padding-right: var(--su32);
2233
2242
  }
2234
- .is-disabled .s-select .s-input-icon,
2235
- .is-readonly .s-select .s-input-icon,
2236
- .has-success .s-select .s-input-icon,
2237
- .has-error .s-select .s-input-icon,
2238
- .has-warning .s-select .s-input-icon {
2239
- right: var(--su32);
2243
+ .s-input:focus-within {
2244
+ border-color: var(--_in-bc-focus);
2245
+ box-shadow: var(--_in-bs-focus);
2246
+ color: var(--_in-fc-focus);
2247
+ outline: 0;
2248
+ }
2249
+ body.theme-highcontrast .s-input:focus-within {
2250
+ --_in-bc-focus: var(--black);
2251
+ }
2252
+ .s-input.s-input__md {
2253
+ --_in-py: 0.5em;
2240
2254
  }
2241
2255
  .is-disabled .s-textarea,
2242
2256
  .is-readonly .s-textarea,
@@ -2245,167 +2259,115 @@ body.theme-highcontrast .is-readonly .s-select > select {
2245
2259
  .has-warning .s-textarea {
2246
2260
  padding-right: var(--su48);
2247
2261
  }
2248
- .is-disabled .s-textarea ~ .s-input-icon,
2249
- .is-readonly .s-textarea ~ .s-input-icon,
2250
- .has-success .s-textarea ~ .s-input-icon,
2251
- .has-error .s-textarea ~ .s-input-icon,
2252
- .has-warning .s-textarea ~ .s-input-icon {
2253
- top: 1.5em;
2254
- right: 1.5em;
2255
- }
2256
- .is-disabled .s-input-message a,
2257
- .is-readonly .s-input-message a,
2258
- .has-success .s-input-message a,
2259
- .has-error .s-input-message a,
2260
- .has-warning .s-input-message a {
2261
- text-decoration: underline;
2262
- }
2263
- .has-warning .s-input,
2264
- .has-warning .s-textarea,
2265
- .has-warning .s-checkbox,
2266
- .has-warning .s-radio:not(:checked),
2267
- .has-warning .s-select > select {
2268
- border-color: var(--yellow-600);
2269
- }
2270
- .has-warning .s-input:focus,
2271
- .has-warning .s-textarea:focus,
2272
- .has-warning .s-checkbox:focus,
2273
- .has-warning .s-radio:not(:checked):focus,
2274
- .has-warning .s-select > select:focus {
2275
- box-shadow: 0 0 0 var(--su-static4) var(--focus-ring-warning);
2276
- }
2277
- .has-warning .s-input-message {
2278
- color: var(--yellow-800);
2279
- }
2280
- .has-warning .s-input-message a {
2281
- color: var(--yellow-900);
2262
+ .s-textarea.s-textarea__md {
2263
+ --_in-py: 0.72em;
2282
2264
  }
2283
- .has-warning .s-input-icon {
2284
- color: var(--yellow-600);
2265
+ .s-textarea ~ .s-input-icon {
2266
+ right: 1.5em;
2267
+ top: 1.5em;
2285
2268
  }
2286
- .has-error .s-input,
2287
- .has-error .s-textarea,
2288
- .has-error .s-checkbox,
2289
- .has-error .s-radio:not(:checked),
2290
- .has-error .s-select > select {
2291
- border-color: var(--red-400);
2269
+ .s-input-fill {
2270
+ --_if-bc: var(--bc-darker);
2271
+ --_if-bg: var(--black-050);
2272
+ --_if-blw: 0;
2273
+ --_if-blr: 0;
2274
+ --_if-brr: 0;
2275
+ --_if-brw: 0;
2276
+ background-color: var(--_if-bg);
2277
+ border: var(--su-static1) solid var(--_if-bc);
2278
+ border-left-width: var(--_if-blw);
2279
+ border-right-width: var(--_if-brw);
2280
+ border-radius: var(--_if-blr) var(--_if-brr) var(--_if-brr) var(--_if-blr);
2281
+ color: var(--fc-medium);
2282
+ font-family: inherit;
2283
+ line-height: var(--lh-sm);
2284
+ padding: 0.6em 0.7em;
2285
+ white-space: nowrap;
2292
2286
  }
2293
- .has-error .s-input:focus,
2294
- .has-error .s-textarea:focus,
2295
- .has-error .s-checkbox:focus,
2296
- .has-error .s-radio:not(:checked):focus,
2297
- .has-error .s-select > select:focus {
2298
- box-shadow: 0 0 0 var(--su-static4) var(--focus-ring-error);
2287
+ .s-input-fill.s-input-fill__clear {
2288
+ --_if-bc: transparent;
2289
+ --_if-bg: transparent;
2299
2290
  }
2300
- .has-error .s-input-message {
2301
- color: var(--red-500);
2291
+ .s-input-fill.order-first {
2292
+ --_if-blw: var(--su-static1);
2293
+ --_if-blr: var(--br-sm);
2302
2294
  }
2303
- .has-error .s-input-message a {
2304
- color: var(--red-800);
2295
+ .s-input-fill.order-last {
2296
+ --_if-brw: var(--su-static1);
2297
+ --_if-brr: var(--br-sm);
2305
2298
  }
2306
- .has-error .s-input-message a:hover {
2307
- color: var(--red-900);
2299
+ .s-input-icon {
2300
+ --_ii-fc: unset;
2301
+ --_ii-r: 0.7em;
2302
+ color: var(--_ii-fc);
2303
+ right: var(--_ii-r);
2304
+ margin-top: -9px;
2305
+ pointer-events: none;
2306
+ position: absolute;
2307
+ top: 50%;
2308
2308
  }
2309
2309
  .has-error .s-input-icon {
2310
- color: var(--red-400);
2311
- }
2312
- .has-success .s-input,
2313
- .has-success .s-textarea,
2314
- .has-success .s-checkbox,
2315
- .has-success .s-radio:not(:checked),
2316
- .has-success .s-select > select {
2317
- border-color: var(--green-400);
2318
- }
2319
- .has-success .s-input:focus,
2320
- .has-success .s-textarea:focus,
2321
- .has-success .s-checkbox:focus,
2322
- .has-success .s-radio:not(:checked):focus,
2323
- .has-success .s-select > select:focus {
2324
- box-shadow: 0 0 0 var(--su-static4) var(--focus-ring-success);
2325
- }
2326
- .has-success .s-input-message {
2327
- color: var(--green-500);
2328
- }
2329
- .has-success .s-input-message a {
2330
- color: var(--green-800);
2331
- }
2332
- .has-success .s-input-message a:hover {
2333
- color: var(--green-900);
2310
+ --_ii-fc: var(--red-400);
2334
2311
  }
2335
2312
  .has-success .s-input-icon {
2336
- color: var(--green-400);
2337
- }
2338
- .is-disabled .s-select:before,
2339
- .is-disabled .s-select:after {
2340
- border-color: var(--bc-darker) transparent;
2313
+ --_ii-fc: var(--green-400);
2341
2314
  }
2342
- .is-disabled .s-description {
2343
- opacity: var(--_o-disabled-static);
2315
+ .has-warning .s-input-icon {
2316
+ --_ii-fc: var(--yellow-600);
2344
2317
  }
2345
2318
  .is-disabled .s-input-icon {
2346
- color: var(--black-400);
2319
+ --_ii-fc: var(--black-400);
2347
2320
  }
2348
2321
  .is-readonly .s-input-icon {
2349
- color: var(--black-200);
2322
+ --_ii-fc: var(--black-200);
2350
2323
  }
2351
2324
  body.theme-highcontrast .is-readonly .s-input-icon {
2352
- color: var(--fc-light);
2353
- }
2354
- .s-input-icon {
2355
- position: absolute;
2356
- top: 50%;
2357
- right: 0.7em;
2358
- margin-top: -9px;
2359
- pointer-events: none;
2325
+ --_ii-fc: var(--fc-light);
2360
2326
  }
2361
- .s-input-icon.s-input-icon__search,
2362
- .s-input-icon.s-input-icon__creditcard {
2363
- right: auto;
2364
- left: 0.7em;
2327
+ .s-input-icon.s-input-icon__creditcard,
2328
+ .s-input-icon.s-input-icon__search {
2329
+ --_ii-r: auto;
2365
2330
  color: var(--black-400);
2331
+ left: 0.7em;
2366
2332
  }
2367
2333
  .s-input-message {
2368
- padding: var(--su2);
2334
+ --_im-fc: unset;
2335
+ --_im-a-fc: unset;
2336
+ --_im-a-fc-hover: unset;
2337
+ color: var(--_im-fc);
2369
2338
  font-size: var(--fs-caption);
2339
+ padding: var(--su2);
2370
2340
  }
2371
- .s-input__sm,
2372
- .s-textarea__sm,
2373
- .s-select__sm > select {
2374
- font-size: var(--fs-caption);
2341
+ .is-disabled .s-input-message a,
2342
+ .is-readonly .s-input-message a,
2343
+ .has-success .s-input-message a,
2344
+ .has-error .s-input-message a,
2345
+ .has-warning .s-input-message a {
2346
+ text-decoration: underline;
2375
2347
  }
2376
- .s-input__md,
2377
- .s-textarea__md,
2378
- .s-select__md > select {
2379
- font-size: var(--fs-body3);
2380
- padding-top: 0.5em;
2381
- padding-bottom: 0.5em;
2382
- border-radius: calc(var(--br-sm) + 1px);
2383
- }
2384
- .s-textarea__md {
2385
- padding-top: 0.72em;
2386
- padding-bottom: 0.72em;
2387
- }
2388
- .s-input__lg,
2389
- .s-textarea__lg,
2390
- .s-select__lg > select {
2391
- font-size: var(--fs-title);
2392
- padding: 0.45em 0.6em;
2393
- border-radius: calc(var(--br-sm) + 1px);
2394
- }
2395
- .s-input__xl,
2396
- .s-textarea__xl,
2397
- .s-select__xl > select {
2398
- font-size: var(--fs-headline1);
2399
- padding: 0.4em 0.5em;
2400
- border-radius: var(--br-md);
2348
+ fieldset[disabled] .s-input-message {
2349
+ cursor: not-allowed;
2350
+ opacity: var(--_o-disabled-static);
2401
2351
  }
2402
- @supports (-webkit-overflow-scrolling: touch) {
2403
- .s-input__md,
2404
- .s-textarea__md {
2405
- font-size: 17px;
2406
- padding-top: 0.4em;
2407
- padding-bottom: 0.4em;
2408
- }
2352
+ .has-error .s-input-message {
2353
+ --_im-fc: var(--red-500);
2354
+ --_im-a-fc: var(--red-800);
2355
+ --_im-a-fc-hover: var(--red-900);
2356
+ }
2357
+ .has-success .s-input-message {
2358
+ --_im-fc: var(--green-500);
2359
+ --_im-a-fc: var(--green-800);
2360
+ --_im-a-fc-hover: var(--green-900);
2361
+ }
2362
+ .has-warning .s-input-message {
2363
+ --_im-fc: var(--yellow-800);
2364
+ --_im-a-fc: var(--yellow-900);
2365
+ }
2366
+ .s-input-message a {
2367
+ color: var(--_im-a-fc);
2368
+ }
2369
+ .s-input-message a:hover {
2370
+ color: var(--_im-a-fc-hover);
2409
2371
  }
2410
2372
  .s-label {
2411
2373
  --_la-fs: var(--fs-body2);
@@ -2420,7 +2382,8 @@ body.theme-highcontrast .is-readonly .s-input-icon {
2420
2382
  }
2421
2383
  fieldset[disabled] .s-label,
2422
2384
  .is-disabled .s-label,
2423
- .s-check-control [disabled] + .s-label {
2385
+ .s-check-control .s-checkbox[disabled] + .s-label,
2386
+ .s-check-control .s-radio[disabled] + .s-label {
2424
2387
  cursor: not-allowed;
2425
2388
  opacity: var(--_o-disabled-static);
2426
2389
  }
@@ -2603,6 +2566,12 @@ a.s-link__muted,
2603
2566
  --_li-fc-hover: var(--black-600);
2604
2567
  --_li-fc-visited: var(--black-700);
2605
2568
  }
2569
+ fieldset[disabled] a,
2570
+ fieldset[disabled] .s-link {
2571
+ box-shadow: none !important;
2572
+ opacity: var(--_o-disabled-static);
2573
+ pointer-events: none;
2574
+ }
2606
2575
  a:active,
2607
2576
  .s-link:active,
2608
2577
  a:hover,
@@ -3995,14 +3964,17 @@ body.theme-highcontrast .s-post-summary .s-post-summary--answer:before {
3995
3964
  overflow: hidden;
3996
3965
  }
3997
3966
  .s-post-summary .s-post-summary--content-menu-button {
3998
- padding: var(--su8) !important;
3999
- position: absolute !important;
4000
3967
  right: var(--su8);
4001
3968
  top: var(--su8);
4002
3969
  }
4003
3970
  .s-post-summary .s-post-summary--content-menu-button .svg-icon {
4004
3971
  margin: 0 !important;
4005
3972
  }
3973
+ .s-post-summary .s-post-summary--content-menu-button,
3974
+ .s-post-summary .s-post-summary--content-menu-button.s-btn {
3975
+ padding: var(--su8);
3976
+ position: absolute;
3977
+ }
4006
3978
  .s-post-summary .s-post-summary--content-title {
4007
3979
  word-break: break-word !important;
4008
3980
  overflow-wrap: break-word !important;
@@ -4873,6 +4845,157 @@ body.theme-highcontrast .s-prose {
4873
4845
  position: absolute;
4874
4846
  width: 100%;
4875
4847
  }
4848
+ .s-select {
4849
+ --_se-arrow-bc: currentColor transparent;
4850
+ --_se-arrow-size: var(--su-static4);
4851
+ --_se-select-bc: var(--bc-darker);
4852
+ --_se-select-bc-focus: var(--theme-secondary-300);
4853
+ --_se-select-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring);
4854
+ --_se-select-bg: var(--white);
4855
+ --_se-select-br: var(--br-sm);
4856
+ --_se-select-fc: var(--black);
4857
+ --_se-select-px: 0.7em;
4858
+ --_se-select-py: 0.6em;
4859
+ --_se-select-fs: var(--fs-body1);
4860
+ color: var(--fc-dark);
4861
+ position: relative;
4862
+ }
4863
+ @supports (-webkit-overflow-scrolling: touch) {
4864
+ .s-select {
4865
+ --_se-select-fs: 16px;
4866
+ --_se-select-px: 0.55em;
4867
+ --_se-select-py: 0.4em;
4868
+ }
4869
+ }
4870
+ .is-disabled .s-select,
4871
+ .is-readonly .s-select,
4872
+ .has-success .s-select,
4873
+ .has-error .s-select,
4874
+ .has-warning .s-select {
4875
+ position: relative;
4876
+ }
4877
+ .has-error .s-select,
4878
+ .has-success .s-select,
4879
+ .has-warning .s-select {
4880
+ --_se-select-bc-focus: var(--_se-select-bc);
4881
+ }
4882
+ .has-error .s-select {
4883
+ --_se-select-bc: var(--red-400);
4884
+ --_se-select-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring-error);
4885
+ }
4886
+ .has-success .s-select {
4887
+ --_se-select-bc: var(--green-400);
4888
+ --_se-select-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring-success);
4889
+ }
4890
+ .has-warning .s-select {
4891
+ --_se-select-bc: var(--yellow-600);
4892
+ --_se-select-bs-focus: 0 0 0 var(--su-static4) var(--focus-ring-warning);
4893
+ }
4894
+ .is-disabled .s-select {
4895
+ --_se-arrow-bc: var(--bc-darker) transparent;
4896
+ }
4897
+ .s-select.s-select__sm {
4898
+ --_se-select-fs: var(--fs-caption);
4899
+ }
4900
+ .s-select.s-select__md {
4901
+ --_se-select-fs: var(--fs-body3);
4902
+ --_se-select-br: calc(var(--br-sm) + var(--su-static1));
4903
+ --_se-select-py: 0.5em;
4904
+ }
4905
+ .s-select.s-select__lg {
4906
+ --_se-select-fs: var(--fs-title);
4907
+ --_se-select-br: calc(var(--br-sm) + var(--su-static1));
4908
+ --_se-select-px: 0.6em;
4909
+ --_se-select-py: 0.45em;
4910
+ }
4911
+ .s-select.s-select__xl {
4912
+ --_se-select-fs: var(--fs-headline1);
4913
+ --_se-select-br: var(--br-md);
4914
+ --_se-select-px: 0.5em;
4915
+ --_se-select-py: 0.4em;
4916
+ }
4917
+ select.s-select:-webkit-autofill,
4918
+ .s-select > select:-webkit-autofill {
4919
+ -webkit-box-shadow: 0 0 0 1000px var(--theme-secondary-050) inset;
4920
+ -webkit-text-fill-color: var(--black);
4921
+ border-color: var(--blue-300);
4922
+ transition: background-color 0s 50000s;
4923
+ }
4924
+ select.s-select:-webkit-autofill:focus,
4925
+ .s-select > select:-webkit-autofill:focus {
4926
+ border-color: var(--blue-300);
4927
+ -webkit-box-shadow: 0 0 0 1000px var(--blue-050) inset, 0 0 0 var(--su-static4) var(--focus-ring);
4928
+ }
4929
+ select.s-select::-webkit-contacts-auto-fill-button,
4930
+ .s-select > select::-webkit-contacts-auto-fill-button {
4931
+ background-color: var(--black);
4932
+ }
4933
+ .s-select:before,
4934
+ .s-select:after {
4935
+ border-color: var(--_se-arrow-bc);
4936
+ border-style: solid;
4937
+ border-width: var(--_se-arrow-size);
4938
+ content: "";
4939
+ pointer-events: none;
4940
+ position: absolute;
4941
+ right: calc(var(--su-static12) + var(--su-static1));
4942
+ z-index: var(--zi-selected);
4943
+ }
4944
+ .s-select:after {
4945
+ border-bottom-width: 0;
4946
+ top: calc(50% + var(--su-static1));
4947
+ }
4948
+ .s-select:before {
4949
+ border-top-width: 0;
4950
+ top: calc(50% - calc(var(--_se-arrow-size) + var(--su-static1)));
4951
+ }
4952
+ .s-select > select {
4953
+ background-color: var(--_se-select-bg);
4954
+ border: var(--su-static1) solid var(--_se-select-bc);
4955
+ border-radius: var(--_se-select-br);
4956
+ color: var(--_se-select-fc);
4957
+ font-size: var(--_se-select-fs);
4958
+ padding: var(--_se-select-py) var(--_se-select-px);
4959
+ appearance: none;
4960
+ font-family: inherit;
4961
+ height: 100%;
4962
+ line-height: var(--lh-sm);
4963
+ outline: 0;
4964
+ padding-right: var(--su32);
4965
+ position: relative;
4966
+ width: 100%;
4967
+ }
4968
+ fieldset[disabled] .s-select > select,
4969
+ .s-select > select[disabled] {
4970
+ cursor: not-allowed;
4971
+ opacity: var(--_o-disabled-static);
4972
+ }
4973
+ .s-select > select[readonly],
4974
+ .is-readonly .s-select > select {
4975
+ --_se-select-bc: var(--bc-light);
4976
+ --_se-select-bg: var(--black-050);
4977
+ --_se-select-fc: var(--black-200);
4978
+ cursor: not-allowed;
4979
+ }
4980
+ body.theme-highcontrast .s-select > select[readonly],
4981
+ body.theme-highcontrast .is-readonly .s-select > select {
4982
+ --_se-select-fc: var(--fc-light);
4983
+ }
4984
+ .s-select > select::-moz-focus-inner {
4985
+ outline: none !important;
4986
+ }
4987
+ .s-select > select:focus {
4988
+ border-color: var(--_se-select-bc-focus);
4989
+ box-shadow: var(--_se-select-bs-focus);
4990
+ color: var(--black);
4991
+ outline: 0;
4992
+ }
4993
+ body.theme-highcontrast .s-select > select:focus {
4994
+ --_se-select-bc-focus: var(--black);
4995
+ }
4996
+ .s-select .s-input-icon {
4997
+ right: var(--su32);
4998
+ }
4876
4999
  .s-sidebarwidget {
4877
5000
  --_sw-bc: var(--bc-medium);
4878
5001
  --_sw-after-bc: var(--_sw-bc);
@@ -5519,7 +5642,7 @@ body.theme-highcontrast a.s-tag.is-selected:focus {
5519
5642
  --_ta-lh: 1.73333333;
5520
5643
  }
5521
5644
  .s-tag.s-tag__lg {
5522
- --_ta-br: calc(var(--br-sm) + 1px);
5645
+ --_ta-br: calc(var(--br-sm) + var(--su-static1));
5523
5646
  --_ta-fs: var(--fs-subheading);
5524
5647
  --_ta-lh: 1.68421053;
5525
5648
  --_ta-px: var(--su6);
@@ -5646,6 +5769,11 @@ body.theme-highcontrast a.s-tag:not(.is-selected):active {
5646
5769
  --_ts-multiple-bg: unset;
5647
5770
  --_ts-multiple-fc: var(--black-500);
5648
5771
  }
5772
+ fieldset[disabled] .s-toggle-switch,
5773
+ fieldset[disabled] .s-toggle-switch label {
5774
+ cursor: not-allowed;
5775
+ opacity: var(--_o-disabled-static);
5776
+ }
5649
5777
  .s-toggle-switch.s-toggle-switch__multiple {
5650
5778
  align-items: stretch;
5651
5779
  display: flex;
@@ -22908,12 +23036,10 @@ ol {
22908
23036
  }
22909
23037
  }
22910
23038
  @media print {
22911
- .print\:d-block {
23039
+ .print\:d-block {
22912
23040
  display: block !important;
22913
23041
  }
22914
- }
22915
- @media print {
22916
- .print\:d-none {
23042
+ .print\:d-none {
22917
23043
  display: none !important;
22918
23044
  }
22919
23045
  }