@linzjs/lui 15.1.14 → 16.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 +26 -0
- package/README.md +2 -2
- package/dist/components/LuiFilterContainer/LuiFilterContainer.d.ts +1 -0
- package/dist/components/LuiFormElements/ClearableLuiTextInput/ClearableLuiTextInput.d.ts +14 -0
- package/dist/components/LuiFormElements/LuiTextInput/LuiTextInput.d.ts +1 -0
- package/dist/components/LuiIcon/LuiIcon.d.ts +2 -2
- package/dist/index.js +28 -7
- package/dist/index.js.map +1 -1
- package/dist/lui.css +122 -93
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +28 -7
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiFormElements/LuiTextInput/LuiTextInput.scss +10 -0
- package/dist/scss/Elements/Buttons/buttons.scss +67 -46
- package/dist/scss/Foundation/Variables/_LuiColors.scss +14 -4
- package/package.json +1 -1
package/dist/lui.css
CHANGED
|
@@ -173,11 +173,11 @@ textarea {
|
|
|
173
173
|
--error-focus: #5a0000;
|
|
174
174
|
--error-bg: #f5cccc;
|
|
175
175
|
--visited: #00425d;
|
|
176
|
-
--green-hover: #
|
|
177
|
-
--color-green-active: #
|
|
176
|
+
--green-hover: #107c3a;
|
|
177
|
+
--color-green-active: #094A22;
|
|
178
178
|
--green-btn: #0aa245;
|
|
179
179
|
--txt-link: #0096cc;
|
|
180
|
-
--color-primary-hover-btn: #
|
|
180
|
+
--color-primary-hover-btn: #005678;
|
|
181
181
|
--color-selection: #c7e9f3;
|
|
182
182
|
--heading-color: #017a76;
|
|
183
183
|
--heading-color--secondary: #2a292c;
|
|
@@ -231,11 +231,11 @@ textarea {
|
|
|
231
231
|
info: #3a7cdf;
|
|
232
232
|
info-bg: #d8e5f9;
|
|
233
233
|
visited: #00425d;
|
|
234
|
-
green-hover: #
|
|
235
|
-
green-active: #
|
|
234
|
+
green-hover: #107c3a;
|
|
235
|
+
green-active: #094A22;
|
|
236
236
|
green-btn: #0aa245;
|
|
237
237
|
txt-link: #0096cc;
|
|
238
|
-
primary-hover-btn: #
|
|
238
|
+
primary-hover-btn: #005678;
|
|
239
239
|
selection: #c7e9f3;
|
|
240
240
|
heading-color: #017a76;
|
|
241
241
|
heading-color--secondary: #2a292c;
|
|
@@ -1639,9 +1639,9 @@ button {
|
|
|
1639
1639
|
font-style: normal;
|
|
1640
1640
|
font-weight: 700;
|
|
1641
1641
|
font-size: 1rem;
|
|
1642
|
-
line-height:
|
|
1642
|
+
line-height: 24px;
|
|
1643
1643
|
margin: 0;
|
|
1644
|
-
padding: 0
|
|
1644
|
+
padding: 0.4375rem 1rem;
|
|
1645
1645
|
border: none;
|
|
1646
1646
|
border-radius: 3px;
|
|
1647
1647
|
transition: background-color 0.3s, color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
|
|
@@ -1659,9 +1659,9 @@ a.lui-button {
|
|
|
1659
1659
|
font-style: normal;
|
|
1660
1660
|
font-weight: 700;
|
|
1661
1661
|
font-size: 1rem;
|
|
1662
|
-
line-height:
|
|
1662
|
+
line-height: 24px;
|
|
1663
1663
|
margin: 0;
|
|
1664
|
-
padding: 0
|
|
1664
|
+
padding: 0.4375rem 1rem;
|
|
1665
1665
|
border: none;
|
|
1666
1666
|
border-radius: 3px;
|
|
1667
1667
|
transition: background-color 0.3s, color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
|
|
@@ -1682,24 +1682,28 @@ a.lui-button {
|
|
|
1682
1682
|
}
|
|
1683
1683
|
.lui-button.lui-button-icon-right,
|
|
1684
1684
|
a.lui-button.lui-button-icon-right {
|
|
1685
|
-
padding: 0
|
|
1685
|
+
padding: 0.25rem 0.5rem 0.5rem 0.75rem;
|
|
1686
1686
|
}
|
|
1687
|
-
.lui-button.lui-button-icon-right i,
|
|
1688
1687
|
.lui-button.lui-button-icon-right .LuiIcon,
|
|
1689
|
-
a.lui-button.lui-button-icon-right i,
|
|
1690
1688
|
a.lui-button.lui-button-icon-right .LuiIcon {
|
|
1689
|
+
margin: 3px 0 -7px 12px;
|
|
1690
|
+
}
|
|
1691
|
+
.lui-button.lui-button-icon-right i,
|
|
1692
|
+
a.lui-button.lui-button-icon-right i {
|
|
1691
1693
|
position: relative;
|
|
1692
1694
|
top: 6px;
|
|
1693
1695
|
margin: 0 0 0 12px;
|
|
1694
1696
|
}
|
|
1695
1697
|
.lui-button.lui-button-icon,
|
|
1696
1698
|
a.lui-button.lui-button-icon {
|
|
1697
|
-
padding: 0 0.
|
|
1699
|
+
padding: 0.25rem 1rem 0.5rem 0.5rem;
|
|
1698
1700
|
}
|
|
1699
|
-
.lui-button.lui-button-icon i,
|
|
1700
1701
|
.lui-button.lui-button-icon .LuiIcon,
|
|
1701
|
-
a.lui-button.lui-button-icon i,
|
|
1702
1702
|
a.lui-button.lui-button-icon .LuiIcon {
|
|
1703
|
+
margin: 3px 12px -7px 0;
|
|
1704
|
+
}
|
|
1705
|
+
.lui-button.lui-button-icon i,
|
|
1706
|
+
a.lui-button.lui-button-icon i {
|
|
1703
1707
|
position: relative;
|
|
1704
1708
|
top: 6px;
|
|
1705
1709
|
margin: 0 12px 0 0;
|
|
@@ -1707,9 +1711,9 @@ a.lui-button.lui-button-icon .LuiIcon {
|
|
|
1707
1711
|
.lui-button-primary,
|
|
1708
1712
|
a.lui-button-primary {
|
|
1709
1713
|
background-color: #007198;
|
|
1710
|
-
border:
|
|
1714
|
+
border: 1px solid #007198;
|
|
1711
1715
|
color: #fff;
|
|
1712
|
-
line-height:
|
|
1716
|
+
line-height: 24px;
|
|
1713
1717
|
}
|
|
1714
1718
|
.lui-button-primary i,
|
|
1715
1719
|
.lui-button-primary svg *,
|
|
@@ -1724,10 +1728,10 @@ a.lui-button-primary:visited {
|
|
|
1724
1728
|
}
|
|
1725
1729
|
.lui-button-primary:hover,
|
|
1726
1730
|
a.lui-button-primary:hover {
|
|
1727
|
-
background-color: #
|
|
1731
|
+
background-color: #005678;
|
|
1728
1732
|
cursor: pointer;
|
|
1729
1733
|
color: #fff;
|
|
1730
|
-
border:
|
|
1734
|
+
border: 1px solid #005678;
|
|
1731
1735
|
}
|
|
1732
1736
|
.lui-button-primary:hover i,
|
|
1733
1737
|
.lui-button-primary:hover svg *,
|
|
@@ -1757,8 +1761,8 @@ a.lui-button-primary:disabled:hover {
|
|
|
1757
1761
|
a.lui-button-primary:active:enabled {
|
|
1758
1762
|
background-color: #00425d;
|
|
1759
1763
|
cursor: pointer;
|
|
1760
|
-
color: rgba(255, 255, 255, 0.
|
|
1761
|
-
border:
|
|
1764
|
+
color: rgba(255, 255, 255, 0.9);
|
|
1765
|
+
border: 1px solid #00425d;
|
|
1762
1766
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1763
1767
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1764
1768
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -1773,9 +1777,9 @@ a.lui-button-primary:active:enabled svg * {
|
|
|
1773
1777
|
.lui-button-secondary,
|
|
1774
1778
|
a.lui-button-secondary {
|
|
1775
1779
|
background-color: #fff;
|
|
1776
|
-
border:
|
|
1780
|
+
border: 1px solid #007198;
|
|
1777
1781
|
color: #007198;
|
|
1778
|
-
line-height:
|
|
1782
|
+
line-height: 24px;
|
|
1779
1783
|
}
|
|
1780
1784
|
.lui-button-secondary i,
|
|
1781
1785
|
.lui-button-secondary svg *,
|
|
@@ -1790,17 +1794,17 @@ a.lui-button-secondary:visited {
|
|
|
1790
1794
|
}
|
|
1791
1795
|
.lui-button-secondary:hover,
|
|
1792
1796
|
a.lui-button-secondary:hover {
|
|
1793
|
-
background-color: #
|
|
1797
|
+
background-color: #e2f3f7;
|
|
1794
1798
|
cursor: pointer;
|
|
1795
|
-
color: #
|
|
1796
|
-
border:
|
|
1799
|
+
color: #007198;
|
|
1800
|
+
border: 1px solid #007198;
|
|
1797
1801
|
}
|
|
1798
1802
|
.lui-button-secondary:hover i,
|
|
1799
1803
|
.lui-button-secondary:hover svg *,
|
|
1800
1804
|
a.lui-button-secondary:hover i,
|
|
1801
1805
|
a.lui-button-secondary:hover svg * {
|
|
1802
|
-
color: #
|
|
1803
|
-
fill: #
|
|
1806
|
+
color: #007198;
|
|
1807
|
+
fill: #007198;
|
|
1804
1808
|
}
|
|
1805
1809
|
.lui-button-secondary:disabled,
|
|
1806
1810
|
a.lui-button-secondary:disabled {
|
|
@@ -1821,10 +1825,10 @@ a.lui-button-secondary:disabled:hover {
|
|
|
1821
1825
|
}
|
|
1822
1826
|
.lui-button-secondary:active:enabled,
|
|
1823
1827
|
a.lui-button-secondary:active:enabled {
|
|
1824
|
-
background-color: #
|
|
1828
|
+
background-color: #007198;
|
|
1825
1829
|
cursor: pointer;
|
|
1826
|
-
color: rgba(255, 255, 255, 0.
|
|
1827
|
-
border:
|
|
1830
|
+
color: rgba(255, 255, 255, 0.9);
|
|
1831
|
+
border: 1px solid #007198;
|
|
1828
1832
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1829
1833
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1830
1834
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -1849,9 +1853,9 @@ a.lui-button-secondary:hover i {
|
|
|
1849
1853
|
.lui-button-tertiary,
|
|
1850
1854
|
a.lui-button-tertiary {
|
|
1851
1855
|
background-color: #0aa245;
|
|
1852
|
-
border:
|
|
1856
|
+
border: 1px solid #0aa245;
|
|
1853
1857
|
color: #fff;
|
|
1854
|
-
line-height:
|
|
1858
|
+
line-height: 24px;
|
|
1855
1859
|
}
|
|
1856
1860
|
.lui-button-tertiary i,
|
|
1857
1861
|
.lui-button-tertiary svg *,
|
|
@@ -1866,10 +1870,10 @@ a.lui-button-tertiary:visited {
|
|
|
1866
1870
|
}
|
|
1867
1871
|
.lui-button-tertiary:hover,
|
|
1868
1872
|
a.lui-button-tertiary:hover {
|
|
1869
|
-
background-color: #
|
|
1873
|
+
background-color: #107c3a;
|
|
1870
1874
|
cursor: pointer;
|
|
1871
1875
|
color: #fff;
|
|
1872
|
-
border:
|
|
1876
|
+
border: 1px solid #107c3a;
|
|
1873
1877
|
}
|
|
1874
1878
|
.lui-button-tertiary:hover i,
|
|
1875
1879
|
.lui-button-tertiary:hover svg *,
|
|
@@ -1897,10 +1901,10 @@ a.lui-button-tertiary:disabled:hover {
|
|
|
1897
1901
|
}
|
|
1898
1902
|
.lui-button-tertiary:active:enabled,
|
|
1899
1903
|
a.lui-button-tertiary:active:enabled {
|
|
1900
|
-
background-color: #
|
|
1904
|
+
background-color: #094A22;
|
|
1901
1905
|
cursor: pointer;
|
|
1902
|
-
color: rgba(255, 255, 255, 0.
|
|
1903
|
-
border:
|
|
1906
|
+
color: rgba(255, 255, 255, 0.9);
|
|
1907
|
+
border: 1px solid #094A22;
|
|
1904
1908
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1905
1909
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1906
1910
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -1915,9 +1919,9 @@ a.lui-button-tertiary:active:enabled svg * {
|
|
|
1915
1919
|
.lui-button-error,
|
|
1916
1920
|
a.lui-button-error {
|
|
1917
1921
|
background-color: #cc0000;
|
|
1918
|
-
border:
|
|
1922
|
+
border: 1px solid #cc0000;
|
|
1919
1923
|
color: #fff;
|
|
1920
|
-
line-height:
|
|
1924
|
+
line-height: 24px;
|
|
1921
1925
|
}
|
|
1922
1926
|
.lui-button-error i,
|
|
1923
1927
|
.lui-button-error svg *,
|
|
@@ -1932,10 +1936,10 @@ a.lui-button-error:visited {
|
|
|
1932
1936
|
}
|
|
1933
1937
|
.lui-button-error:hover,
|
|
1934
1938
|
a.lui-button-error:hover {
|
|
1935
|
-
background-color: #
|
|
1939
|
+
background-color: #8f0000;
|
|
1936
1940
|
cursor: pointer;
|
|
1937
1941
|
color: #fff;
|
|
1938
|
-
border:
|
|
1942
|
+
border: 1px solid #8f0000;
|
|
1939
1943
|
}
|
|
1940
1944
|
.lui-button-error:hover i,
|
|
1941
1945
|
.lui-button-error:hover svg *,
|
|
@@ -1965,8 +1969,8 @@ a.lui-button-error:disabled:hover {
|
|
|
1965
1969
|
a.lui-button-error:active:enabled {
|
|
1966
1970
|
background-color: #5a0000;
|
|
1967
1971
|
cursor: pointer;
|
|
1968
|
-
color: rgba(255, 255, 255, 0.
|
|
1969
|
-
border:
|
|
1972
|
+
color: rgba(255, 255, 255, 0.9);
|
|
1973
|
+
border: 1px solid #5a0000;
|
|
1970
1974
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1971
1975
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1972
1976
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -1981,9 +1985,9 @@ a.lui-button-error:active:enabled svg * {
|
|
|
1981
1985
|
.lui-button-reversed-no-bg,
|
|
1982
1986
|
a.lui-button-reversed-no-bg {
|
|
1983
1987
|
background-color: transparent;
|
|
1984
|
-
border:
|
|
1988
|
+
border: 1px solid transparent;
|
|
1985
1989
|
color: #fff;
|
|
1986
|
-
line-height:
|
|
1990
|
+
line-height: 24px;
|
|
1987
1991
|
}
|
|
1988
1992
|
.lui-button-reversed-no-bg i,
|
|
1989
1993
|
.lui-button-reversed-no-bg svg *,
|
|
@@ -2001,7 +2005,7 @@ a.lui-button-reversed-no-bg:hover {
|
|
|
2001
2005
|
background-color: transparent;
|
|
2002
2006
|
cursor: pointer;
|
|
2003
2007
|
color: rgba(255, 255, 255, 0.8);
|
|
2004
|
-
border:
|
|
2008
|
+
border: 1px solid transparent;
|
|
2005
2009
|
}
|
|
2006
2010
|
.lui-button-reversed-no-bg:hover i,
|
|
2007
2011
|
.lui-button-reversed-no-bg:hover svg *,
|
|
@@ -2031,8 +2035,8 @@ a.lui-button-reversed-no-bg:disabled:hover {
|
|
|
2031
2035
|
a.lui-button-reversed-no-bg:active:enabled {
|
|
2032
2036
|
background-color: transparent;
|
|
2033
2037
|
cursor: pointer;
|
|
2034
|
-
color: rgba(255, 255, 255, 0.
|
|
2035
|
-
border:
|
|
2038
|
+
color: rgba(255, 255, 255, 0.9);
|
|
2039
|
+
border: 1px solid transparent;
|
|
2036
2040
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2037
2041
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2038
2042
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -2096,7 +2100,7 @@ a.lui-button-text:hover {
|
|
|
2096
2100
|
background-color: transparent;
|
|
2097
2101
|
cursor: pointer;
|
|
2098
2102
|
color: #00425d;
|
|
2099
|
-
border:
|
|
2103
|
+
border: 1px solid none;
|
|
2100
2104
|
}
|
|
2101
2105
|
.lui-button-text:hover i,
|
|
2102
2106
|
.lui-button-text:hover svg *,
|
|
@@ -2126,8 +2130,8 @@ a.lui-button-text:disabled:hover {
|
|
|
2126
2130
|
a.lui-button-text:active:enabled {
|
|
2127
2131
|
background-color: none;
|
|
2128
2132
|
cursor: pointer;
|
|
2129
|
-
color: rgba(0, 66, 93, 0.
|
|
2130
|
-
border:
|
|
2133
|
+
color: rgba(0, 66, 93, 0.9);
|
|
2134
|
+
border: 1px solid none;
|
|
2131
2135
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2132
2136
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2133
2137
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -2141,7 +2145,7 @@ a.lui-button-text:active:enabled svg * {
|
|
|
2141
2145
|
}
|
|
2142
2146
|
.lui-button-text:hover,
|
|
2143
2147
|
a.lui-button-text:hover {
|
|
2144
|
-
border-bottom:
|
|
2148
|
+
border-bottom: 1px solid;
|
|
2145
2149
|
}
|
|
2146
2150
|
.lui-button-text:disabled,
|
|
2147
2151
|
a.lui-button-text:disabled {
|
|
@@ -2164,9 +2168,9 @@ a.lui-button-text:disabled svg * {
|
|
|
2164
2168
|
.lui-button-plain-text,
|
|
2165
2169
|
a.lui-button-plain-text {
|
|
2166
2170
|
background-color: transparent;
|
|
2167
|
-
border:
|
|
2171
|
+
border: 1px solid #fff;
|
|
2168
2172
|
color: inherit;
|
|
2169
|
-
line-height:
|
|
2173
|
+
line-height: 24px;
|
|
2170
2174
|
padding: 0;
|
|
2171
2175
|
margin: 0;
|
|
2172
2176
|
font-family: inherit;
|
|
@@ -2205,9 +2209,9 @@ a.lui-button-icon-only,
|
|
|
2205
2209
|
a.lui-button-icon-only-rev,
|
|
2206
2210
|
a.lui-button-icon-only-link {
|
|
2207
2211
|
background-color: transparent;
|
|
2208
|
-
border:
|
|
2212
|
+
border: 1px solid transparent;
|
|
2209
2213
|
color: #007198;
|
|
2210
|
-
line-height:
|
|
2214
|
+
line-height: 24px;
|
|
2211
2215
|
line-height: 44px;
|
|
2212
2216
|
padding: 0;
|
|
2213
2217
|
width: 36px;
|
|
@@ -2238,8 +2242,8 @@ a.lui-button-icon-only-rev:hover,
|
|
|
2238
2242
|
a.lui-button-icon-only-link:hover {
|
|
2239
2243
|
background-color: transparent;
|
|
2240
2244
|
cursor: pointer;
|
|
2241
|
-
color: #
|
|
2242
|
-
border:
|
|
2245
|
+
color: #005678;
|
|
2246
|
+
border: 1px solid transparent;
|
|
2243
2247
|
}
|
|
2244
2248
|
.lui-button-icon-only:hover i,
|
|
2245
2249
|
.lui-button-icon-only:hover svg *, .lui-button-icon-only-rev:hover i,
|
|
@@ -2251,8 +2255,8 @@ a.lui-button-icon-only-rev:hover i,
|
|
|
2251
2255
|
a.lui-button-icon-only-rev:hover svg *,
|
|
2252
2256
|
a.lui-button-icon-only-link:hover i,
|
|
2253
2257
|
a.lui-button-icon-only-link:hover svg * {
|
|
2254
|
-
color: #
|
|
2255
|
-
fill: #
|
|
2258
|
+
color: #005678;
|
|
2259
|
+
fill: #005678;
|
|
2256
2260
|
}
|
|
2257
2261
|
.lui-button-icon-only:disabled, .lui-button-icon-only-rev:disabled, .lui-button-icon-only-link:disabled,
|
|
2258
2262
|
a.lui-button-icon-only:disabled,
|
|
@@ -2287,8 +2291,8 @@ a.lui-button-icon-only-rev:active:enabled,
|
|
|
2287
2291
|
a.lui-button-icon-only-link:active:enabled {
|
|
2288
2292
|
background-color: transparent;
|
|
2289
2293
|
cursor: pointer;
|
|
2290
|
-
color: rgba(0, 150, 204, 0.
|
|
2291
|
-
border:
|
|
2294
|
+
color: rgba(0, 150, 204, 0.9);
|
|
2295
|
+
border: 1px solid transparent;
|
|
2292
2296
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2293
2297
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2294
2298
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -2323,77 +2327,94 @@ a.lui-button-icon-only-rev i,
|
|
|
2323
2327
|
a.lui-button-icon-only-rev svg * {
|
|
2324
2328
|
color: #fff;
|
|
2325
2329
|
}
|
|
2326
|
-
.lui-button-icon-only-rev:disabled,
|
|
2327
|
-
a.lui-button-icon-only-rev:disabled
|
|
2330
|
+
.lui-button-icon-only-rev:disabled, .lui-button-icon-only-rev:disabled:hover,
|
|
2331
|
+
a.lui-button-icon-only-rev:disabled,
|
|
2332
|
+
a.lui-button-icon-only-rev:disabled:hover {
|
|
2328
2333
|
color: rgba(255, 255, 255, 0.4);
|
|
2329
2334
|
}
|
|
2330
2335
|
.lui-button-icon-only-rev:disabled i,
|
|
2331
|
-
.lui-button-icon-only-rev:disabled svg *,
|
|
2336
|
+
.lui-button-icon-only-rev:disabled svg *, .lui-button-icon-only-rev:disabled:hover i,
|
|
2337
|
+
.lui-button-icon-only-rev:disabled:hover svg *,
|
|
2332
2338
|
a.lui-button-icon-only-rev:disabled i,
|
|
2333
|
-
a.lui-button-icon-only-rev:disabled svg
|
|
2339
|
+
a.lui-button-icon-only-rev:disabled svg *,
|
|
2340
|
+
a.lui-button-icon-only-rev:disabled:hover i,
|
|
2341
|
+
a.lui-button-icon-only-rev:disabled:hover svg * {
|
|
2334
2342
|
color: rgba(255, 255, 255, 0.4);
|
|
2335
2343
|
fill: rgba(255, 255, 255, 0.4);
|
|
2336
2344
|
}
|
|
2345
|
+
.lui-button-icon-only-rev:hover i,
|
|
2346
|
+
.lui-button-icon-only-rev:hover svg *,
|
|
2347
|
+
a.lui-button-icon-only-rev:hover i,
|
|
2348
|
+
a.lui-button-icon-only-rev:hover svg * {
|
|
2349
|
+
color: #73c8e1;
|
|
2350
|
+
fill: #73c8e1;
|
|
2351
|
+
}
|
|
2337
2352
|
.lui-button-icon-only-link,
|
|
2338
2353
|
a.lui-button-icon-only-link {
|
|
2339
2354
|
color: #0096cc;
|
|
2340
2355
|
}
|
|
2341
2356
|
.lui-button.lui-button-sm,
|
|
2342
2357
|
a.lui-button.lui-button-sm {
|
|
2343
|
-
line-height:
|
|
2344
|
-
padding: 0 0.
|
|
2345
|
-
font-size: 0.875rem;
|
|
2358
|
+
line-height: 24px;
|
|
2359
|
+
padding: 0.1875rem 0.5rem;
|
|
2346
2360
|
}
|
|
2347
2361
|
.lui-button.lui-button-sm.lui-button-icon,
|
|
2348
2362
|
a.lui-button.lui-button-sm.lui-button-icon {
|
|
2349
|
-
padding: 0 0.
|
|
2363
|
+
padding: 0.125rem 0.5rem 0.125rem 0.25rem;
|
|
2350
2364
|
}
|
|
2351
|
-
.lui-button.lui-button-sm.lui-button-icon i,
|
|
2352
2365
|
.lui-button.lui-button-sm.lui-button-icon .LuiIcon,
|
|
2353
|
-
a.lui-button.lui-button-sm.lui-button-icon i,
|
|
2354
2366
|
a.lui-button.lui-button-sm.lui-button-icon .LuiIcon {
|
|
2355
|
-
margin:
|
|
2356
|
-
|
|
2367
|
+
margin: 1px 0.25rem -5px 0;
|
|
2368
|
+
}
|
|
2369
|
+
.lui-button.lui-button-sm.lui-button-icon i,
|
|
2370
|
+
a.lui-button.lui-button-sm.lui-button-icon i {
|
|
2371
|
+
position: relative;
|
|
2372
|
+
top: 6px;
|
|
2373
|
+
margin: 0 12px 0 0;
|
|
2357
2374
|
}
|
|
2358
2375
|
.lui-button.lui-button-sm.lui-button-icon-right,
|
|
2359
2376
|
a.lui-button.lui-button-sm.lui-button-icon-right {
|
|
2360
|
-
padding: 0
|
|
2377
|
+
padding: 0.125rem 0.25rem 0.125rem 0.5rem;
|
|
2361
2378
|
}
|
|
2362
|
-
.lui-button.lui-button-sm.lui-button-icon-right i,
|
|
2363
2379
|
.lui-button.lui-button-sm.lui-button-icon-right .LuiIcon,
|
|
2364
|
-
a.lui-button.lui-button-sm.lui-button-icon-right i,
|
|
2365
2380
|
a.lui-button.lui-button-sm.lui-button-icon-right .LuiIcon {
|
|
2366
|
-
margin:
|
|
2367
|
-
|
|
2381
|
+
margin: 1px 0 -5px 0.25rem;
|
|
2382
|
+
}
|
|
2383
|
+
.lui-button.lui-button-sm.lui-button-icon-right i,
|
|
2384
|
+
a.lui-button.lui-button-sm.lui-button-icon-right i {
|
|
2385
|
+
position: relative;
|
|
2386
|
+
top: 6px;
|
|
2387
|
+
margin: 0 0 0 12px;
|
|
2368
2388
|
}
|
|
2369
2389
|
.lui-button.lui-button-sm.lui-button-reversed-no-bg i,
|
|
2370
2390
|
.lui-button.lui-button-sm.lui-button-reversed-no-bg .LuiIcon,
|
|
2371
2391
|
a.lui-button.lui-button-sm.lui-button-reversed-no-bg i,
|
|
2372
2392
|
a.lui-button.lui-button-sm.lui-button-reversed-no-bg .LuiIcon {
|
|
2373
|
-
font-size: 1.8rem;
|
|
2374
2393
|
top: 9px !important;
|
|
2375
2394
|
}
|
|
2376
2395
|
.lui-button.lui-button-lg,
|
|
2377
2396
|
a.lui-button.lui-button-lg {
|
|
2378
|
-
|
|
2379
|
-
padding: 0 2rem;
|
|
2380
|
-
font-size: 1.125rem;
|
|
2397
|
+
padding: 0.6875rem 1.125rem;
|
|
2381
2398
|
}
|
|
2382
2399
|
.lui-button.lui-button-lg.lui-button-icon,
|
|
2383
2400
|
a.lui-button.lui-button-lg.lui-button-icon {
|
|
2384
|
-
padding: 0
|
|
2401
|
+
padding: 0.6875rem 24px 0.6875rem 0.75rem;
|
|
2385
2402
|
}
|
|
2386
2403
|
.lui-button.lui-button-lg.lui-button-icon i,
|
|
2387
2404
|
a.lui-button.lui-button-lg.lui-button-icon i {
|
|
2388
|
-
|
|
2405
|
+
position: relative;
|
|
2406
|
+
top: 6px;
|
|
2407
|
+
margin: 0 0.5rem 0 0;
|
|
2389
2408
|
}
|
|
2390
2409
|
.lui-button.lui-button-lg.lui-button-icon-right,
|
|
2391
2410
|
a.lui-button.lui-button-lg.lui-button-icon-right {
|
|
2392
|
-
padding: 0
|
|
2411
|
+
padding: 0.6875rem 0.75rem 0.6875rem 24px;
|
|
2393
2412
|
}
|
|
2394
2413
|
.lui-button.lui-button-lg.lui-button-icon-right i,
|
|
2395
2414
|
a.lui-button.lui-button-lg.lui-button-icon-right i {
|
|
2396
|
-
|
|
2415
|
+
position: relative;
|
|
2416
|
+
top: 6px;
|
|
2417
|
+
margin: 0 0 0 0.5rem;
|
|
2397
2418
|
}
|
|
2398
2419
|
.lui-button + .lui-button,
|
|
2399
2420
|
a.lui-button + .lui-button {
|
|
@@ -2443,7 +2464,6 @@ a.lui-button + a.lui-button {
|
|
|
2443
2464
|
}
|
|
2444
2465
|
}
|
|
2445
2466
|
.lui-button-group .lui-button {
|
|
2446
|
-
padding: 0 0.5rem;
|
|
2447
2467
|
background-color: #fff;
|
|
2448
2468
|
border-radius: 0;
|
|
2449
2469
|
border: 1px solid #004b50;
|
|
@@ -2698,7 +2718,7 @@ a.lui-button + a.lui-button {
|
|
|
2698
2718
|
}
|
|
2699
2719
|
|
|
2700
2720
|
.linz-button-primary {
|
|
2701
|
-
border:
|
|
2721
|
+
border: 1px solid #023d48;
|
|
2702
2722
|
background-color: #023d48;
|
|
2703
2723
|
border-color: #023d48;
|
|
2704
2724
|
color: #fff;
|
|
@@ -2710,7 +2730,7 @@ a.lui-button + a.lui-button {
|
|
|
2710
2730
|
}
|
|
2711
2731
|
|
|
2712
2732
|
.linz-button-secondary {
|
|
2713
|
-
border:
|
|
2733
|
+
border: 1px solid #023d48;
|
|
2714
2734
|
color: #023d48;
|
|
2715
2735
|
}
|
|
2716
2736
|
.linz-button-secondary:hover {
|
|
@@ -2721,7 +2741,7 @@ a.lui-button + a.lui-button {
|
|
|
2721
2741
|
}
|
|
2722
2742
|
|
|
2723
2743
|
.linz-button-tertiary {
|
|
2724
|
-
border:
|
|
2744
|
+
border: 1px solid #e1e44a;
|
|
2725
2745
|
background-color: #e1e44a;
|
|
2726
2746
|
color: #023d48;
|
|
2727
2747
|
}
|
|
@@ -4913,6 +4933,15 @@ body.lui-menu-drawer-open {
|
|
|
4913
4933
|
cursor: not-allowed;
|
|
4914
4934
|
}
|
|
4915
4935
|
|
|
4936
|
+
.LuiTextInput-iconPosition {
|
|
4937
|
+
position: absolute;
|
|
4938
|
+
right: 7px;
|
|
4939
|
+
top: 17%;
|
|
4940
|
+
}
|
|
4941
|
+
.LuiTextInput-iconPosition svg {
|
|
4942
|
+
fill: #6b6966;
|
|
4943
|
+
}
|
|
4944
|
+
|
|
4916
4945
|
.LuiTextInput-padlock-icon {
|
|
4917
4946
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAyMiI+PHBhdGggZD0iTTE0IDcuNUgxM1Y1LjVDMTMgMi43NCAxMC43NiAwLjUgOCAwLjVDNS4yNCAwLjUgMyAyLjc0IDMgNS41VjcuNUgyQzAuOSA3LjUgMCA4LjQgMCA5LjVWMTkuNUMwIDIwLjYgMC45IDIxLjUgMiAyMS41SDE0QzE1LjEgMjEuNSAxNiAyMC42IDE2IDE5LjVWOS41QzE2IDguNCAxNS4xIDcuNSAxNCA3LjVaTTggMTYuNUM2LjkgMTYuNSA2IDE1LjYgNiAxNC41QzYgMTMuNCA2LjkgMTIuNSA4IDEyLjVDOS4xIDEyLjUgMTAgMTMuNCAxMCAxNC41QzEwIDE1LjYgOS4xIDE2LjUgOCAxNi41Wk0xMS4xIDcuNUg0LjlWNS41QzQuOSAzLjc5IDYuMjkgMi40IDggMi40QzkuNzEgMi40IDExLjEgMy43OSAxMS4xIDUuNVY3LjVaIiBmaWxsPSIjNkI2OTY2IiAvPjwvc3ZnPg==");
|
|
4918
4947
|
background-repeat: no-repeat;
|