@utahdts/utah-design-system-header 0.6.0-beta.0 → 0.6.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.
|
@@ -1190,6 +1190,10 @@ elemental html: h1, h2, h3, ul, li, etc.
|
|
|
1190
1190
|
box-sizing: border-box;
|
|
1191
1191
|
}
|
|
1192
1192
|
|
|
1193
|
+
.utah-design-system pre.pre-block--padded {
|
|
1194
|
+
padding: 0 var(--spacing);
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1193
1197
|
.utah-design-system pre .pre-block__overflow-content {
|
|
1194
1198
|
width: max-content;
|
|
1195
1199
|
}
|
|
@@ -1898,19 +1902,19 @@ base color swatches for the design system
|
|
|
1898
1902
|
font-size: 1.7rem;
|
|
1899
1903
|
}
|
|
1900
1904
|
|
|
1901
|
-
.input-wrapper {
|
|
1905
|
+
.utah-design-system .input-wrapper {
|
|
1902
1906
|
margin: 0 0 var(--spacing-s) 0;
|
|
1903
1907
|
}
|
|
1904
1908
|
|
|
1905
|
-
.form.form--stacked .input-wrapper {
|
|
1909
|
+
.form.form--stacked .utah-design-system .input-wrapper {
|
|
1906
1910
|
display: flex;
|
|
1907
1911
|
flex-direction: column;
|
|
1908
1912
|
gap: 3px;
|
|
1909
1913
|
align-items: flex-start;
|
|
1910
1914
|
}
|
|
1911
1915
|
|
|
1912
|
-
input[type=text],
|
|
1913
|
-
textarea {
|
|
1916
|
+
.utah-design-system input[type=text],
|
|
1917
|
+
.utah-design-system textarea {
|
|
1914
1918
|
color: var(--gray-color);
|
|
1915
1919
|
min-height: var(--form-ele-medium);
|
|
1916
1920
|
border-radius: var(--radius-small);
|
|
@@ -1922,24 +1926,24 @@ textarea {
|
|
|
1922
1926
|
transition: box-shadow var(--timing-xquick) ease-in-out;
|
|
1923
1927
|
}
|
|
1924
1928
|
|
|
1925
|
-
input[type=text]:hover,
|
|
1926
|
-
textarea:hover {
|
|
1929
|
+
.utah-design-system input[type=text]:hover,
|
|
1930
|
+
.utah-design-system textarea:hover {
|
|
1927
1931
|
box-shadow: var(--hover-gray-color) 0 0 0 5px;
|
|
1928
1932
|
border-color: black;
|
|
1929
1933
|
}
|
|
1930
1934
|
|
|
1931
|
-
input[type=text]:focus-visible,
|
|
1932
|
-
textarea:focus-visible {
|
|
1935
|
+
.utah-design-system input[type=text]:focus-visible,
|
|
1936
|
+
.utah-design-system textarea:focus-visible {
|
|
1933
1937
|
outline: 2px solid var(--form-ele-color);
|
|
1934
1938
|
outline-offset: 2px;
|
|
1935
1939
|
transition: none;
|
|
1936
1940
|
}
|
|
1937
1941
|
|
|
1938
|
-
textarea {
|
|
1942
|
+
.utah-design-system textarea {
|
|
1939
1943
|
padding: var(--spacing-xs);
|
|
1940
1944
|
}
|
|
1941
1945
|
|
|
1942
|
-
input[type=checkbox] {
|
|
1946
|
+
.utah-design-system input[type=checkbox] {
|
|
1943
1947
|
width: var(--form-checkbox-medium);
|
|
1944
1948
|
height: var(--form-checkbox-medium);
|
|
1945
1949
|
position: relative;
|
|
@@ -1950,7 +1954,7 @@ input[type=checkbox] {
|
|
|
1950
1954
|
appearance: none;
|
|
1951
1955
|
}
|
|
1952
1956
|
|
|
1953
|
-
input[type=checkbox]::after {
|
|
1957
|
+
.utah-design-system input[type=checkbox]::after {
|
|
1954
1958
|
content: "";
|
|
1955
1959
|
display: block;
|
|
1956
1960
|
position: absolute;
|
|
@@ -1964,16 +1968,16 @@ input[type=checkbox]::after {
|
|
|
1964
1968
|
transition: box-shadow var(--timing-xquick) ease-in-out;
|
|
1965
1969
|
}
|
|
1966
1970
|
|
|
1967
|
-
input[type=checkbox]:hover {
|
|
1971
|
+
.utah-design-system input[type=checkbox]:hover {
|
|
1968
1972
|
border-color: black;
|
|
1969
1973
|
}
|
|
1970
1974
|
|
|
1971
|
-
input[type=checkbox]:hover::after {
|
|
1975
|
+
.utah-design-system input[type=checkbox]:hover::after {
|
|
1972
1976
|
box-shadow: var(--hover-gray-color) 0 0 0 7px;
|
|
1973
1977
|
border-color: black;
|
|
1974
1978
|
}
|
|
1975
1979
|
|
|
1976
|
-
input[type=checkbox]::before {
|
|
1980
|
+
.utah-design-system input[type=checkbox]::before {
|
|
1977
1981
|
content: "";
|
|
1978
1982
|
display: block;
|
|
1979
1983
|
background: var(--form-ele-color);
|
|
@@ -1987,18 +1991,18 @@ input[type=checkbox]::before {
|
|
|
1987
1991
|
opacity: 0;
|
|
1988
1992
|
}
|
|
1989
1993
|
|
|
1990
|
-
input[type=checkbox]:checked {
|
|
1994
|
+
.utah-design-system input[type=checkbox]:checked {
|
|
1991
1995
|
border-width: 0;
|
|
1992
1996
|
background-color: var(--form-ele-color);
|
|
1993
1997
|
}
|
|
1994
1998
|
|
|
1995
|
-
input[type=checkbox]:checked::before {
|
|
1999
|
+
.utah-design-system input[type=checkbox]:checked::before {
|
|
1996
2000
|
opacity: 1;
|
|
1997
2001
|
background-size: 80%;
|
|
1998
2002
|
transition: background-size var(--timing-quick) ease, opacity var(--timing-quick) ease;
|
|
1999
2003
|
}
|
|
2000
2004
|
|
|
2001
|
-
.input-wrapper--checkbox {
|
|
2005
|
+
.utah-design-system .input-wrapper--checkbox {
|
|
2002
2006
|
display: flex;
|
|
2003
2007
|
flex-direction: row-reverse;
|
|
2004
2008
|
justify-content: flex-end;
|
|
@@ -2007,11 +2011,11 @@ input[type=checkbox]:checked::before {
|
|
|
2007
2011
|
z-index: 1;
|
|
2008
2012
|
}
|
|
2009
2013
|
|
|
2010
|
-
.input-wrapper label {
|
|
2014
|
+
.utah-design-system .input-wrapper label {
|
|
2011
2015
|
padding: 0 0 0 var(--spacing-2xs);
|
|
2012
2016
|
}
|
|
2013
2017
|
|
|
2014
|
-
select {
|
|
2018
|
+
.utah-design-system select {
|
|
2015
2019
|
color: var(--gray-color);
|
|
2016
2020
|
min-height: var(--form-ele-medium);
|
|
2017
2021
|
border-radius: var(--radius-small);
|
|
@@ -2026,18 +2030,18 @@ select {
|
|
|
2026
2030
|
transition: box-shadow var(--timing-xquick) ease-in-out;
|
|
2027
2031
|
}
|
|
2028
2032
|
|
|
2029
|
-
select:hover {
|
|
2033
|
+
.utah-design-system select:hover {
|
|
2030
2034
|
box-shadow: var(--hover-gray-color) 0 0 0 5px;
|
|
2031
2035
|
border-color: black;
|
|
2032
2036
|
}
|
|
2033
2037
|
|
|
2034
|
-
select:focus-visible {
|
|
2038
|
+
.utah-design-system select:focus-visible {
|
|
2035
2039
|
outline: 2px solid var(--form-ele-color);
|
|
2036
2040
|
outline-offset: 2px;
|
|
2037
2041
|
transition: none;
|
|
2038
2042
|
}
|
|
2039
2043
|
|
|
2040
|
-
.info-box {
|
|
2044
|
+
.utah-design-system .info-box {
|
|
2041
2045
|
display: flex;
|
|
2042
2046
|
align-items: center;
|
|
2043
2047
|
min-height: var(--form-ele-medium);
|
|
@@ -2046,7 +2050,7 @@ select:focus-visible {
|
|
|
2046
2050
|
border-radius: var(--radius-small);
|
|
2047
2051
|
}
|
|
2048
2052
|
|
|
2049
|
-
.info-box::before {
|
|
2053
|
+
.utah-design-system .info-box::before {
|
|
2050
2054
|
content: "";
|
|
2051
2055
|
display: block;
|
|
2052
2056
|
width: var(--spacing-xs);
|
|
@@ -2056,13 +2060,13 @@ select:focus-visible {
|
|
|
2056
2060
|
background-color: var(--secondary-color);
|
|
2057
2061
|
}
|
|
2058
2062
|
|
|
2059
|
-
.info-box__content {
|
|
2063
|
+
.utah-design-system .info-box__content {
|
|
2060
2064
|
display: flex;
|
|
2061
2065
|
align-items: center;
|
|
2062
2066
|
padding: 0 var(--spacing-s);
|
|
2063
2067
|
}
|
|
2064
2068
|
|
|
2065
|
-
input[type=radio] {
|
|
2069
|
+
.utah-design-system input[type=radio] {
|
|
2066
2070
|
appearance: none;
|
|
2067
2071
|
border-radius: var(--radius-circle);
|
|
2068
2072
|
border: 1px solid var(--gray-color);
|
|
@@ -2073,7 +2077,7 @@ input[type=radio] {
|
|
|
2073
2077
|
margin-right: var(--spacing-xs);
|
|
2074
2078
|
}
|
|
2075
2079
|
|
|
2076
|
-
input[type=radio]::before {
|
|
2080
|
+
.utah-design-system input[type=radio]::before {
|
|
2077
2081
|
content: "";
|
|
2078
2082
|
display: block;
|
|
2079
2083
|
width: 100%;
|
|
@@ -2083,16 +2087,16 @@ input[type=radio]::before {
|
|
|
2083
2087
|
transition: box-shadow var(--timing-xquick) ease-in-out;
|
|
2084
2088
|
}
|
|
2085
2089
|
|
|
2086
|
-
input[type=radio]:hover::before {
|
|
2090
|
+
.utah-design-system input[type=radio]:hover::before {
|
|
2087
2091
|
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 0px 7px;
|
|
2088
2092
|
}
|
|
2089
2093
|
|
|
2090
|
-
input[type=radio]:checked {
|
|
2094
|
+
.utah-design-system input[type=radio]:checked {
|
|
2091
2095
|
background-color: var(--secondary-color);
|
|
2092
2096
|
border: 1px solid var(--secondary-color);
|
|
2093
2097
|
}
|
|
2094
2098
|
|
|
2095
|
-
input[type=radio]:checked::after {
|
|
2099
|
+
.utah-design-system input[type=radio]:checked::after {
|
|
2096
2100
|
content: "";
|
|
2097
2101
|
display: block;
|
|
2098
2102
|
width: 50%;
|
|
@@ -2105,16 +2109,16 @@ input[type=radio]:checked::after {
|
|
|
2105
2109
|
transform: translate(-50%, -50%);
|
|
2106
2110
|
}
|
|
2107
2111
|
|
|
2108
|
-
.checkbox:hover ~ span:first-of-type {
|
|
2112
|
+
.utah-design-system .checkbox:hover ~ span:first-of-type {
|
|
2109
2113
|
box-shadow: rgb(240, 241, 242) 0px 0px 0px 7px;
|
|
2110
2114
|
}
|
|
2111
2115
|
|
|
2112
|
-
span {
|
|
2116
|
+
.utah-design-system span {
|
|
2113
2117
|
border-radius: 999px;
|
|
2114
2118
|
box-shadow: rgb(240, 241, 242) 0px 0px 0px 0px;
|
|
2115
2119
|
}
|
|
2116
2120
|
|
|
2117
|
-
input[type=checkbox].switch {
|
|
2121
|
+
.utah-design-system input[type=checkbox].switch {
|
|
2118
2122
|
border: 0;
|
|
2119
2123
|
clip: rect(0 0 0 0);
|
|
2120
2124
|
height: 1px;
|
|
@@ -2125,7 +2129,7 @@ input[type=checkbox].switch {
|
|
|
2125
2129
|
width: 1px;
|
|
2126
2130
|
}
|
|
2127
2131
|
|
|
2128
|
-
.switch__label {
|
|
2132
|
+
.utah-design-system .switch__label {
|
|
2129
2133
|
position: absolute;
|
|
2130
2134
|
right: 0;
|
|
2131
2135
|
transform: translateX(calc(100% + var(--spacing-2xs)));
|
|
@@ -2133,7 +2137,7 @@ input[type=checkbox].switch {
|
|
|
2133
2137
|
min-width: max-content;
|
|
2134
2138
|
}
|
|
2135
2139
|
|
|
2136
|
-
.switch__wrapper {
|
|
2140
|
+
.utah-design-system .switch__wrapper {
|
|
2137
2141
|
min-width: 20px;
|
|
2138
2142
|
background: #7b7b7b;
|
|
2139
2143
|
color: white;
|
|
@@ -2147,46 +2151,46 @@ input[type=checkbox].switch {
|
|
|
2147
2151
|
transition: box-shadow var(--timing-xquick) ease-in-out;
|
|
2148
2152
|
}
|
|
2149
2153
|
|
|
2150
|
-
.switch__wrapper--on {
|
|
2154
|
+
.utah-design-system .switch__wrapper--on {
|
|
2151
2155
|
background: var(--form-ele-color);
|
|
2152
2156
|
}
|
|
2153
2157
|
|
|
2154
|
-
.switch__wrapper:hover {
|
|
2158
|
+
.utah-design-system .switch__wrapper:hover {
|
|
2155
2159
|
box-shadow: var(--hover-gray-color) 0 0 0 5px;
|
|
2156
2160
|
border-color: black;
|
|
2157
2161
|
}
|
|
2158
2162
|
|
|
2159
|
-
.switch__wrapper:has(input:focus) {
|
|
2163
|
+
.utah-design-system .switch__wrapper:has(input:focus) {
|
|
2160
2164
|
outline: 2px solid var(--form-ele-color);
|
|
2161
2165
|
outline-offset: 2px;
|
|
2162
2166
|
transition: none;
|
|
2163
2167
|
}
|
|
2164
2168
|
|
|
2165
|
-
.switch--small.switch__wrapper {
|
|
2169
|
+
.utah-design-system .switch--small.switch__wrapper {
|
|
2166
2170
|
min-height: var(--form-ele-small4x);
|
|
2167
2171
|
}
|
|
2168
2172
|
|
|
2169
|
-
.switch--small .switch__slider {
|
|
2173
|
+
.utah-design-system .switch--small .switch__slider {
|
|
2170
2174
|
height: var(--form-ele-small4x);
|
|
2171
2175
|
width: var(--form-ele-small4x);
|
|
2172
2176
|
}
|
|
2173
2177
|
|
|
2174
|
-
.switch--small .switch__inner-label {
|
|
2178
|
+
.utah-design-system .switch--small .switch__inner-label {
|
|
2175
2179
|
font-size: var(--font-size-xs);
|
|
2176
2180
|
height: var(--form-ele-small4x);
|
|
2177
2181
|
line-height: var(--form-ele-small4x);
|
|
2178
2182
|
}
|
|
2179
2183
|
|
|
2180
|
-
.switch--large.switch__wrapper {
|
|
2184
|
+
.utah-design-system .switch--large.switch__wrapper {
|
|
2181
2185
|
min-height: var(--form-ele-small1x);
|
|
2182
2186
|
}
|
|
2183
2187
|
|
|
2184
|
-
.switch--large .switch__slider {
|
|
2188
|
+
.utah-design-system .switch--large .switch__slider {
|
|
2185
2189
|
height: var(--form-ele-small1x);
|
|
2186
2190
|
width: var(--form-ele-small1x);
|
|
2187
2191
|
}
|
|
2188
2192
|
|
|
2189
|
-
.switch__slider {
|
|
2193
|
+
.utah-design-system .switch__slider {
|
|
2190
2194
|
height: var(--form-ele-small3x);
|
|
2191
2195
|
width: var(--form-ele-small3x);
|
|
2192
2196
|
border-radius: var(--radius-circle);
|
|
@@ -2199,19 +2203,19 @@ input[type=checkbox].switch {
|
|
|
2199
2203
|
justify-content: center;
|
|
2200
2204
|
}
|
|
2201
2205
|
|
|
2202
|
-
.switch__slider--on {
|
|
2206
|
+
.utah-design-system .switch__slider--on {
|
|
2203
2207
|
left: 100%;
|
|
2204
2208
|
transform: translateX(calc(-100% - 2px));
|
|
2205
2209
|
background: white;
|
|
2206
2210
|
}
|
|
2207
2211
|
|
|
2208
|
-
.switch__slider svg {
|
|
2212
|
+
.utah-design-system .switch__slider svg {
|
|
2209
2213
|
fill: var(--gray-color);
|
|
2210
2214
|
width: 0.65rem;
|
|
2211
2215
|
height: 0.65rem;
|
|
2212
2216
|
}
|
|
2213
2217
|
|
|
2214
|
-
.switch__inner-label {
|
|
2218
|
+
.utah-design-system .switch__inner-label {
|
|
2215
2219
|
position: relative;
|
|
2216
2220
|
width: 100%;
|
|
2217
2221
|
height: var(--form-ele-small3x);
|
|
@@ -2219,7 +2223,7 @@ input[type=checkbox].switch {
|
|
|
2219
2223
|
line-height: var(--font-size-s);
|
|
2220
2224
|
}
|
|
2221
2225
|
|
|
2222
|
-
.switch__inner-label-on, .switch__inner-label-off {
|
|
2226
|
+
.utah-design-system .switch__inner-label-on, .utah-design-system .switch__inner-label-off {
|
|
2223
2227
|
width: calc(100% - var(--form-ele-2small1x));
|
|
2224
2228
|
position: absolute;
|
|
2225
2229
|
right: 2px;
|
|
@@ -2229,30 +2233,30 @@ input[type=checkbox].switch {
|
|
|
2229
2233
|
display: inline-block;
|
|
2230
2234
|
}
|
|
2231
2235
|
|
|
2232
|
-
.switch__inner-label-on.show, .switch__inner-label-off.show {
|
|
2236
|
+
.utah-design-system .switch__inner-label-on.show, .utah-design-system .switch__inner-label-off.show {
|
|
2233
2237
|
opacity: 1;
|
|
2234
2238
|
}
|
|
2235
2239
|
|
|
2236
|
-
.switch__inner-label-on {
|
|
2240
|
+
.utah-design-system .switch__inner-label-on {
|
|
2237
2241
|
color: white;
|
|
2238
2242
|
right: unset;
|
|
2239
2243
|
left: 2px;
|
|
2240
2244
|
}
|
|
2241
2245
|
|
|
2242
|
-
.switch--disabled {
|
|
2246
|
+
.utah-design-system .switch--disabled {
|
|
2243
2247
|
background: var(--form-ele-disabled-color);
|
|
2244
2248
|
cursor: not-allowed;
|
|
2245
2249
|
}
|
|
2246
2250
|
|
|
2247
|
-
.switch--disabled.switch__wrapper--on {
|
|
2251
|
+
.utah-design-system .switch--disabled.switch__wrapper--on {
|
|
2248
2252
|
background: var(--form-ele-color-light);
|
|
2249
2253
|
}
|
|
2250
2254
|
|
|
2251
|
-
.input-wrapper--switch label {
|
|
2255
|
+
.utah-design-system .input-wrapper--switch label {
|
|
2252
2256
|
padding: var(--spacing-3xs) var(--spacing-xs);
|
|
2253
2257
|
}
|
|
2254
2258
|
|
|
2255
|
-
.switch-old {
|
|
2259
|
+
.utah-design-system .switch-old {
|
|
2256
2260
|
display: block;
|
|
2257
2261
|
box-sizing: border-box;
|
|
2258
2262
|
border: none;
|
|
@@ -2262,25 +2266,25 @@ input[type=checkbox].switch {
|
|
|
2262
2266
|
min-height: 20px;
|
|
2263
2267
|
}
|
|
2264
2268
|
|
|
2265
|
-
.switch-old:focus,
|
|
2266
|
-
.switch-old:hover {
|
|
2269
|
+
.utah-design-system .switch-old:focus,
|
|
2270
|
+
.utah-design-system .switch-old:hover {
|
|
2267
2271
|
outline: none;
|
|
2268
2272
|
}
|
|
2269
2273
|
|
|
2270
|
-
.switch-old:focus::before,
|
|
2271
|
-
.switch-old:hover::before {
|
|
2274
|
+
.utah-design-system .switch-old:focus::before,
|
|
2275
|
+
.utah-design-system .switch-old:hover::before {
|
|
2272
2276
|
box-shadow: 0 0 0.5em #2a2a28;
|
|
2273
2277
|
}
|
|
2274
2278
|
|
|
2275
|
-
.switch-old::before,
|
|
2276
|
-
.switch-old::after {
|
|
2279
|
+
.utah-design-system .switch-old::before,
|
|
2280
|
+
.utah-design-system .switch-old::after {
|
|
2277
2281
|
content: "";
|
|
2278
2282
|
position: absolute;
|
|
2279
2283
|
height: 16px;
|
|
2280
2284
|
transition: all 0.25s ease;
|
|
2281
2285
|
}
|
|
2282
2286
|
|
|
2283
|
-
.switch-old::before {
|
|
2287
|
+
.utah-design-system .switch-old::before {
|
|
2284
2288
|
left: 0;
|
|
2285
2289
|
top: 0.2em;
|
|
2286
2290
|
width: 32px;
|
|
@@ -2291,7 +2295,7 @@ input[type=checkbox].switch {
|
|
|
2291
2295
|
border-color: #699957;
|
|
2292
2296
|
}
|
|
2293
2297
|
|
|
2294
|
-
.switch-old::after {
|
|
2298
|
+
.utah-design-system .switch-old::after {
|
|
2295
2299
|
top: 4px;
|
|
2296
2300
|
background-color: #fff;
|
|
2297
2301
|
border-radius: 50%;
|
|
@@ -3651,7 +3655,7 @@ variables and settings
|
|
|
3651
3655
|
font-size: 1.3rem;
|
|
3652
3656
|
}
|
|
3653
3657
|
|
|
3654
|
-
.documentation-template {
|
|
3658
|
+
.utah-design-system .documentation-template {
|
|
3655
3659
|
display: flex;
|
|
3656
3660
|
flex-direction: row;
|
|
3657
3661
|
width: 100%;
|
|
@@ -3660,39 +3664,39 @@ variables and settings
|
|
|
3660
3664
|
align-items: flex-start;
|
|
3661
3665
|
}
|
|
3662
3666
|
|
|
3663
|
-
.documentation-template__wrapper {
|
|
3667
|
+
.utah-design-system .documentation-template__wrapper {
|
|
3664
3668
|
display: flex;
|
|
3665
3669
|
justify-content: center;
|
|
3666
3670
|
}
|
|
3667
3671
|
|
|
3668
|
-
.documentation-template__side-panel-left {
|
|
3672
|
+
.utah-design-system .documentation-template__side-panel-left {
|
|
3669
3673
|
border-right: 1px solid var(--gray-border);
|
|
3670
3674
|
padding: var(--documentation-padding);
|
|
3671
3675
|
width: var(--documentation-left-width);
|
|
3672
3676
|
}
|
|
3673
3677
|
|
|
3674
|
-
.documentation-template__content {
|
|
3678
|
+
.utah-design-system .documentation-template__content {
|
|
3675
3679
|
flex: 1 1 auto;
|
|
3676
3680
|
max-width: var(--documentation-width);
|
|
3677
3681
|
padding: var(--documentation-padding);
|
|
3678
3682
|
}
|
|
3679
3683
|
|
|
3680
|
-
.documentation-template__content h1 {
|
|
3684
|
+
.utah-design-system .documentation-template__content h1 {
|
|
3681
3685
|
margin: calc(-1 * var(--spacing-xs)) 0 0 0;
|
|
3682
3686
|
}
|
|
3683
3687
|
|
|
3684
|
-
.documentation-template__content code svg {
|
|
3688
|
+
.utah-design-system .documentation-template__content code svg {
|
|
3685
3689
|
height: 10px;
|
|
3686
3690
|
}
|
|
3687
3691
|
|
|
3688
|
-
.documentation-template__content table .props-code-wrapper {
|
|
3692
|
+
.utah-design-system .documentation-template__content table .props-code-wrapper {
|
|
3689
3693
|
display: flex;
|
|
3690
3694
|
flex-direction: row;
|
|
3691
3695
|
gap: var(--spacing-xs);
|
|
3692
3696
|
flex-wrap: wrap;
|
|
3693
3697
|
}
|
|
3694
3698
|
|
|
3695
|
-
.documentation-template__side-panel-right {
|
|
3699
|
+
.utah-design-system .documentation-template__side-panel-right {
|
|
3696
3700
|
position: sticky;
|
|
3697
3701
|
top: 0;
|
|
3698
3702
|
border-left: 1px solid var(--gray-border);
|
|
@@ -3700,28 +3704,28 @@ variables and settings
|
|
|
3700
3704
|
width: var(--documentation-right-width);
|
|
3701
3705
|
}
|
|
3702
3706
|
|
|
3703
|
-
.landing-page-template {
|
|
3707
|
+
.utah-design-system .landing-page-template {
|
|
3704
3708
|
display: flex;
|
|
3705
3709
|
justify-content: center;
|
|
3706
3710
|
align-items: center;
|
|
3707
3711
|
flex-direction: column;
|
|
3708
3712
|
}
|
|
3709
3713
|
|
|
3710
|
-
.landing-page-template .content-width {
|
|
3714
|
+
.utah-design-system .landing-page-template .content-width {
|
|
3711
3715
|
max-width: var(--content-width-narrow);
|
|
3712
3716
|
}
|
|
3713
3717
|
|
|
3714
|
-
input.input--height-small,
|
|
3715
|
-
.input--height-small {
|
|
3718
|
+
.utah-design-system input.input--height-small,
|
|
3719
|
+
.utah-design-system .input--height-small {
|
|
3716
3720
|
min-height: var(--form-ele-small);
|
|
3717
3721
|
}
|
|
3718
3722
|
|
|
3719
|
-
input.input--height-small1x,
|
|
3720
|
-
.input--height-small1x {
|
|
3723
|
+
.utah-design-system input.input--height-small1x,
|
|
3724
|
+
.utah-design-system .input--height-small1x {
|
|
3721
3725
|
min-height: var(--form-ele-small1x);
|
|
3722
3726
|
}
|
|
3723
3727
|
|
|
3724
|
-
.spinner {
|
|
3728
|
+
.utah-design-system .spinner {
|
|
3725
3729
|
display: flex;
|
|
3726
3730
|
align-items: center;
|
|
3727
3731
|
justify-content: center;
|
|
@@ -3729,23 +3733,23 @@ input.input--height-small1x,
|
|
|
3729
3733
|
vertical-align: middle;
|
|
3730
3734
|
}
|
|
3731
3735
|
|
|
3732
|
-
.spinner svg {
|
|
3736
|
+
.utah-design-system .spinner svg {
|
|
3733
3737
|
display: block;
|
|
3734
3738
|
}
|
|
3735
3739
|
|
|
3736
|
-
.spinner svg path {
|
|
3740
|
+
.utah-design-system .spinner svg path {
|
|
3737
3741
|
fill: none;
|
|
3738
3742
|
}
|
|
3739
3743
|
|
|
3740
|
-
.spinner__animation {
|
|
3744
|
+
.utah-design-system .spinner__animation {
|
|
3741
3745
|
animation: spinner-animation 0.5s linear infinite;
|
|
3742
3746
|
}
|
|
3743
3747
|
|
|
3744
|
-
.spinner__track {
|
|
3748
|
+
.utah-design-system .spinner__track {
|
|
3745
3749
|
stroke: #b0b0b0;
|
|
3746
3750
|
}
|
|
3747
3751
|
|
|
3748
|
-
.spinner__value {
|
|
3752
|
+
.utah-design-system .spinner__value {
|
|
3749
3753
|
stroke: var(--form-ele-color);
|
|
3750
3754
|
stroke-linecap: round;
|
|
3751
3755
|
transform-origin: center;
|
|
@@ -3760,63 +3764,63 @@ input.input--height-small1x,
|
|
|
3760
3764
|
transform: rotate(1turn);
|
|
3761
3765
|
}
|
|
3762
3766
|
}
|
|
3763
|
-
table {
|
|
3767
|
+
.utah-design-system table {
|
|
3764
3768
|
border-collapse: collapse;
|
|
3765
3769
|
}
|
|
3766
3770
|
|
|
3767
|
-
table thead {
|
|
3771
|
+
.utah-design-system table thead {
|
|
3768
3772
|
border-bottom: 1px solid var(--gray-color);
|
|
3769
3773
|
}
|
|
3770
3774
|
|
|
3771
|
-
table thead tr th {
|
|
3775
|
+
.utah-design-system table thead tr th {
|
|
3772
3776
|
text-align: center;
|
|
3773
3777
|
vertical-align: bottom;
|
|
3774
3778
|
font-weight: bold;
|
|
3775
3779
|
padding: var(--spacing-s);
|
|
3776
3780
|
}
|
|
3777
3781
|
|
|
3778
|
-
table thead tr th.text-left {
|
|
3782
|
+
.utah-design-system table thead tr th.text-left {
|
|
3779
3783
|
text-align: left;
|
|
3780
3784
|
}
|
|
3781
3785
|
|
|
3782
|
-
table thead tr th.text-right {
|
|
3786
|
+
.utah-design-system table thead tr th.text-right {
|
|
3783
3787
|
text-align: right;
|
|
3784
3788
|
}
|
|
3785
3789
|
|
|
3786
|
-
table tbody tr td {
|
|
3790
|
+
.utah-design-system table tbody tr td {
|
|
3787
3791
|
vertical-align: top;
|
|
3788
3792
|
padding: var(--spacing-s);
|
|
3789
3793
|
}
|
|
3790
3794
|
|
|
3791
|
-
table.table--alt tbody tr:nth-child(2n) td {
|
|
3795
|
+
.utah-design-system table.table--alt tbody tr:nth-child(2n) td {
|
|
3792
3796
|
background-color: #F5F5F5;
|
|
3793
3797
|
}
|
|
3794
3798
|
|
|
3795
|
-
table.table--lines-x tbody tr td {
|
|
3799
|
+
.utah-design-system table.table--lines-x tbody tr td {
|
|
3796
3800
|
border-bottom: 1px solid var(--gray-3-1-contrast);
|
|
3797
3801
|
}
|
|
3798
3802
|
|
|
3799
|
-
table.table--lines-x tbody tr:last-child td {
|
|
3803
|
+
.utah-design-system table.table--lines-x tbody tr:last-child td {
|
|
3800
3804
|
border-bottom: 1px solid var(--gray-color);
|
|
3801
3805
|
}
|
|
3802
3806
|
|
|
3803
|
-
table.table--v-align-center tbody tr td {
|
|
3807
|
+
.utah-design-system table.table--v-align-center tbody tr td {
|
|
3804
3808
|
vertical-align: middle;
|
|
3805
3809
|
}
|
|
3806
3810
|
|
|
3807
|
-
table.table--condensed thead tr th {
|
|
3811
|
+
.utah-design-system table.table--condensed thead tr th {
|
|
3808
3812
|
padding: var(--spacing-2xs);
|
|
3809
3813
|
}
|
|
3810
3814
|
|
|
3811
|
-
table.table--condensed tbody tr td {
|
|
3815
|
+
.utah-design-system table.table--condensed tbody tr td {
|
|
3812
3816
|
padding: var(--spacing-2xs);
|
|
3813
3817
|
}
|
|
3814
3818
|
|
|
3815
|
-
table .table-header {
|
|
3819
|
+
.utah-design-system table .table-header {
|
|
3816
3820
|
position: relative;
|
|
3817
3821
|
}
|
|
3818
3822
|
|
|
3819
|
-
table .table-header--sorted::before {
|
|
3823
|
+
.utah-design-system table .table-header--sorted::before {
|
|
3820
3824
|
content: "";
|
|
3821
3825
|
height: 7px;
|
|
3822
3826
|
width: 100%;
|
|
@@ -3907,7 +3911,7 @@ table .table-header--sorted::before {
|
|
|
3907
3911
|
/*
|
|
3908
3912
|
############ _popup.scss ############
|
|
3909
3913
|
*/
|
|
3910
|
-
.popup {
|
|
3914
|
+
.utah-design-system .popup {
|
|
3911
3915
|
position: fixed;
|
|
3912
3916
|
top: 25%;
|
|
3913
3917
|
left: 2%;
|
|
@@ -3917,13 +3921,13 @@ table .table-header--sorted::before {
|
|
|
3917
3921
|
z-index: 1000;
|
|
3918
3922
|
}
|
|
3919
3923
|
|
|
3920
|
-
.popup__title-bar {
|
|
3924
|
+
.utah-design-system .popup__title-bar {
|
|
3921
3925
|
display: flex;
|
|
3922
3926
|
justify-content: space-between;
|
|
3923
3927
|
align-items: center;
|
|
3924
3928
|
}
|
|
3925
3929
|
|
|
3926
|
-
.popup__title {
|
|
3930
|
+
.utah-design-system .popup__title {
|
|
3927
3931
|
padding: var(--spacing);
|
|
3928
3932
|
}
|
|
3929
3933
|
|