@linzjs/lui 16.5.1-0 → 17.1.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/CHANGELOG.md +16 -0
- package/dist/components/LuiButton/LuiButton.d.ts +1 -1
- package/dist/components/LuiFilterMenu/LuiFilterMenu.d.ts +1 -0
- package/dist/components/LuiSearchInput/LuiSearchInput.d.ts +23 -0
- package/dist/components/LuiSearchInput/ResultsDisplay.d.ts +13 -0
- package/dist/components/LuiSelectMenu/LuiSelectDataMenu.d.ts +15 -0
- package/dist/components/LuiSelectMenu/LuiSelectMenu.d.ts +20 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +388 -34
- package/dist/index.js.map +1 -1
- package/dist/lui.css +458 -80
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +384 -36
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/ContextMenu/context-menu.scss +118 -3
- package/dist/scss/Components/LuiSearchInput/LuiSearchInput.scss +120 -0
- package/dist/scss/Elements/Buttons/buttons.scss +154 -22
- package/dist/scss/Foundation/Utilities/BoxShadow.scss +1 -1
- package/dist/scss/Foundation/Variables/_LuiColors.scss +4 -0
- package/dist/scss/base.scss +1 -6
- package/package.json +2 -1
- package/dist/scss/external.scss +0 -3
package/dist/lui.css
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import '~@szhsin/react-menu/dist/core.css';
|
|
2
|
-
@import '~@szhsin/react-menu/dist/index.css';
|
|
3
1
|
html {
|
|
4
2
|
box-sizing: border-box;
|
|
5
3
|
}
|
|
@@ -1699,11 +1697,11 @@ a.lui-button.lui-button-icon-right i {
|
|
|
1699
1697
|
}
|
|
1700
1698
|
.lui-button.lui-button-icon,
|
|
1701
1699
|
a.lui-button.lui-button-icon {
|
|
1702
|
-
padding: 0.
|
|
1700
|
+
padding: 0.4375rem 1rem 0.4375rem 0.4375rem;
|
|
1703
1701
|
}
|
|
1704
1702
|
.lui-button.lui-button-icon .LuiIcon,
|
|
1705
1703
|
a.lui-button.lui-button-icon .LuiIcon {
|
|
1706
|
-
margin:
|
|
1704
|
+
margin: 0 8px -7px 0;
|
|
1707
1705
|
}
|
|
1708
1706
|
.lui-button.lui-button-icon i,
|
|
1709
1707
|
a.lui-button.lui-button-icon i {
|
|
@@ -1717,6 +1715,7 @@ a.lui-button-primary {
|
|
|
1717
1715
|
border: 1px solid #007198;
|
|
1718
1716
|
color: #fff;
|
|
1719
1717
|
line-height: 24px;
|
|
1718
|
+
font-weight: 600;
|
|
1720
1719
|
}
|
|
1721
1720
|
.lui-button-primary i,
|
|
1722
1721
|
.lui-button-primary svg *,
|
|
@@ -1766,9 +1765,6 @@ a.lui-button-primary:active:enabled {
|
|
|
1766
1765
|
cursor: pointer;
|
|
1767
1766
|
color: rgba(255, 255, 255, 0.9);
|
|
1768
1767
|
border: 1px solid #00425d;
|
|
1769
|
-
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1770
|
-
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1771
|
-
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1772
1768
|
}
|
|
1773
1769
|
.lui-button-primary:active:enabled i,
|
|
1774
1770
|
.lui-button-primary:active:enabled svg *,
|
|
@@ -1783,6 +1779,7 @@ a.lui-button-secondary {
|
|
|
1783
1779
|
border: 1px solid #007198;
|
|
1784
1780
|
color: #007198;
|
|
1785
1781
|
line-height: 24px;
|
|
1782
|
+
font-weight: 600;
|
|
1786
1783
|
}
|
|
1787
1784
|
.lui-button-secondary i,
|
|
1788
1785
|
.lui-button-secondary svg *,
|
|
@@ -1832,9 +1829,6 @@ a.lui-button-secondary:active:enabled {
|
|
|
1832
1829
|
cursor: pointer;
|
|
1833
1830
|
color: rgba(255, 255, 255, 0.9);
|
|
1834
1831
|
border: 1px solid #007198;
|
|
1835
|
-
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1836
|
-
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1837
|
-
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1838
1832
|
}
|
|
1839
1833
|
.lui-button-secondary:active:enabled i,
|
|
1840
1834
|
.lui-button-secondary:active:enabled svg *,
|
|
@@ -1855,35 +1849,41 @@ a.lui-button-secondary:hover i {
|
|
|
1855
1849
|
}
|
|
1856
1850
|
.lui-button-tertiary,
|
|
1857
1851
|
a.lui-button-tertiary {
|
|
1858
|
-
background-color:
|
|
1859
|
-
border:
|
|
1860
|
-
color: #
|
|
1861
|
-
line-height:
|
|
1852
|
+
background-color: transparent;
|
|
1853
|
+
border: 0px solid transparent;
|
|
1854
|
+
color: #007198;
|
|
1855
|
+
line-height: 22px;
|
|
1856
|
+
font-weight: 600;
|
|
1857
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
1858
|
+
font-style: normal;
|
|
1859
|
+
font-weight: normal;
|
|
1860
|
+
border: none;
|
|
1861
|
+
margin: 2px;
|
|
1862
1862
|
}
|
|
1863
1863
|
.lui-button-tertiary i,
|
|
1864
1864
|
.lui-button-tertiary svg *,
|
|
1865
1865
|
a.lui-button-tertiary i,
|
|
1866
1866
|
a.lui-button-tertiary svg * {
|
|
1867
|
-
color: #
|
|
1868
|
-
fill: #
|
|
1867
|
+
color: #007198;
|
|
1868
|
+
fill: #007198;
|
|
1869
1869
|
}
|
|
1870
1870
|
.lui-button-tertiary:visited,
|
|
1871
1871
|
a.lui-button-tertiary:visited {
|
|
1872
|
-
color: #
|
|
1872
|
+
color: #007198;
|
|
1873
1873
|
}
|
|
1874
1874
|
.lui-button-tertiary:hover,
|
|
1875
1875
|
a.lui-button-tertiary:hover {
|
|
1876
|
-
background-color: #
|
|
1876
|
+
background-color: #e2f3f7;
|
|
1877
1877
|
cursor: pointer;
|
|
1878
|
-
color: #
|
|
1879
|
-
border: 1px solid #
|
|
1878
|
+
color: #007198;
|
|
1879
|
+
border: 1px solid #fff;
|
|
1880
1880
|
}
|
|
1881
1881
|
.lui-button-tertiary:hover i,
|
|
1882
1882
|
.lui-button-tertiary:hover svg *,
|
|
1883
1883
|
a.lui-button-tertiary:hover i,
|
|
1884
1884
|
a.lui-button-tertiary:hover svg * {
|
|
1885
|
-
color: #
|
|
1886
|
-
fill: #
|
|
1885
|
+
color: #007198;
|
|
1886
|
+
fill: #007198;
|
|
1887
1887
|
}
|
|
1888
1888
|
.lui-button-tertiary:disabled,
|
|
1889
1889
|
a.lui-button-tertiary:disabled {
|
|
@@ -1904,13 +1904,10 @@ a.lui-button-tertiary:disabled:hover {
|
|
|
1904
1904
|
}
|
|
1905
1905
|
.lui-button-tertiary:active:enabled,
|
|
1906
1906
|
a.lui-button-tertiary:active:enabled {
|
|
1907
|
-
background-color: #
|
|
1907
|
+
background-color: #007198;
|
|
1908
1908
|
cursor: pointer;
|
|
1909
1909
|
color: rgba(255, 255, 255, 0.9);
|
|
1910
|
-
border: 1px solid #
|
|
1911
|
-
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1912
|
-
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1913
|
-
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1910
|
+
border: 1px solid #fff;
|
|
1914
1911
|
}
|
|
1915
1912
|
.lui-button-tertiary:active:enabled i,
|
|
1916
1913
|
.lui-button-tertiary:active:enabled svg *,
|
|
@@ -1919,12 +1916,104 @@ a.lui-button-tertiary:active:enabled svg * {
|
|
|
1919
1916
|
color: rgba(255, 255, 255, 0.6);
|
|
1920
1917
|
fill: rgba(255, 255, 255, 0.6);
|
|
1921
1918
|
}
|
|
1919
|
+
.lui-button-tertiary:hover,
|
|
1920
|
+
a.lui-button-tertiary:hover {
|
|
1921
|
+
border: none;
|
|
1922
|
+
}
|
|
1923
|
+
.lui-button-tertiary:active:enabled,
|
|
1924
|
+
a.lui-button-tertiary:active:enabled {
|
|
1925
|
+
border: none;
|
|
1926
|
+
}
|
|
1927
|
+
.lui-button-tertiary:disabled,
|
|
1928
|
+
a.lui-button-tertiary:disabled {
|
|
1929
|
+
color: #989189;
|
|
1930
|
+
background: none;
|
|
1931
|
+
text-decoration: none;
|
|
1932
|
+
border: none;
|
|
1933
|
+
}
|
|
1934
|
+
.lui-button-tertiary:disabled:hover,
|
|
1935
|
+
a.lui-button-tertiary:disabled:hover {
|
|
1936
|
+
cursor: not-allowed;
|
|
1937
|
+
border: none;
|
|
1938
|
+
}
|
|
1939
|
+
.lui-button-tertiary:disabled i,
|
|
1940
|
+
.lui-button-tertiary:disabled svg *,
|
|
1941
|
+
a.lui-button-tertiary:disabled i,
|
|
1942
|
+
a.lui-button-tertiary:disabled svg * {
|
|
1943
|
+
color: #989189;
|
|
1944
|
+
fill: #989189;
|
|
1945
|
+
}
|
|
1946
|
+
.lui-button-success,
|
|
1947
|
+
a.lui-button-success {
|
|
1948
|
+
background-color: #0aa245;
|
|
1949
|
+
border: 1px solid #0aa245;
|
|
1950
|
+
color: #fff;
|
|
1951
|
+
line-height: 24px;
|
|
1952
|
+
font-weight: 600;
|
|
1953
|
+
}
|
|
1954
|
+
.lui-button-success i,
|
|
1955
|
+
.lui-button-success svg *,
|
|
1956
|
+
a.lui-button-success i,
|
|
1957
|
+
a.lui-button-success svg * {
|
|
1958
|
+
color: #fff;
|
|
1959
|
+
fill: #fff;
|
|
1960
|
+
}
|
|
1961
|
+
.lui-button-success:visited,
|
|
1962
|
+
a.lui-button-success:visited {
|
|
1963
|
+
color: #fff;
|
|
1964
|
+
}
|
|
1965
|
+
.lui-button-success:hover,
|
|
1966
|
+
a.lui-button-success:hover {
|
|
1967
|
+
background-color: #107c3a;
|
|
1968
|
+
cursor: pointer;
|
|
1969
|
+
color: #fff;
|
|
1970
|
+
border: 1px solid #107c3a;
|
|
1971
|
+
}
|
|
1972
|
+
.lui-button-success:hover i,
|
|
1973
|
+
.lui-button-success:hover svg *,
|
|
1974
|
+
a.lui-button-success:hover i,
|
|
1975
|
+
a.lui-button-success:hover svg * {
|
|
1976
|
+
color: #fff;
|
|
1977
|
+
fill: #fff;
|
|
1978
|
+
}
|
|
1979
|
+
.lui-button-success:disabled,
|
|
1980
|
+
a.lui-button-success:disabled {
|
|
1981
|
+
color: #989189;
|
|
1982
|
+
background: #eaeaea;
|
|
1983
|
+
border-color: #6b6966;
|
|
1984
|
+
}
|
|
1985
|
+
.lui-button-success:disabled i,
|
|
1986
|
+
.lui-button-success:disabled svg *,
|
|
1987
|
+
a.lui-button-success:disabled i,
|
|
1988
|
+
a.lui-button-success:disabled svg * {
|
|
1989
|
+
color: #6b6966;
|
|
1990
|
+
fill: #6b6966;
|
|
1991
|
+
}
|
|
1992
|
+
.lui-button-success:disabled:hover,
|
|
1993
|
+
a.lui-button-success:disabled:hover {
|
|
1994
|
+
cursor: not-allowed;
|
|
1995
|
+
}
|
|
1996
|
+
.lui-button-success:active:enabled,
|
|
1997
|
+
a.lui-button-success:active:enabled {
|
|
1998
|
+
background-color: #094A22;
|
|
1999
|
+
cursor: pointer;
|
|
2000
|
+
color: rgba(255, 255, 255, 0.9);
|
|
2001
|
+
border: 1px solid #094A22;
|
|
2002
|
+
}
|
|
2003
|
+
.lui-button-success:active:enabled i,
|
|
2004
|
+
.lui-button-success:active:enabled svg *,
|
|
2005
|
+
a.lui-button-success:active:enabled i,
|
|
2006
|
+
a.lui-button-success:active:enabled svg * {
|
|
2007
|
+
color: rgba(255, 255, 255, 0.6);
|
|
2008
|
+
fill: rgba(255, 255, 255, 0.6);
|
|
2009
|
+
}
|
|
1922
2010
|
.lui-button-error,
|
|
1923
2011
|
a.lui-button-error {
|
|
1924
2012
|
background-color: #cc0000;
|
|
1925
2013
|
border: 1px solid #cc0000;
|
|
1926
2014
|
color: #fff;
|
|
1927
2015
|
line-height: 24px;
|
|
2016
|
+
font-weight: 600;
|
|
1928
2017
|
}
|
|
1929
2018
|
.lui-button-error i,
|
|
1930
2019
|
.lui-button-error svg *,
|
|
@@ -1974,9 +2063,6 @@ a.lui-button-error:active:enabled {
|
|
|
1974
2063
|
cursor: pointer;
|
|
1975
2064
|
color: rgba(255, 255, 255, 0.9);
|
|
1976
2065
|
border: 1px solid #5a0000;
|
|
1977
|
-
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1978
|
-
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1979
|
-
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1980
2066
|
}
|
|
1981
2067
|
.lui-button-error:active:enabled i,
|
|
1982
2068
|
.lui-button-error:active:enabled svg *,
|
|
@@ -1991,6 +2077,7 @@ a.lui-button-reversed-no-bg {
|
|
|
1991
2077
|
border: 1px solid transparent;
|
|
1992
2078
|
color: #fff;
|
|
1993
2079
|
line-height: 24px;
|
|
2080
|
+
font-weight: 600;
|
|
1994
2081
|
}
|
|
1995
2082
|
.lui-button-reversed-no-bg i,
|
|
1996
2083
|
.lui-button-reversed-no-bg svg *,
|
|
@@ -2040,9 +2127,6 @@ a.lui-button-reversed-no-bg:active:enabled {
|
|
|
2040
2127
|
cursor: pointer;
|
|
2041
2128
|
color: rgba(255, 255, 255, 0.9);
|
|
2042
2129
|
border: 1px solid transparent;
|
|
2043
|
-
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2044
|
-
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2045
|
-
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2046
2130
|
}
|
|
2047
2131
|
.lui-button-reversed-no-bg:active:enabled i,
|
|
2048
2132
|
.lui-button-reversed-no-bg:active:enabled svg *,
|
|
@@ -2079,7 +2163,8 @@ a.lui-button-text {
|
|
|
2079
2163
|
border: 0 solid #fff;
|
|
2080
2164
|
color: #0096cc;
|
|
2081
2165
|
line-height: 24px;
|
|
2082
|
-
|
|
2166
|
+
font-weight: 600;
|
|
2167
|
+
text-decoration: underline;
|
|
2083
2168
|
font-family: "Open Sans", system-ui, sans-serif;
|
|
2084
2169
|
font-style: normal;
|
|
2085
2170
|
font-weight: normal;
|
|
@@ -2135,9 +2220,6 @@ a.lui-button-text:active:enabled {
|
|
|
2135
2220
|
cursor: pointer;
|
|
2136
2221
|
color: rgba(0, 66, 93, 0.9);
|
|
2137
2222
|
border: 1px solid none;
|
|
2138
|
-
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2139
|
-
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2140
|
-
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2141
2223
|
}
|
|
2142
2224
|
.lui-button-text:active:enabled i,
|
|
2143
2225
|
.lui-button-text:active:enabled svg *,
|
|
@@ -2146,16 +2228,26 @@ a.lui-button-text:active:enabled svg * {
|
|
|
2146
2228
|
color: #00425d;
|
|
2147
2229
|
fill: #00425d;
|
|
2148
2230
|
}
|
|
2149
|
-
.lui-button-text:
|
|
2150
|
-
a.lui-button-text:
|
|
2151
|
-
|
|
2231
|
+
.lui-button-text:active:enabled,
|
|
2232
|
+
a.lui-button-text:active:enabled {
|
|
2233
|
+
background-color: #fff;
|
|
2234
|
+
cursor: pointer;
|
|
2235
|
+
-moz-box-shadow: none;
|
|
2236
|
+
-webkit-box-shadow: none;
|
|
2237
|
+
box-shadow: none;
|
|
2238
|
+
}
|
|
2239
|
+
.lui-button-text:active:enabled i,
|
|
2240
|
+
.lui-button-text:active:enabled svg *,
|
|
2241
|
+
a.lui-button-text:active:enabled i,
|
|
2242
|
+
a.lui-button-text:active:enabled svg * {
|
|
2243
|
+
color: #fff;
|
|
2244
|
+
fill: #fff;
|
|
2152
2245
|
}
|
|
2153
2246
|
.lui-button-text:disabled,
|
|
2154
2247
|
a.lui-button-text:disabled {
|
|
2155
2248
|
color: #989189;
|
|
2156
2249
|
background: none;
|
|
2157
|
-
|
|
2158
|
-
text-decoration: none;
|
|
2250
|
+
text-decoration: underline;
|
|
2159
2251
|
}
|
|
2160
2252
|
.lui-button-text:disabled:hover,
|
|
2161
2253
|
a.lui-button-text:disabled:hover {
|
|
@@ -2171,9 +2263,10 @@ a.lui-button-text:disabled svg * {
|
|
|
2171
2263
|
.lui-button-plain-text,
|
|
2172
2264
|
a.lui-button-plain-text {
|
|
2173
2265
|
background-color: transparent;
|
|
2174
|
-
border:
|
|
2266
|
+
border: 0 solid #fff;
|
|
2175
2267
|
color: inherit;
|
|
2176
2268
|
line-height: 24px;
|
|
2269
|
+
font-weight: 600;
|
|
2177
2270
|
padding: 0;
|
|
2178
2271
|
margin: 0;
|
|
2179
2272
|
font-family: inherit;
|
|
@@ -2193,6 +2286,13 @@ a.lui-button-plain-text svg * {
|
|
|
2193
2286
|
a.lui-button-plain-text:visited {
|
|
2194
2287
|
color: inherit;
|
|
2195
2288
|
}
|
|
2289
|
+
.lui-button-plain-text i,
|
|
2290
|
+
.lui-button-plain-text svg *,
|
|
2291
|
+
a.lui-button-plain-text i,
|
|
2292
|
+
a.lui-button-plain-text svg * {
|
|
2293
|
+
color: #989189;
|
|
2294
|
+
fill: #989189;
|
|
2295
|
+
}
|
|
2196
2296
|
.lui-button-plain-text:disabled,
|
|
2197
2297
|
a.lui-button-plain-text:disabled {
|
|
2198
2298
|
color: #989189;
|
|
@@ -2200,6 +2300,10 @@ a.lui-button-plain-text:disabled {
|
|
|
2200
2300
|
border: 0;
|
|
2201
2301
|
text-decoration: none;
|
|
2202
2302
|
}
|
|
2303
|
+
.lui-button-plain-text:disabled:hover,
|
|
2304
|
+
a.lui-button-plain-text:disabled:hover {
|
|
2305
|
+
cursor: not-allowed;
|
|
2306
|
+
}
|
|
2203
2307
|
.lui-button-plain-text:disabled i,
|
|
2204
2308
|
.lui-button-plain-text:disabled svg *,
|
|
2205
2309
|
a.lui-button-plain-text:disabled i,
|
|
@@ -2207,25 +2311,38 @@ a.lui-button-plain-text:disabled svg * {
|
|
|
2207
2311
|
color: #989189;
|
|
2208
2312
|
fill: #989189;
|
|
2209
2313
|
}
|
|
2210
|
-
.lui-button-icon-only,
|
|
2211
|
-
a.lui-button-icon-only
|
|
2314
|
+
.lui-button-icon-only,
|
|
2315
|
+
a.lui-button-icon-only {
|
|
2316
|
+
width: 40px;
|
|
2317
|
+
height: 40px;
|
|
2318
|
+
padding: 0;
|
|
2319
|
+
}
|
|
2320
|
+
.lui-button-icon-only .LuiIcon,
|
|
2321
|
+
a.lui-button-icon-only .LuiIcon {
|
|
2322
|
+
vertical-align: top;
|
|
2323
|
+
}
|
|
2324
|
+
.lui-button-icon-only i,
|
|
2325
|
+
a.lui-button-icon-only i {
|
|
2326
|
+
position: relative;
|
|
2327
|
+
top: 6px;
|
|
2328
|
+
margin: 0 12px 0 0;
|
|
2329
|
+
}
|
|
2330
|
+
.lui-button-icon-only-rev, .lui-button-icon-only-link,
|
|
2212
2331
|
a.lui-button-icon-only-rev,
|
|
2213
2332
|
a.lui-button-icon-only-link {
|
|
2214
2333
|
background-color: transparent;
|
|
2215
2334
|
border: 1px solid transparent;
|
|
2216
2335
|
color: #007198;
|
|
2217
2336
|
line-height: 24px;
|
|
2337
|
+
font-weight: 600;
|
|
2218
2338
|
line-height: 44px;
|
|
2219
2339
|
padding: 0;
|
|
2220
2340
|
width: 36px;
|
|
2221
2341
|
height: 36px;
|
|
2222
2342
|
}
|
|
2223
|
-
.lui-button-icon-only i,
|
|
2224
|
-
.lui-button-icon-only svg *, .lui-button-icon-only-rev i,
|
|
2343
|
+
.lui-button-icon-only-rev i,
|
|
2225
2344
|
.lui-button-icon-only-rev svg *, .lui-button-icon-only-link i,
|
|
2226
2345
|
.lui-button-icon-only-link svg *,
|
|
2227
|
-
a.lui-button-icon-only i,
|
|
2228
|
-
a.lui-button-icon-only svg *,
|
|
2229
2346
|
a.lui-button-icon-only-rev i,
|
|
2230
2347
|
a.lui-button-icon-only-rev svg *,
|
|
2231
2348
|
a.lui-button-icon-only-link i,
|
|
@@ -2233,14 +2350,12 @@ a.lui-button-icon-only-link svg * {
|
|
|
2233
2350
|
color: #007198;
|
|
2234
2351
|
fill: #007198;
|
|
2235
2352
|
}
|
|
2236
|
-
.lui-button-icon-only
|
|
2237
|
-
a.lui-button-icon-only:visited,
|
|
2353
|
+
.lui-button-icon-only-rev:visited, .lui-button-icon-only-link:visited,
|
|
2238
2354
|
a.lui-button-icon-only-rev:visited,
|
|
2239
2355
|
a.lui-button-icon-only-link:visited {
|
|
2240
2356
|
color: #007198;
|
|
2241
2357
|
}
|
|
2242
|
-
.lui-button-icon-only
|
|
2243
|
-
a.lui-button-icon-only:hover,
|
|
2358
|
+
.lui-button-icon-only-rev:hover, .lui-button-icon-only-link:hover,
|
|
2244
2359
|
a.lui-button-icon-only-rev:hover,
|
|
2245
2360
|
a.lui-button-icon-only-link:hover {
|
|
2246
2361
|
background-color: transparent;
|
|
@@ -2248,12 +2363,9 @@ a.lui-button-icon-only-link:hover {
|
|
|
2248
2363
|
color: #005678;
|
|
2249
2364
|
border: 1px solid transparent;
|
|
2250
2365
|
}
|
|
2251
|
-
.lui-button-icon-only:hover i,
|
|
2252
|
-
.lui-button-icon-only:hover svg *, .lui-button-icon-only-rev:hover i,
|
|
2366
|
+
.lui-button-icon-only-rev:hover i,
|
|
2253
2367
|
.lui-button-icon-only-rev:hover svg *, .lui-button-icon-only-link:hover i,
|
|
2254
2368
|
.lui-button-icon-only-link:hover svg *,
|
|
2255
|
-
a.lui-button-icon-only:hover i,
|
|
2256
|
-
a.lui-button-icon-only:hover svg *,
|
|
2257
2369
|
a.lui-button-icon-only-rev:hover i,
|
|
2258
2370
|
a.lui-button-icon-only-rev:hover svg *,
|
|
2259
2371
|
a.lui-button-icon-only-link:hover i,
|
|
@@ -2261,20 +2373,16 @@ a.lui-button-icon-only-link:hover svg * {
|
|
|
2261
2373
|
color: #005678;
|
|
2262
2374
|
fill: #005678;
|
|
2263
2375
|
}
|
|
2264
|
-
.lui-button-icon-only
|
|
2265
|
-
a.lui-button-icon-only:disabled,
|
|
2376
|
+
.lui-button-icon-only-rev:disabled, .lui-button-icon-only-link:disabled,
|
|
2266
2377
|
a.lui-button-icon-only-rev:disabled,
|
|
2267
2378
|
a.lui-button-icon-only-link:disabled {
|
|
2268
2379
|
color: #989189;
|
|
2269
2380
|
background: #eaeaea;
|
|
2270
2381
|
border-color: #6b6966;
|
|
2271
2382
|
}
|
|
2272
|
-
.lui-button-icon-only:disabled i,
|
|
2273
|
-
.lui-button-icon-only:disabled svg *, .lui-button-icon-only-rev:disabled i,
|
|
2383
|
+
.lui-button-icon-only-rev:disabled i,
|
|
2274
2384
|
.lui-button-icon-only-rev:disabled svg *, .lui-button-icon-only-link:disabled i,
|
|
2275
2385
|
.lui-button-icon-only-link:disabled svg *,
|
|
2276
|
-
a.lui-button-icon-only:disabled i,
|
|
2277
|
-
a.lui-button-icon-only:disabled svg *,
|
|
2278
2386
|
a.lui-button-icon-only-rev:disabled i,
|
|
2279
2387
|
a.lui-button-icon-only-rev:disabled svg *,
|
|
2280
2388
|
a.lui-button-icon-only-link:disabled i,
|
|
@@ -2282,30 +2390,22 @@ a.lui-button-icon-only-link:disabled svg * {
|
|
|
2282
2390
|
color: #6b6966;
|
|
2283
2391
|
fill: #6b6966;
|
|
2284
2392
|
}
|
|
2285
|
-
.lui-button-icon-only
|
|
2286
|
-
a.lui-button-icon-only:disabled:hover,
|
|
2393
|
+
.lui-button-icon-only-rev:disabled:hover, .lui-button-icon-only-link:disabled:hover,
|
|
2287
2394
|
a.lui-button-icon-only-rev:disabled:hover,
|
|
2288
2395
|
a.lui-button-icon-only-link:disabled:hover {
|
|
2289
2396
|
cursor: not-allowed;
|
|
2290
2397
|
}
|
|
2291
|
-
.lui-button-icon-only
|
|
2292
|
-
a.lui-button-icon-only:active:enabled,
|
|
2398
|
+
.lui-button-icon-only-rev:active:enabled, .lui-button-icon-only-link:active:enabled,
|
|
2293
2399
|
a.lui-button-icon-only-rev:active:enabled,
|
|
2294
2400
|
a.lui-button-icon-only-link:active:enabled {
|
|
2295
2401
|
background-color: transparent;
|
|
2296
2402
|
cursor: pointer;
|
|
2297
2403
|
color: rgba(0, 150, 204, 0.9);
|
|
2298
2404
|
border: 1px solid transparent;
|
|
2299
|
-
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2300
|
-
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2301
|
-
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2302
2405
|
}
|
|
2303
|
-
.lui-button-icon-only:active:enabled i,
|
|
2304
|
-
.lui-button-icon-only:active:enabled svg *, .lui-button-icon-only-rev:active:enabled i,
|
|
2406
|
+
.lui-button-icon-only-rev:active:enabled i,
|
|
2305
2407
|
.lui-button-icon-only-rev:active:enabled svg *, .lui-button-icon-only-link:active:enabled i,
|
|
2306
2408
|
.lui-button-icon-only-link:active:enabled svg *,
|
|
2307
|
-
a.lui-button-icon-only:active:enabled i,
|
|
2308
|
-
a.lui-button-icon-only:active:enabled svg *,
|
|
2309
2409
|
a.lui-button-icon-only-rev:active:enabled i,
|
|
2310
2410
|
a.lui-button-icon-only-rev:active:enabled svg *,
|
|
2311
2411
|
a.lui-button-icon-only-link:active:enabled i,
|
|
@@ -2313,8 +2413,7 @@ a.lui-button-icon-only-link:active:enabled svg * {
|
|
|
2313
2413
|
color: #0096cc;
|
|
2314
2414
|
fill: #0096cc;
|
|
2315
2415
|
}
|
|
2316
|
-
.lui-button-icon-only
|
|
2317
|
-
a.lui-button-icon-only:disabled,
|
|
2416
|
+
.lui-button-icon-only-rev:disabled, .lui-button-icon-only-link:disabled,
|
|
2318
2417
|
a.lui-button-icon-only-rev:disabled,
|
|
2319
2418
|
a.lui-button-icon-only-link:disabled {
|
|
2320
2419
|
background-color: transparent;
|
|
@@ -2358,16 +2457,23 @@ a.lui-button-icon-only-link {
|
|
|
2358
2457
|
}
|
|
2359
2458
|
.lui-button.lui-button-sm,
|
|
2360
2459
|
a.lui-button.lui-button-sm {
|
|
2361
|
-
line-height: 24px;
|
|
2362
2460
|
padding: 0.1875rem 0.5rem;
|
|
2363
2461
|
}
|
|
2462
|
+
.lui-button.lui-button-sm.lui-button-text,
|
|
2463
|
+
a.lui-button.lui-button-sm.lui-button-text {
|
|
2464
|
+
padding: 0;
|
|
2465
|
+
}
|
|
2466
|
+
.lui-button.lui-button-sm.lui-button-plain-text,
|
|
2467
|
+
a.lui-button.lui-button-sm.lui-button-plain-text {
|
|
2468
|
+
padding: 0;
|
|
2469
|
+
}
|
|
2364
2470
|
.lui-button.lui-button-sm.lui-button-icon,
|
|
2365
2471
|
a.lui-button.lui-button-sm.lui-button-icon {
|
|
2366
2472
|
padding: 0.125rem 0.5rem 0.125rem 0.25rem;
|
|
2367
2473
|
}
|
|
2368
2474
|
.lui-button.lui-button-sm.lui-button-icon .LuiIcon,
|
|
2369
2475
|
a.lui-button.lui-button-sm.lui-button-icon .LuiIcon {
|
|
2370
|
-
margin: 1px
|
|
2476
|
+
margin: 1px 4px -5px 0;
|
|
2371
2477
|
}
|
|
2372
2478
|
.lui-button.lui-button-sm.lui-button-icon i,
|
|
2373
2479
|
a.lui-button.lui-button-sm.lui-button-icon i {
|
|
@@ -2375,6 +2481,22 @@ a.lui-button.lui-button-sm.lui-button-icon i {
|
|
|
2375
2481
|
top: 6px;
|
|
2376
2482
|
margin: 0 12px 0 0;
|
|
2377
2483
|
}
|
|
2484
|
+
.lui-button.lui-button-sm.lui-button-icon-only,
|
|
2485
|
+
a.lui-button.lui-button-sm.lui-button-icon-only {
|
|
2486
|
+
width: 32px;
|
|
2487
|
+
height: 32px;
|
|
2488
|
+
padding: 0;
|
|
2489
|
+
}
|
|
2490
|
+
.lui-button.lui-button-sm.lui-button-icon-only .LuiIcon,
|
|
2491
|
+
a.lui-button.lui-button-sm.lui-button-icon-only .LuiIcon {
|
|
2492
|
+
vertical-align: top;
|
|
2493
|
+
}
|
|
2494
|
+
.lui-button.lui-button-sm.lui-button-icon-only i,
|
|
2495
|
+
a.lui-button.lui-button-sm.lui-button-icon-only i {
|
|
2496
|
+
position: relative;
|
|
2497
|
+
top: 6px;
|
|
2498
|
+
margin: 0 12px 0 0;
|
|
2499
|
+
}
|
|
2378
2500
|
.lui-button.lui-button-sm.lui-button-icon-right,
|
|
2379
2501
|
a.lui-button.lui-button-sm.lui-button-icon-right {
|
|
2380
2502
|
padding: 0.125rem 0.25rem 0.125rem 0.5rem;
|
|
@@ -2399,9 +2521,17 @@ a.lui-button.lui-button-sm.lui-button-reversed-no-bg .LuiIcon {
|
|
|
2399
2521
|
a.lui-button.lui-button-lg {
|
|
2400
2522
|
padding: 0.6875rem 1.125rem;
|
|
2401
2523
|
}
|
|
2524
|
+
.lui-button.lui-button-lg.lui-button-text,
|
|
2525
|
+
a.lui-button.lui-button-lg.lui-button-text {
|
|
2526
|
+
padding: 0;
|
|
2527
|
+
}
|
|
2528
|
+
.lui-button.lui-button-lg.lui-button-plain-text,
|
|
2529
|
+
a.lui-button.lui-button-lg.lui-button-plain-text {
|
|
2530
|
+
padding: 0;
|
|
2531
|
+
}
|
|
2402
2532
|
.lui-button.lui-button-lg.lui-button-icon,
|
|
2403
2533
|
a.lui-button.lui-button-lg.lui-button-icon {
|
|
2404
|
-
padding: 0.6875rem
|
|
2534
|
+
padding: 0.6875rem 16px 0.6875rem 0.75rem;
|
|
2405
2535
|
}
|
|
2406
2536
|
.lui-button.lui-button-lg.lui-button-icon i,
|
|
2407
2537
|
a.lui-button.lui-button-lg.lui-button-icon i {
|
|
@@ -2409,6 +2539,22 @@ a.lui-button.lui-button-lg.lui-button-icon i {
|
|
|
2409
2539
|
top: 6px;
|
|
2410
2540
|
margin: 0 0.5rem 0 0;
|
|
2411
2541
|
}
|
|
2542
|
+
.lui-button.lui-button-lg.lui-button-icon-only,
|
|
2543
|
+
a.lui-button.lui-button-lg.lui-button-icon-only {
|
|
2544
|
+
width: 48px;
|
|
2545
|
+
height: 48px;
|
|
2546
|
+
padding: 0;
|
|
2547
|
+
}
|
|
2548
|
+
.lui-button.lui-button-lg.lui-button-icon-only .LuiIcon,
|
|
2549
|
+
a.lui-button.lui-button-lg.lui-button-icon-only .LuiIcon {
|
|
2550
|
+
vertical-align: top;
|
|
2551
|
+
}
|
|
2552
|
+
.lui-button.lui-button-lg.lui-button-icon-only i,
|
|
2553
|
+
a.lui-button.lui-button-lg.lui-button-icon-only i {
|
|
2554
|
+
position: relative;
|
|
2555
|
+
top: 6px;
|
|
2556
|
+
margin: 0 0.5rem 0 0;
|
|
2557
|
+
}
|
|
2412
2558
|
.lui-button.lui-button-lg.lui-button-icon-right,
|
|
2413
2559
|
a.lui-button.lui-button-lg.lui-button-icon-right {
|
|
2414
2560
|
padding: 0.6875rem 0.75rem 0.6875rem 24px;
|
|
@@ -3237,7 +3383,7 @@ table .lui-checkbox-container input {
|
|
|
3237
3383
|
font-style: normal;
|
|
3238
3384
|
font-weight: 300;
|
|
3239
3385
|
}
|
|
3240
|
-
.lui-menu.szh-menu a[role=menuitem] {
|
|
3386
|
+
.lui-menu.szh-menu div, .lui-menu.szh-menu a[role=menuitem] {
|
|
3241
3387
|
text-decoration: none;
|
|
3242
3388
|
color: #2a292c;
|
|
3243
3389
|
font-family: "Open Sans", system-ui, sans-serif;
|
|
@@ -3245,6 +3391,117 @@ table .lui-checkbox-container input {
|
|
|
3245
3391
|
font-weight: 300;
|
|
3246
3392
|
}
|
|
3247
3393
|
|
|
3394
|
+
/**
|
|
3395
|
+
* Here are styles for lui select menu
|
|
3396
|
+
*/
|
|
3397
|
+
@media screen and (min-width: 480px) {
|
|
3398
|
+
.lui-select-menu.szh-menu-container {
|
|
3399
|
+
position: absolute;
|
|
3400
|
+
}
|
|
3401
|
+
}
|
|
3402
|
+
|
|
3403
|
+
.lui-select-menu.szh-menu {
|
|
3404
|
+
z-index: 900;
|
|
3405
|
+
width: 92vw;
|
|
3406
|
+
overflow-y: scroll;
|
|
3407
|
+
color: #2a292c;
|
|
3408
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
3409
|
+
font-style: normal;
|
|
3410
|
+
font-weight: 300;
|
|
3411
|
+
}
|
|
3412
|
+
@media screen and (min-width: 480px) {
|
|
3413
|
+
.lui-select-menu.szh-menu {
|
|
3414
|
+
overflow: visible;
|
|
3415
|
+
height: auto;
|
|
3416
|
+
width: 240px;
|
|
3417
|
+
}
|
|
3418
|
+
}
|
|
3419
|
+
|
|
3420
|
+
.lui-select-menuItem {
|
|
3421
|
+
padding: 0.5rem 0.75rem 0.5rem 0.5rem;
|
|
3422
|
+
display: flex;
|
|
3423
|
+
line-height: 1;
|
|
3424
|
+
transition: all 0.2s ease-in-out;
|
|
3425
|
+
fill: #6b6966;
|
|
3426
|
+
}
|
|
3427
|
+
.lui-select-menuItem:hover {
|
|
3428
|
+
background-color: #e2f3f7;
|
|
3429
|
+
}
|
|
3430
|
+
|
|
3431
|
+
.lui-select-menuItem--error p {
|
|
3432
|
+
color: #cc0000;
|
|
3433
|
+
}
|
|
3434
|
+
.lui-select-menuItem--error .LuiIcon {
|
|
3435
|
+
fill: #cc0000;
|
|
3436
|
+
}
|
|
3437
|
+
|
|
3438
|
+
.lui-select-menuItemText {
|
|
3439
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
3440
|
+
font-style: normal;
|
|
3441
|
+
font-weight: normal;
|
|
3442
|
+
color: #2a292c;
|
|
3443
|
+
margin: 0;
|
|
3444
|
+
padding-left: 2rem;
|
|
3445
|
+
}
|
|
3446
|
+
.lui-select-menuItemText--noPadding {
|
|
3447
|
+
padding-left: 0.25rem;
|
|
3448
|
+
}
|
|
3449
|
+
|
|
3450
|
+
.lui-select-icon + .lui-select-menuItemText {
|
|
3451
|
+
padding-left: 0.5rem;
|
|
3452
|
+
}
|
|
3453
|
+
|
|
3454
|
+
.lui-select-menu-group {
|
|
3455
|
+
height: 32px;
|
|
3456
|
+
color: #6b6966;
|
|
3457
|
+
padding-left: 0.75rem;
|
|
3458
|
+
text-transform: none;
|
|
3459
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
3460
|
+
font-style: normal;
|
|
3461
|
+
font-weight: 600;
|
|
3462
|
+
}
|
|
3463
|
+
|
|
3464
|
+
.lui-select-submenu {
|
|
3465
|
+
flex: 1;
|
|
3466
|
+
}
|
|
3467
|
+
.lui-select-submenu div[role=menuitem] {
|
|
3468
|
+
padding: 0.5rem 0.5rem 0.5rem 2.5rem;
|
|
3469
|
+
text-decoration: none;
|
|
3470
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
3471
|
+
font-style: normal;
|
|
3472
|
+
font-weight: normal;
|
|
3473
|
+
height: 40px;
|
|
3474
|
+
}
|
|
3475
|
+
.lui-select-submenu .szh-menu__item--hover {
|
|
3476
|
+
background-color: #e2f3f7;
|
|
3477
|
+
}
|
|
3478
|
+
|
|
3479
|
+
.lui-select-submenu-with-icon {
|
|
3480
|
+
flex: 1;
|
|
3481
|
+
}
|
|
3482
|
+
.lui-select-submenu-with-icon div[role=menuitem] {
|
|
3483
|
+
padding-left: 0px;
|
|
3484
|
+
text-decoration: none;
|
|
3485
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
3486
|
+
font-style: normal;
|
|
3487
|
+
font-weight: normal;
|
|
3488
|
+
height: 40px;
|
|
3489
|
+
}
|
|
3490
|
+
|
|
3491
|
+
.lui-select-divider {
|
|
3492
|
+
margin: 0.25rem;
|
|
3493
|
+
}
|
|
3494
|
+
|
|
3495
|
+
.lui-menu-sub-header {
|
|
3496
|
+
display: flex;
|
|
3497
|
+
align-items: center;
|
|
3498
|
+
}
|
|
3499
|
+
|
|
3500
|
+
.lui-menu-sub-header-icon {
|
|
3501
|
+
margin: 0.5rem;
|
|
3502
|
+
fill: #6b6966;
|
|
3503
|
+
}
|
|
3504
|
+
|
|
3248
3505
|
.lui-expand-container {
|
|
3249
3506
|
display: flex;
|
|
3250
3507
|
align-items: center;
|
|
@@ -5023,6 +5280,127 @@ body.lui-menu-drawer-open {
|
|
|
5023
5280
|
border-color: #cc0000;
|
|
5024
5281
|
}
|
|
5025
5282
|
|
|
5283
|
+
.LuiSearchInput {
|
|
5284
|
+
box-shadow: 0px 2px 3px 0px #00000040, 0px 0px 3px 0px #00000026;
|
|
5285
|
+
background: #ffffff;
|
|
5286
|
+
border-radius: 0 3px 3px 0;
|
|
5287
|
+
margin: 0;
|
|
5288
|
+
max-width: 600px;
|
|
5289
|
+
border: none;
|
|
5290
|
+
}
|
|
5291
|
+
.LuiSearchInput:active, .LuiSearchInput:focus, .LuiSearchInput:focus-within {
|
|
5292
|
+
box-shadow: 0px 1px 6px 0px #00000026, 0px 6px 10px 0px #00000040;
|
|
5293
|
+
}
|
|
5294
|
+
|
|
5295
|
+
.LuiSearchInput-inputWrapper {
|
|
5296
|
+
position: relative;
|
|
5297
|
+
display: block;
|
|
5298
|
+
border: none;
|
|
5299
|
+
}
|
|
5300
|
+
|
|
5301
|
+
.LuiSearchInput-input {
|
|
5302
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
5303
|
+
font-style: normal;
|
|
5304
|
+
font-weight: normal;
|
|
5305
|
+
margin-bottom: 0;
|
|
5306
|
+
height: 3rem;
|
|
5307
|
+
color: #2a292c;
|
|
5308
|
+
caret-color: #2a292c;
|
|
5309
|
+
border: none;
|
|
5310
|
+
padding-top: 0.75rem;
|
|
5311
|
+
padding-right: 2rem;
|
|
5312
|
+
padding-bottom: 0.75rem;
|
|
5313
|
+
padding-left: 3rem;
|
|
5314
|
+
width: 100%;
|
|
5315
|
+
}
|
|
5316
|
+
.LuiSearchInput-input::placeholder {
|
|
5317
|
+
font-weight: normal;
|
|
5318
|
+
font-style: italic;
|
|
5319
|
+
color: #6b6966;
|
|
5320
|
+
opacity: 1;
|
|
5321
|
+
}
|
|
5322
|
+
.isDisabled .LuiSearchInput-input::placeholder {
|
|
5323
|
+
color: #989189;
|
|
5324
|
+
}
|
|
5325
|
+
.LuiSearchInput-input:focus-visible {
|
|
5326
|
+
outline-width: 0;
|
|
5327
|
+
}
|
|
5328
|
+
|
|
5329
|
+
.LuiSearchInput-startIconPosition {
|
|
5330
|
+
position: absolute;
|
|
5331
|
+
left: 7px;
|
|
5332
|
+
top: 17%;
|
|
5333
|
+
}
|
|
5334
|
+
.LuiSearchInput-startIconPosition svg {
|
|
5335
|
+
fill: #6b6966;
|
|
5336
|
+
}
|
|
5337
|
+
|
|
5338
|
+
.LuiSearchInput-iconPosition {
|
|
5339
|
+
position: absolute;
|
|
5340
|
+
right: 7px;
|
|
5341
|
+
top: 17%;
|
|
5342
|
+
}
|
|
5343
|
+
.LuiSearchInput-iconPosition svg {
|
|
5344
|
+
fill: #6b6966;
|
|
5345
|
+
}
|
|
5346
|
+
|
|
5347
|
+
.LuiSearchInput-results {
|
|
5348
|
+
max-height: 275px;
|
|
5349
|
+
overflow: auto;
|
|
5350
|
+
}
|
|
5351
|
+
|
|
5352
|
+
.LuiSearchInput-resultEntry {
|
|
5353
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
5354
|
+
font-style: normal;
|
|
5355
|
+
font-weight: normal;
|
|
5356
|
+
font-size: 16px;
|
|
5357
|
+
cursor: pointer;
|
|
5358
|
+
padding: 5px 20px;
|
|
5359
|
+
line-height: 24px;
|
|
5360
|
+
color: #2a292c;
|
|
5361
|
+
height: 40px;
|
|
5362
|
+
}
|
|
5363
|
+
.LuiSearchInput-resultEntry.selected {
|
|
5364
|
+
background-color: #e2f3f7;
|
|
5365
|
+
}
|
|
5366
|
+
|
|
5367
|
+
.LuiSearchInput-resultHeader {
|
|
5368
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
5369
|
+
font-style: normal;
|
|
5370
|
+
font-weight: normal;
|
|
5371
|
+
font-size: 14px;
|
|
5372
|
+
padding: 5px 20px;
|
|
5373
|
+
line-height: 18px;
|
|
5374
|
+
letter-spacing: 0.02em;
|
|
5375
|
+
color: #6b6966;
|
|
5376
|
+
}
|
|
5377
|
+
|
|
5378
|
+
.LuiSearchInput-disclaimer {
|
|
5379
|
+
font-family: "Open Sans", system-ui, sans-serif;
|
|
5380
|
+
font-style: normal;
|
|
5381
|
+
font-weight: normal;
|
|
5382
|
+
font-size: 14px;
|
|
5383
|
+
padding: 5px 20px;
|
|
5384
|
+
line-height: 20px;
|
|
5385
|
+
color: #6b6966;
|
|
5386
|
+
}
|
|
5387
|
+
|
|
5388
|
+
.LuiSearchInput-loader {
|
|
5389
|
+
padding: 5px 20px;
|
|
5390
|
+
}
|
|
5391
|
+
|
|
5392
|
+
.LuiSearchInput-groupSeparator {
|
|
5393
|
+
margin-left: 20px;
|
|
5394
|
+
margin-right: 20px;
|
|
5395
|
+
background-color: #C4C4C4;
|
|
5396
|
+
}
|
|
5397
|
+
|
|
5398
|
+
.LuiSearchInput-resultSeparator {
|
|
5399
|
+
margin-left: 10px;
|
|
5400
|
+
margin-right: 10px;
|
|
5401
|
+
background-color: #eaeaea;
|
|
5402
|
+
}
|
|
5403
|
+
|
|
5026
5404
|
.LuiComboSelect-label-text {
|
|
5027
5405
|
font-family: "Open Sans", system-ui, sans-serif;
|
|
5028
5406
|
font-style: normal;
|