@linzjs/lui 15.1.10 → 15.1.13
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 +28 -0
- package/dist/index.js +2 -2
- package/dist/lui.css +201 -159
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +2 -2
- package/dist/scss/Components/LuiFormElements/LuiCheckboxInput/LuiCheckboxInput.scss +19 -17
- package/dist/scss/Components/LuiFormElements/LuiRadioInput/LuiRadioInput.scss +1 -2
- package/dist/scss/Elements/Buttons/buttons.scss +67 -46
- package/dist/scss/Foundation/Utilities/BoxShadow.scss +20 -0
- package/dist/scss/Foundation/Variables/_LuiColors.scss +16 -6
- package/dist/scss/Global/Layout/Container.scss +10 -1
- 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;
|
|
@@ -276,7 +276,7 @@ a:hover:before {
|
|
|
276
276
|
background-color: #004b50;
|
|
277
277
|
}
|
|
278
278
|
a:disabled {
|
|
279
|
-
color: #
|
|
279
|
+
color: #989189;
|
|
280
280
|
box-shadow: none;
|
|
281
281
|
}
|
|
282
282
|
a:disabled:hover {
|
|
@@ -287,7 +287,7 @@ a.lui-link-icon {
|
|
|
287
287
|
}
|
|
288
288
|
a.lui-link-icon-disabled {
|
|
289
289
|
box-shadow: none;
|
|
290
|
-
color: #
|
|
290
|
+
color: #989189;
|
|
291
291
|
}
|
|
292
292
|
a.lui-link-icon-disabled:hover {
|
|
293
293
|
cursor: not-allowed;
|
|
@@ -885,27 +885,50 @@ p.lui-small {
|
|
|
885
885
|
margin-top: 2rem;
|
|
886
886
|
}
|
|
887
887
|
|
|
888
|
-
.Container--noPadding, .Container {
|
|
888
|
+
.Container--paddingOnly, .Container--noPadding, .Container {
|
|
889
889
|
display: block;
|
|
890
890
|
margin: 0 auto;
|
|
891
891
|
}
|
|
892
892
|
|
|
893
|
-
.Container--
|
|
893
|
+
.Container--paddingOnly {
|
|
894
|
+
padding: 0 2.5%;
|
|
895
|
+
}
|
|
896
|
+
|
|
897
|
+
.Container--noPadding {
|
|
898
|
+
max-width: 480px;
|
|
899
|
+
}
|
|
900
|
+
@media screen and (min-width: 480px) {
|
|
901
|
+
.Container--noPadding {
|
|
902
|
+
max-width: 768px;
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
@media screen and (min-width: 768px) {
|
|
906
|
+
.Container--noPadding {
|
|
907
|
+
max-width: 1024px;
|
|
908
|
+
}
|
|
909
|
+
}
|
|
910
|
+
@media screen and (min-width: 1024px) {
|
|
911
|
+
.Container--noPadding {
|
|
912
|
+
max-width: 1280px;
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.Container {
|
|
894
917
|
padding: 0 2.5%;
|
|
895
918
|
max-width: calc(480px + (2.5% * 2));
|
|
896
919
|
}
|
|
897
920
|
@media screen and (min-width: 480px) {
|
|
898
|
-
.Container
|
|
921
|
+
.Container {
|
|
899
922
|
max-width: calc(768px + (2.5% * 2));
|
|
900
923
|
}
|
|
901
924
|
}
|
|
902
925
|
@media screen and (min-width: 768px) {
|
|
903
|
-
.Container
|
|
926
|
+
.Container {
|
|
904
927
|
max-width: calc(1024px + (2.5% * 2));
|
|
905
928
|
}
|
|
906
929
|
}
|
|
907
930
|
@media screen and (min-width: 1024px) {
|
|
908
|
-
.Container
|
|
931
|
+
.Container {
|
|
909
932
|
max-width: calc(1280px + (2.5% * 2));
|
|
910
933
|
}
|
|
911
934
|
}
|
|
@@ -1616,9 +1639,9 @@ button {
|
|
|
1616
1639
|
font-style: normal;
|
|
1617
1640
|
font-weight: 700;
|
|
1618
1641
|
font-size: 1rem;
|
|
1619
|
-
line-height:
|
|
1642
|
+
line-height: 24px;
|
|
1620
1643
|
margin: 0;
|
|
1621
|
-
padding: 0
|
|
1644
|
+
padding: 0.4375rem 1rem;
|
|
1622
1645
|
border: none;
|
|
1623
1646
|
border-radius: 3px;
|
|
1624
1647
|
transition: background-color 0.3s, color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
|
|
@@ -1636,9 +1659,9 @@ a.lui-button {
|
|
|
1636
1659
|
font-style: normal;
|
|
1637
1660
|
font-weight: 700;
|
|
1638
1661
|
font-size: 1rem;
|
|
1639
|
-
line-height:
|
|
1662
|
+
line-height: 24px;
|
|
1640
1663
|
margin: 0;
|
|
1641
|
-
padding: 0
|
|
1664
|
+
padding: 0.4375rem 1rem;
|
|
1642
1665
|
border: none;
|
|
1643
1666
|
border-radius: 3px;
|
|
1644
1667
|
transition: background-color 0.3s, color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
|
|
@@ -1659,24 +1682,28 @@ a.lui-button {
|
|
|
1659
1682
|
}
|
|
1660
1683
|
.lui-button.lui-button-icon-right,
|
|
1661
1684
|
a.lui-button.lui-button-icon-right {
|
|
1662
|
-
padding: 0
|
|
1685
|
+
padding: 0.25rem 0.5rem 0.5rem 0.75rem;
|
|
1663
1686
|
}
|
|
1664
|
-
.lui-button.lui-button-icon-right i,
|
|
1665
1687
|
.lui-button.lui-button-icon-right .LuiIcon,
|
|
1666
|
-
a.lui-button.lui-button-icon-right i,
|
|
1667
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 {
|
|
1668
1693
|
position: relative;
|
|
1669
1694
|
top: 6px;
|
|
1670
1695
|
margin: 0 0 0 12px;
|
|
1671
1696
|
}
|
|
1672
1697
|
.lui-button.lui-button-icon,
|
|
1673
1698
|
a.lui-button.lui-button-icon {
|
|
1674
|
-
padding: 0 0.
|
|
1699
|
+
padding: 0.25rem 1rem 0.5rem 0.5rem;
|
|
1675
1700
|
}
|
|
1676
|
-
.lui-button.lui-button-icon i,
|
|
1677
1701
|
.lui-button.lui-button-icon .LuiIcon,
|
|
1678
|
-
a.lui-button.lui-button-icon i,
|
|
1679
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 {
|
|
1680
1707
|
position: relative;
|
|
1681
1708
|
top: 6px;
|
|
1682
1709
|
margin: 0 12px 0 0;
|
|
@@ -1684,9 +1711,9 @@ a.lui-button.lui-button-icon .LuiIcon {
|
|
|
1684
1711
|
.lui-button-primary,
|
|
1685
1712
|
a.lui-button-primary {
|
|
1686
1713
|
background-color: #007198;
|
|
1687
|
-
border:
|
|
1714
|
+
border: 1px solid #007198;
|
|
1688
1715
|
color: #fff;
|
|
1689
|
-
line-height:
|
|
1716
|
+
line-height: 24px;
|
|
1690
1717
|
}
|
|
1691
1718
|
.lui-button-primary i,
|
|
1692
1719
|
.lui-button-primary svg *,
|
|
@@ -1701,10 +1728,10 @@ a.lui-button-primary:visited {
|
|
|
1701
1728
|
}
|
|
1702
1729
|
.lui-button-primary:hover,
|
|
1703
1730
|
a.lui-button-primary:hover {
|
|
1704
|
-
background-color: #
|
|
1731
|
+
background-color: #005678;
|
|
1705
1732
|
cursor: pointer;
|
|
1706
1733
|
color: #fff;
|
|
1707
|
-
border:
|
|
1734
|
+
border: 1px solid #005678;
|
|
1708
1735
|
}
|
|
1709
1736
|
.lui-button-primary:hover i,
|
|
1710
1737
|
.lui-button-primary:hover svg *,
|
|
@@ -1715,16 +1742,16 @@ a.lui-button-primary:hover svg * {
|
|
|
1715
1742
|
}
|
|
1716
1743
|
.lui-button-primary:disabled,
|
|
1717
1744
|
a.lui-button-primary:disabled {
|
|
1718
|
-
color: #
|
|
1745
|
+
color: #989189;
|
|
1719
1746
|
background: #eaeaea;
|
|
1720
|
-
border-color: #
|
|
1747
|
+
border-color: #6b6966;
|
|
1721
1748
|
}
|
|
1722
1749
|
.lui-button-primary:disabled i,
|
|
1723
1750
|
.lui-button-primary:disabled svg *,
|
|
1724
1751
|
a.lui-button-primary:disabled i,
|
|
1725
1752
|
a.lui-button-primary:disabled svg * {
|
|
1726
|
-
color: #
|
|
1727
|
-
fill: #
|
|
1753
|
+
color: #6b6966;
|
|
1754
|
+
fill: #6b6966;
|
|
1728
1755
|
}
|
|
1729
1756
|
.lui-button-primary:disabled:hover,
|
|
1730
1757
|
a.lui-button-primary:disabled:hover {
|
|
@@ -1734,8 +1761,8 @@ a.lui-button-primary:disabled:hover {
|
|
|
1734
1761
|
a.lui-button-primary:active:enabled {
|
|
1735
1762
|
background-color: #00425d;
|
|
1736
1763
|
cursor: pointer;
|
|
1737
|
-
color: rgba(255, 255, 255, 0.
|
|
1738
|
-
border:
|
|
1764
|
+
color: rgba(255, 255, 255, 0.9);
|
|
1765
|
+
border: 1px solid #00425d;
|
|
1739
1766
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1740
1767
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1741
1768
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -1750,9 +1777,9 @@ a.lui-button-primary:active:enabled svg * {
|
|
|
1750
1777
|
.lui-button-secondary,
|
|
1751
1778
|
a.lui-button-secondary {
|
|
1752
1779
|
background-color: #fff;
|
|
1753
|
-
border:
|
|
1780
|
+
border: 1px solid #007198;
|
|
1754
1781
|
color: #007198;
|
|
1755
|
-
line-height:
|
|
1782
|
+
line-height: 24px;
|
|
1756
1783
|
}
|
|
1757
1784
|
.lui-button-secondary i,
|
|
1758
1785
|
.lui-button-secondary svg *,
|
|
@@ -1767,30 +1794,30 @@ a.lui-button-secondary:visited {
|
|
|
1767
1794
|
}
|
|
1768
1795
|
.lui-button-secondary:hover,
|
|
1769
1796
|
a.lui-button-secondary:hover {
|
|
1770
|
-
background-color: #
|
|
1797
|
+
background-color: #e2f3f7;
|
|
1771
1798
|
cursor: pointer;
|
|
1772
|
-
color: #
|
|
1773
|
-
border:
|
|
1799
|
+
color: #007198;
|
|
1800
|
+
border: 1px solid #007198;
|
|
1774
1801
|
}
|
|
1775
1802
|
.lui-button-secondary:hover i,
|
|
1776
1803
|
.lui-button-secondary:hover svg *,
|
|
1777
1804
|
a.lui-button-secondary:hover i,
|
|
1778
1805
|
a.lui-button-secondary:hover svg * {
|
|
1779
|
-
color: #
|
|
1780
|
-
fill: #
|
|
1806
|
+
color: #007198;
|
|
1807
|
+
fill: #007198;
|
|
1781
1808
|
}
|
|
1782
1809
|
.lui-button-secondary:disabled,
|
|
1783
1810
|
a.lui-button-secondary:disabled {
|
|
1784
|
-
color: #
|
|
1811
|
+
color: #989189;
|
|
1785
1812
|
background: #eaeaea;
|
|
1786
|
-
border-color: #
|
|
1813
|
+
border-color: #6b6966;
|
|
1787
1814
|
}
|
|
1788
1815
|
.lui-button-secondary:disabled i,
|
|
1789
1816
|
.lui-button-secondary:disabled svg *,
|
|
1790
1817
|
a.lui-button-secondary:disabled i,
|
|
1791
1818
|
a.lui-button-secondary:disabled svg * {
|
|
1792
|
-
color: #
|
|
1793
|
-
fill: #
|
|
1819
|
+
color: #6b6966;
|
|
1820
|
+
fill: #6b6966;
|
|
1794
1821
|
}
|
|
1795
1822
|
.lui-button-secondary:disabled:hover,
|
|
1796
1823
|
a.lui-button-secondary:disabled:hover {
|
|
@@ -1798,10 +1825,10 @@ a.lui-button-secondary:disabled:hover {
|
|
|
1798
1825
|
}
|
|
1799
1826
|
.lui-button-secondary:active:enabled,
|
|
1800
1827
|
a.lui-button-secondary:active:enabled {
|
|
1801
|
-
background-color: #
|
|
1828
|
+
background-color: #007198;
|
|
1802
1829
|
cursor: pointer;
|
|
1803
|
-
color: rgba(255, 255, 255, 0.
|
|
1804
|
-
border:
|
|
1830
|
+
color: rgba(255, 255, 255, 0.9);
|
|
1831
|
+
border: 1px solid #007198;
|
|
1805
1832
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1806
1833
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1807
1834
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -1826,9 +1853,9 @@ a.lui-button-secondary:hover i {
|
|
|
1826
1853
|
.lui-button-tertiary,
|
|
1827
1854
|
a.lui-button-tertiary {
|
|
1828
1855
|
background-color: #0aa245;
|
|
1829
|
-
border:
|
|
1856
|
+
border: 1px solid #0aa245;
|
|
1830
1857
|
color: #fff;
|
|
1831
|
-
line-height:
|
|
1858
|
+
line-height: 24px;
|
|
1832
1859
|
}
|
|
1833
1860
|
.lui-button-tertiary i,
|
|
1834
1861
|
.lui-button-tertiary svg *,
|
|
@@ -1843,10 +1870,10 @@ a.lui-button-tertiary:visited {
|
|
|
1843
1870
|
}
|
|
1844
1871
|
.lui-button-tertiary:hover,
|
|
1845
1872
|
a.lui-button-tertiary:hover {
|
|
1846
|
-
background-color: #
|
|
1873
|
+
background-color: #107c3a;
|
|
1847
1874
|
cursor: pointer;
|
|
1848
1875
|
color: #fff;
|
|
1849
|
-
border:
|
|
1876
|
+
border: 1px solid #107c3a;
|
|
1850
1877
|
}
|
|
1851
1878
|
.lui-button-tertiary:hover i,
|
|
1852
1879
|
.lui-button-tertiary:hover svg *,
|
|
@@ -1857,16 +1884,16 @@ a.lui-button-tertiary:hover svg * {
|
|
|
1857
1884
|
}
|
|
1858
1885
|
.lui-button-tertiary:disabled,
|
|
1859
1886
|
a.lui-button-tertiary:disabled {
|
|
1860
|
-
color: #
|
|
1887
|
+
color: #989189;
|
|
1861
1888
|
background: #eaeaea;
|
|
1862
|
-
border-color: #
|
|
1889
|
+
border-color: #6b6966;
|
|
1863
1890
|
}
|
|
1864
1891
|
.lui-button-tertiary:disabled i,
|
|
1865
1892
|
.lui-button-tertiary:disabled svg *,
|
|
1866
1893
|
a.lui-button-tertiary:disabled i,
|
|
1867
1894
|
a.lui-button-tertiary:disabled svg * {
|
|
1868
|
-
color: #
|
|
1869
|
-
fill: #
|
|
1895
|
+
color: #6b6966;
|
|
1896
|
+
fill: #6b6966;
|
|
1870
1897
|
}
|
|
1871
1898
|
.lui-button-tertiary:disabled:hover,
|
|
1872
1899
|
a.lui-button-tertiary:disabled:hover {
|
|
@@ -1874,10 +1901,10 @@ a.lui-button-tertiary:disabled:hover {
|
|
|
1874
1901
|
}
|
|
1875
1902
|
.lui-button-tertiary:active:enabled,
|
|
1876
1903
|
a.lui-button-tertiary:active:enabled {
|
|
1877
|
-
background-color: #
|
|
1904
|
+
background-color: #094A22;
|
|
1878
1905
|
cursor: pointer;
|
|
1879
|
-
color: rgba(255, 255, 255, 0.
|
|
1880
|
-
border:
|
|
1906
|
+
color: rgba(255, 255, 255, 0.9);
|
|
1907
|
+
border: 1px solid #094A22;
|
|
1881
1908
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1882
1909
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1883
1910
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -1892,9 +1919,9 @@ a.lui-button-tertiary:active:enabled svg * {
|
|
|
1892
1919
|
.lui-button-error,
|
|
1893
1920
|
a.lui-button-error {
|
|
1894
1921
|
background-color: #cc0000;
|
|
1895
|
-
border:
|
|
1922
|
+
border: 1px solid #cc0000;
|
|
1896
1923
|
color: #fff;
|
|
1897
|
-
line-height:
|
|
1924
|
+
line-height: 24px;
|
|
1898
1925
|
}
|
|
1899
1926
|
.lui-button-error i,
|
|
1900
1927
|
.lui-button-error svg *,
|
|
@@ -1909,10 +1936,10 @@ a.lui-button-error:visited {
|
|
|
1909
1936
|
}
|
|
1910
1937
|
.lui-button-error:hover,
|
|
1911
1938
|
a.lui-button-error:hover {
|
|
1912
|
-
background-color: #
|
|
1939
|
+
background-color: #8f0000;
|
|
1913
1940
|
cursor: pointer;
|
|
1914
1941
|
color: #fff;
|
|
1915
|
-
border:
|
|
1942
|
+
border: 1px solid #8f0000;
|
|
1916
1943
|
}
|
|
1917
1944
|
.lui-button-error:hover i,
|
|
1918
1945
|
.lui-button-error:hover svg *,
|
|
@@ -1923,16 +1950,16 @@ a.lui-button-error:hover svg * {
|
|
|
1923
1950
|
}
|
|
1924
1951
|
.lui-button-error:disabled,
|
|
1925
1952
|
a.lui-button-error:disabled {
|
|
1926
|
-
color: #
|
|
1953
|
+
color: #989189;
|
|
1927
1954
|
background: #eaeaea;
|
|
1928
|
-
border-color: #
|
|
1955
|
+
border-color: #6b6966;
|
|
1929
1956
|
}
|
|
1930
1957
|
.lui-button-error:disabled i,
|
|
1931
1958
|
.lui-button-error:disabled svg *,
|
|
1932
1959
|
a.lui-button-error:disabled i,
|
|
1933
1960
|
a.lui-button-error:disabled svg * {
|
|
1934
|
-
color: #
|
|
1935
|
-
fill: #
|
|
1961
|
+
color: #6b6966;
|
|
1962
|
+
fill: #6b6966;
|
|
1936
1963
|
}
|
|
1937
1964
|
.lui-button-error:disabled:hover,
|
|
1938
1965
|
a.lui-button-error:disabled:hover {
|
|
@@ -1942,8 +1969,8 @@ a.lui-button-error:disabled:hover {
|
|
|
1942
1969
|
a.lui-button-error:active:enabled {
|
|
1943
1970
|
background-color: #5a0000;
|
|
1944
1971
|
cursor: pointer;
|
|
1945
|
-
color: rgba(255, 255, 255, 0.
|
|
1946
|
-
border:
|
|
1972
|
+
color: rgba(255, 255, 255, 0.9);
|
|
1973
|
+
border: 1px solid #5a0000;
|
|
1947
1974
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1948
1975
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
1949
1976
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -1958,9 +1985,9 @@ a.lui-button-error:active:enabled svg * {
|
|
|
1958
1985
|
.lui-button-reversed-no-bg,
|
|
1959
1986
|
a.lui-button-reversed-no-bg {
|
|
1960
1987
|
background-color: transparent;
|
|
1961
|
-
border:
|
|
1988
|
+
border: 1px solid transparent;
|
|
1962
1989
|
color: #fff;
|
|
1963
|
-
line-height:
|
|
1990
|
+
line-height: 24px;
|
|
1964
1991
|
}
|
|
1965
1992
|
.lui-button-reversed-no-bg i,
|
|
1966
1993
|
.lui-button-reversed-no-bg svg *,
|
|
@@ -1978,7 +2005,7 @@ a.lui-button-reversed-no-bg:hover {
|
|
|
1978
2005
|
background-color: transparent;
|
|
1979
2006
|
cursor: pointer;
|
|
1980
2007
|
color: rgba(255, 255, 255, 0.8);
|
|
1981
|
-
border:
|
|
2008
|
+
border: 1px solid transparent;
|
|
1982
2009
|
}
|
|
1983
2010
|
.lui-button-reversed-no-bg:hover i,
|
|
1984
2011
|
.lui-button-reversed-no-bg:hover svg *,
|
|
@@ -1989,16 +2016,16 @@ a.lui-button-reversed-no-bg:hover svg * {
|
|
|
1989
2016
|
}
|
|
1990
2017
|
.lui-button-reversed-no-bg:disabled,
|
|
1991
2018
|
a.lui-button-reversed-no-bg:disabled {
|
|
1992
|
-
color: #
|
|
2019
|
+
color: #989189;
|
|
1993
2020
|
background: #eaeaea;
|
|
1994
|
-
border-color: #
|
|
2021
|
+
border-color: #6b6966;
|
|
1995
2022
|
}
|
|
1996
2023
|
.lui-button-reversed-no-bg:disabled i,
|
|
1997
2024
|
.lui-button-reversed-no-bg:disabled svg *,
|
|
1998
2025
|
a.lui-button-reversed-no-bg:disabled i,
|
|
1999
2026
|
a.lui-button-reversed-no-bg:disabled svg * {
|
|
2000
|
-
color: #
|
|
2001
|
-
fill: #
|
|
2027
|
+
color: #6b6966;
|
|
2028
|
+
fill: #6b6966;
|
|
2002
2029
|
}
|
|
2003
2030
|
.lui-button-reversed-no-bg:disabled:hover,
|
|
2004
2031
|
a.lui-button-reversed-no-bg:disabled:hover {
|
|
@@ -2008,8 +2035,8 @@ a.lui-button-reversed-no-bg:disabled:hover {
|
|
|
2008
2035
|
a.lui-button-reversed-no-bg:active:enabled {
|
|
2009
2036
|
background-color: transparent;
|
|
2010
2037
|
cursor: pointer;
|
|
2011
|
-
color: rgba(255, 255, 255, 0.
|
|
2012
|
-
border:
|
|
2038
|
+
color: rgba(255, 255, 255, 0.9);
|
|
2039
|
+
border: 1px solid transparent;
|
|
2013
2040
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2014
2041
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2015
2042
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -2073,7 +2100,7 @@ a.lui-button-text:hover {
|
|
|
2073
2100
|
background-color: transparent;
|
|
2074
2101
|
cursor: pointer;
|
|
2075
2102
|
color: #00425d;
|
|
2076
|
-
border:
|
|
2103
|
+
border: 1px solid none;
|
|
2077
2104
|
}
|
|
2078
2105
|
.lui-button-text:hover i,
|
|
2079
2106
|
.lui-button-text:hover svg *,
|
|
@@ -2084,16 +2111,16 @@ a.lui-button-text:hover svg * {
|
|
|
2084
2111
|
}
|
|
2085
2112
|
.lui-button-text:disabled,
|
|
2086
2113
|
a.lui-button-text:disabled {
|
|
2087
|
-
color: #
|
|
2114
|
+
color: #989189;
|
|
2088
2115
|
background: #eaeaea;
|
|
2089
|
-
border-color: #
|
|
2116
|
+
border-color: #6b6966;
|
|
2090
2117
|
}
|
|
2091
2118
|
.lui-button-text:disabled i,
|
|
2092
2119
|
.lui-button-text:disabled svg *,
|
|
2093
2120
|
a.lui-button-text:disabled i,
|
|
2094
2121
|
a.lui-button-text:disabled svg * {
|
|
2095
|
-
color: #
|
|
2096
|
-
fill: #
|
|
2122
|
+
color: #6b6966;
|
|
2123
|
+
fill: #6b6966;
|
|
2097
2124
|
}
|
|
2098
2125
|
.lui-button-text:disabled:hover,
|
|
2099
2126
|
a.lui-button-text:disabled:hover {
|
|
@@ -2103,8 +2130,8 @@ a.lui-button-text:disabled:hover {
|
|
|
2103
2130
|
a.lui-button-text:active:enabled {
|
|
2104
2131
|
background-color: none;
|
|
2105
2132
|
cursor: pointer;
|
|
2106
|
-
color: rgba(0, 66, 93, 0.
|
|
2107
|
-
border:
|
|
2133
|
+
color: rgba(0, 66, 93, 0.9);
|
|
2134
|
+
border: 1px solid none;
|
|
2108
2135
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2109
2136
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2110
2137
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -2118,11 +2145,11 @@ a.lui-button-text:active:enabled svg * {
|
|
|
2118
2145
|
}
|
|
2119
2146
|
.lui-button-text:hover,
|
|
2120
2147
|
a.lui-button-text:hover {
|
|
2121
|
-
border-bottom:
|
|
2148
|
+
border-bottom: 1px solid;
|
|
2122
2149
|
}
|
|
2123
2150
|
.lui-button-text:disabled,
|
|
2124
2151
|
a.lui-button-text:disabled {
|
|
2125
|
-
color: #
|
|
2152
|
+
color: #989189;
|
|
2126
2153
|
background: none;
|
|
2127
2154
|
border: 0;
|
|
2128
2155
|
text-decoration: none;
|
|
@@ -2141,9 +2168,9 @@ a.lui-button-text:disabled svg * {
|
|
|
2141
2168
|
.lui-button-plain-text,
|
|
2142
2169
|
a.lui-button-plain-text {
|
|
2143
2170
|
background-color: transparent;
|
|
2144
|
-
border:
|
|
2171
|
+
border: 1px solid #fff;
|
|
2145
2172
|
color: inherit;
|
|
2146
|
-
line-height:
|
|
2173
|
+
line-height: 24px;
|
|
2147
2174
|
padding: 0;
|
|
2148
2175
|
margin: 0;
|
|
2149
2176
|
font-family: inherit;
|
|
@@ -2165,7 +2192,7 @@ a.lui-button-plain-text:visited {
|
|
|
2165
2192
|
}
|
|
2166
2193
|
.lui-button-plain-text:disabled,
|
|
2167
2194
|
a.lui-button-plain-text:disabled {
|
|
2168
|
-
color: #
|
|
2195
|
+
color: #989189;
|
|
2169
2196
|
background: none;
|
|
2170
2197
|
border: 0;
|
|
2171
2198
|
text-decoration: none;
|
|
@@ -2174,17 +2201,17 @@ a.lui-button-plain-text:disabled {
|
|
|
2174
2201
|
.lui-button-plain-text:disabled svg *,
|
|
2175
2202
|
a.lui-button-plain-text:disabled i,
|
|
2176
2203
|
a.lui-button-plain-text:disabled svg * {
|
|
2177
|
-
color: #
|
|
2178
|
-
fill: #
|
|
2204
|
+
color: #989189;
|
|
2205
|
+
fill: #989189;
|
|
2179
2206
|
}
|
|
2180
2207
|
.lui-button-icon-only, .lui-button-icon-only-rev, .lui-button-icon-only-link,
|
|
2181
2208
|
a.lui-button-icon-only,
|
|
2182
2209
|
a.lui-button-icon-only-rev,
|
|
2183
2210
|
a.lui-button-icon-only-link {
|
|
2184
2211
|
background-color: transparent;
|
|
2185
|
-
border:
|
|
2212
|
+
border: 1px solid transparent;
|
|
2186
2213
|
color: #007198;
|
|
2187
|
-
line-height:
|
|
2214
|
+
line-height: 24px;
|
|
2188
2215
|
line-height: 44px;
|
|
2189
2216
|
padding: 0;
|
|
2190
2217
|
width: 36px;
|
|
@@ -2215,8 +2242,8 @@ a.lui-button-icon-only-rev:hover,
|
|
|
2215
2242
|
a.lui-button-icon-only-link:hover {
|
|
2216
2243
|
background-color: transparent;
|
|
2217
2244
|
cursor: pointer;
|
|
2218
|
-
color: #
|
|
2219
|
-
border:
|
|
2245
|
+
color: #005678;
|
|
2246
|
+
border: 1px solid transparent;
|
|
2220
2247
|
}
|
|
2221
2248
|
.lui-button-icon-only:hover i,
|
|
2222
2249
|
.lui-button-icon-only:hover svg *, .lui-button-icon-only-rev:hover i,
|
|
@@ -2228,16 +2255,16 @@ a.lui-button-icon-only-rev:hover i,
|
|
|
2228
2255
|
a.lui-button-icon-only-rev:hover svg *,
|
|
2229
2256
|
a.lui-button-icon-only-link:hover i,
|
|
2230
2257
|
a.lui-button-icon-only-link:hover svg * {
|
|
2231
|
-
color: #
|
|
2232
|
-
fill: #
|
|
2258
|
+
color: #005678;
|
|
2259
|
+
fill: #005678;
|
|
2233
2260
|
}
|
|
2234
2261
|
.lui-button-icon-only:disabled, .lui-button-icon-only-rev:disabled, .lui-button-icon-only-link:disabled,
|
|
2235
2262
|
a.lui-button-icon-only:disabled,
|
|
2236
2263
|
a.lui-button-icon-only-rev:disabled,
|
|
2237
2264
|
a.lui-button-icon-only-link:disabled {
|
|
2238
|
-
color: #
|
|
2265
|
+
color: #989189;
|
|
2239
2266
|
background: #eaeaea;
|
|
2240
|
-
border-color: #
|
|
2267
|
+
border-color: #6b6966;
|
|
2241
2268
|
}
|
|
2242
2269
|
.lui-button-icon-only:disabled i,
|
|
2243
2270
|
.lui-button-icon-only:disabled svg *, .lui-button-icon-only-rev:disabled i,
|
|
@@ -2249,8 +2276,8 @@ a.lui-button-icon-only-rev:disabled i,
|
|
|
2249
2276
|
a.lui-button-icon-only-rev:disabled svg *,
|
|
2250
2277
|
a.lui-button-icon-only-link:disabled i,
|
|
2251
2278
|
a.lui-button-icon-only-link:disabled svg * {
|
|
2252
|
-
color: #
|
|
2253
|
-
fill: #
|
|
2279
|
+
color: #6b6966;
|
|
2280
|
+
fill: #6b6966;
|
|
2254
2281
|
}
|
|
2255
2282
|
.lui-button-icon-only:disabled:hover, .lui-button-icon-only-rev:disabled:hover, .lui-button-icon-only-link:disabled:hover,
|
|
2256
2283
|
a.lui-button-icon-only:disabled:hover,
|
|
@@ -2264,8 +2291,8 @@ a.lui-button-icon-only-rev:active:enabled,
|
|
|
2264
2291
|
a.lui-button-icon-only-link:active:enabled {
|
|
2265
2292
|
background-color: transparent;
|
|
2266
2293
|
cursor: pointer;
|
|
2267
|
-
color: rgba(0, 150, 204, 0.
|
|
2268
|
-
border:
|
|
2294
|
+
color: rgba(0, 150, 204, 0.9);
|
|
2295
|
+
border: 1px solid transparent;
|
|
2269
2296
|
-moz-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2270
2297
|
-webkit-box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
2271
2298
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
@@ -2300,77 +2327,94 @@ a.lui-button-icon-only-rev i,
|
|
|
2300
2327
|
a.lui-button-icon-only-rev svg * {
|
|
2301
2328
|
color: #fff;
|
|
2302
2329
|
}
|
|
2303
|
-
.lui-button-icon-only-rev:disabled,
|
|
2304
|
-
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 {
|
|
2305
2333
|
color: rgba(255, 255, 255, 0.4);
|
|
2306
2334
|
}
|
|
2307
2335
|
.lui-button-icon-only-rev:disabled i,
|
|
2308
|
-
.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 *,
|
|
2309
2338
|
a.lui-button-icon-only-rev:disabled i,
|
|
2310
|
-
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 * {
|
|
2311
2342
|
color: rgba(255, 255, 255, 0.4);
|
|
2312
2343
|
fill: rgba(255, 255, 255, 0.4);
|
|
2313
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
|
+
}
|
|
2314
2352
|
.lui-button-icon-only-link,
|
|
2315
2353
|
a.lui-button-icon-only-link {
|
|
2316
2354
|
color: #0096cc;
|
|
2317
2355
|
}
|
|
2318
2356
|
.lui-button.lui-button-sm,
|
|
2319
2357
|
a.lui-button.lui-button-sm {
|
|
2320
|
-
line-height:
|
|
2321
|
-
padding: 0 0.
|
|
2322
|
-
font-size: 0.875rem;
|
|
2358
|
+
line-height: 24px;
|
|
2359
|
+
padding: 0.1875rem 0.5rem;
|
|
2323
2360
|
}
|
|
2324
2361
|
.lui-button.lui-button-sm.lui-button-icon,
|
|
2325
2362
|
a.lui-button.lui-button-sm.lui-button-icon {
|
|
2326
|
-
padding: 0 0.
|
|
2363
|
+
padding: 0.125rem 0.5rem 0.125rem 0.25rem;
|
|
2327
2364
|
}
|
|
2328
|
-
.lui-button.lui-button-sm.lui-button-icon i,
|
|
2329
2365
|
.lui-button.lui-button-sm.lui-button-icon .LuiIcon,
|
|
2330
|
-
a.lui-button.lui-button-sm.lui-button-icon i,
|
|
2331
2366
|
a.lui-button.lui-button-sm.lui-button-icon .LuiIcon {
|
|
2332
|
-
margin:
|
|
2333
|
-
|
|
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;
|
|
2334
2374
|
}
|
|
2335
2375
|
.lui-button.lui-button-sm.lui-button-icon-right,
|
|
2336
2376
|
a.lui-button.lui-button-sm.lui-button-icon-right {
|
|
2337
|
-
padding: 0
|
|
2377
|
+
padding: 0.125rem 0.25rem 0.125rem 0.5rem;
|
|
2338
2378
|
}
|
|
2339
|
-
.lui-button.lui-button-sm.lui-button-icon-right i,
|
|
2340
2379
|
.lui-button.lui-button-sm.lui-button-icon-right .LuiIcon,
|
|
2341
|
-
a.lui-button.lui-button-sm.lui-button-icon-right i,
|
|
2342
2380
|
a.lui-button.lui-button-sm.lui-button-icon-right .LuiIcon {
|
|
2343
|
-
margin:
|
|
2344
|
-
|
|
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;
|
|
2345
2388
|
}
|
|
2346
2389
|
.lui-button.lui-button-sm.lui-button-reversed-no-bg i,
|
|
2347
2390
|
.lui-button.lui-button-sm.lui-button-reversed-no-bg .LuiIcon,
|
|
2348
2391
|
a.lui-button.lui-button-sm.lui-button-reversed-no-bg i,
|
|
2349
2392
|
a.lui-button.lui-button-sm.lui-button-reversed-no-bg .LuiIcon {
|
|
2350
|
-
font-size: 1.8rem;
|
|
2351
2393
|
top: 9px !important;
|
|
2352
2394
|
}
|
|
2353
2395
|
.lui-button.lui-button-lg,
|
|
2354
2396
|
a.lui-button.lui-button-lg {
|
|
2355
|
-
|
|
2356
|
-
padding: 0 2rem;
|
|
2357
|
-
font-size: 1.125rem;
|
|
2397
|
+
padding: 0.6875rem 1.125rem;
|
|
2358
2398
|
}
|
|
2359
2399
|
.lui-button.lui-button-lg.lui-button-icon,
|
|
2360
2400
|
a.lui-button.lui-button-lg.lui-button-icon {
|
|
2361
|
-
padding: 0
|
|
2401
|
+
padding: 0.6875rem 24px 0.6875rem 0.75rem;
|
|
2362
2402
|
}
|
|
2363
2403
|
.lui-button.lui-button-lg.lui-button-icon i,
|
|
2364
2404
|
a.lui-button.lui-button-lg.lui-button-icon i {
|
|
2365
|
-
|
|
2405
|
+
position: relative;
|
|
2406
|
+
top: 6px;
|
|
2407
|
+
margin: 0 0.5rem 0 0;
|
|
2366
2408
|
}
|
|
2367
2409
|
.lui-button.lui-button-lg.lui-button-icon-right,
|
|
2368
2410
|
a.lui-button.lui-button-lg.lui-button-icon-right {
|
|
2369
|
-
padding: 0
|
|
2411
|
+
padding: 0.6875rem 0.75rem 0.6875rem 24px;
|
|
2370
2412
|
}
|
|
2371
2413
|
.lui-button.lui-button-lg.lui-button-icon-right i,
|
|
2372
2414
|
a.lui-button.lui-button-lg.lui-button-icon-right i {
|
|
2373
|
-
|
|
2415
|
+
position: relative;
|
|
2416
|
+
top: 6px;
|
|
2417
|
+
margin: 0 0 0 0.5rem;
|
|
2374
2418
|
}
|
|
2375
2419
|
.lui-button + .lui-button,
|
|
2376
2420
|
a.lui-button + .lui-button {
|
|
@@ -2420,7 +2464,6 @@ a.lui-button + a.lui-button {
|
|
|
2420
2464
|
}
|
|
2421
2465
|
}
|
|
2422
2466
|
.lui-button-group .lui-button {
|
|
2423
|
-
padding: 0 0.5rem;
|
|
2424
2467
|
background-color: #fff;
|
|
2425
2468
|
border-radius: 0;
|
|
2426
2469
|
border: 1px solid #004b50;
|
|
@@ -2437,7 +2480,7 @@ a.lui-button + a.lui-button {
|
|
|
2437
2480
|
text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
|
|
2438
2481
|
}
|
|
2439
2482
|
.lui-button-group .lui-button.lui-button-active:disabled {
|
|
2440
|
-
background-color: #
|
|
2483
|
+
background-color: #989189;
|
|
2441
2484
|
color: #ffffff;
|
|
2442
2485
|
}
|
|
2443
2486
|
.lui-button-group .lui-button:hover {
|
|
@@ -2451,8 +2494,8 @@ a.lui-button + a.lui-button {
|
|
|
2451
2494
|
}
|
|
2452
2495
|
.lui-button-group .lui-button:disabled {
|
|
2453
2496
|
background-color: #eaeaea;
|
|
2454
|
-
border: 1px solid #
|
|
2455
|
-
color: #
|
|
2497
|
+
border: 1px solid #6b6966;
|
|
2498
|
+
color: #989189;
|
|
2456
2499
|
cursor: not-allowed;
|
|
2457
2500
|
}
|
|
2458
2501
|
.lui-button-group--radio {
|
|
@@ -2675,7 +2718,7 @@ a.lui-button + a.lui-button {
|
|
|
2675
2718
|
}
|
|
2676
2719
|
|
|
2677
2720
|
.linz-button-primary {
|
|
2678
|
-
border:
|
|
2721
|
+
border: 1px solid #023d48;
|
|
2679
2722
|
background-color: #023d48;
|
|
2680
2723
|
border-color: #023d48;
|
|
2681
2724
|
color: #fff;
|
|
@@ -2687,7 +2730,7 @@ a.lui-button + a.lui-button {
|
|
|
2687
2730
|
}
|
|
2688
2731
|
|
|
2689
2732
|
.linz-button-secondary {
|
|
2690
|
-
border:
|
|
2733
|
+
border: 1px solid #023d48;
|
|
2691
2734
|
color: #023d48;
|
|
2692
2735
|
}
|
|
2693
2736
|
.linz-button-secondary:hover {
|
|
@@ -2698,7 +2741,7 @@ a.lui-button + a.lui-button {
|
|
|
2698
2741
|
}
|
|
2699
2742
|
|
|
2700
2743
|
.linz-button-tertiary {
|
|
2701
|
-
border:
|
|
2744
|
+
border: 1px solid #e1e44a;
|
|
2702
2745
|
background-color: #e1e44a;
|
|
2703
2746
|
color: #023d48;
|
|
2704
2747
|
}
|
|
@@ -2738,7 +2781,7 @@ a.lui-button + a.lui-button {
|
|
|
2738
2781
|
}
|
|
2739
2782
|
.LuiDeprecatedForms .lui-checkbox-container input:disabled + label,
|
|
2740
2783
|
.LuiDeprecatedForms .lui-radio-container input:disabled + label {
|
|
2741
|
-
color: #
|
|
2784
|
+
color: #989189;
|
|
2742
2785
|
}
|
|
2743
2786
|
.LuiDeprecatedForms .lui-checkbox-container label,
|
|
2744
2787
|
.LuiDeprecatedForms .lui-radio-container label {
|
|
@@ -2763,7 +2806,7 @@ a.lui-button + a.lui-button {
|
|
|
2763
2806
|
background: #004b50;
|
|
2764
2807
|
}
|
|
2765
2808
|
.LuiDeprecatedForms .lui-radio-container input:checked:disabled:before {
|
|
2766
|
-
background: #
|
|
2809
|
+
background: #6b6966;
|
|
2767
2810
|
}
|
|
2768
2811
|
.LuiDeprecatedForms .lui-checkbox-container input[type=checkbox] {
|
|
2769
2812
|
box-sizing: border-box;
|
|
@@ -2789,8 +2832,8 @@ a.lui-button + a.lui-button {
|
|
|
2789
2832
|
line-height: 1.5rem;
|
|
2790
2833
|
}
|
|
2791
2834
|
.LuiDeprecatedForms .lui-checkbox-container input[type=checkbox]:checked:disabled {
|
|
2792
|
-
background: #
|
|
2793
|
-
border-color: #
|
|
2835
|
+
background: #6b6966;
|
|
2836
|
+
border-color: #6b6966;
|
|
2794
2837
|
}
|
|
2795
2838
|
.LuiDeprecatedForms .lui-input-error .lui-input-group-wrapper, .LuiDeprecatedForms .lui-input-error.lui-button-group {
|
|
2796
2839
|
position: relative;
|
|
@@ -3003,7 +3046,7 @@ fieldset {
|
|
|
3003
3046
|
color: #00425d;
|
|
3004
3047
|
}
|
|
3005
3048
|
*:not[button] .lui-link-icon-disabled i {
|
|
3006
|
-
color: #
|
|
3049
|
+
color: #989189;
|
|
3007
3050
|
}
|
|
3008
3051
|
*:not[button] .lui-link-icon-disabled i:hover {
|
|
3009
3052
|
cursor: not-allowed;
|
|
@@ -4419,7 +4462,6 @@ body.lui-menu-drawer-open {
|
|
|
4419
4462
|
}
|
|
4420
4463
|
.LuiCheckboxInput--isDisabled .LuiCheckboxInput-label {
|
|
4421
4464
|
cursor: not-allowed;
|
|
4422
|
-
color: #6b6966;
|
|
4423
4465
|
}
|
|
4424
4466
|
|
|
4425
4467
|
.LuiCheckboxInput-input {
|
|
@@ -4445,42 +4487,43 @@ body.lui-menu-drawer-open {
|
|
|
4445
4487
|
}
|
|
4446
4488
|
|
|
4447
4489
|
.LuiCheckboxInput-labelCheck {
|
|
4448
|
-
|
|
4449
|
-
fill: #ffffff;
|
|
4490
|
+
fill: rgba(255, 255, 255, 0);
|
|
4450
4491
|
background-color: #ffffff;
|
|
4451
|
-
border
|
|
4492
|
+
border: 2px solid #007198;
|
|
4493
|
+
border-radius: 3px;
|
|
4452
4494
|
transition: background-color 0.3s ease-in-out;
|
|
4453
4495
|
order: -1;
|
|
4454
4496
|
margin-right: 0.5rem;
|
|
4455
4497
|
}
|
|
4456
|
-
.LuiCheckboxInput-labelCheck
|
|
4457
|
-
|
|
4458
|
-
|
|
4459
|
-
|
|
4460
|
-
height: 24px;
|
|
4461
|
-
border: 2px solid #007198;
|
|
4462
|
-
border-radius: 4px;
|
|
4498
|
+
.LuiCheckboxInput-labelCheck svg {
|
|
4499
|
+
position: relative;
|
|
4500
|
+
top: -2px;
|
|
4501
|
+
left: -2px;
|
|
4463
4502
|
}
|
|
4464
4503
|
.LuiCheckboxInput-input:checked .LuiCheckboxInput-labelCheck, .LuiCheckboxInput--isChecked .LuiCheckboxInput-labelCheck {
|
|
4465
4504
|
background-color: #007198;
|
|
4505
|
+
fill: white;
|
|
4466
4506
|
}
|
|
4467
4507
|
|
|
4468
|
-
.LuiCheckboxInput--hasError .LuiCheckboxInput-labelCheck
|
|
4508
|
+
.LuiCheckboxInput--hasError .LuiCheckboxInput-labelCheck {
|
|
4469
4509
|
border-color: #cc0000;
|
|
4470
4510
|
}
|
|
4471
4511
|
|
|
4472
4512
|
.LuiCheckboxInput--isChecked.LuiCheckboxInput--hasError .LuiCheckboxInput-labelCheck {
|
|
4473
4513
|
background-color: #cc0000;
|
|
4514
|
+
border-color: #cc0000;
|
|
4474
4515
|
}
|
|
4475
4516
|
|
|
4476
|
-
.LuiCheckboxInput-input:disabled + .LuiCheckboxInput-label .LuiCheckboxInput-labelCheck
|
|
4477
|
-
.LuiCheckboxInput--isDisabled .LuiCheckboxInput-labelCheck
|
|
4478
|
-
border-color: #
|
|
4517
|
+
.LuiCheckboxInput-input:disabled + .LuiCheckboxInput-label .LuiCheckboxInput-labelCheck,
|
|
4518
|
+
.LuiCheckboxInput--isDisabled .LuiCheckboxInput-labelCheck {
|
|
4519
|
+
border-color: #989189;
|
|
4520
|
+
background-color: #eaeaea;
|
|
4479
4521
|
}
|
|
4480
4522
|
|
|
4481
4523
|
.LuiCheckboxInput-input:checked:disabled + .LuiCheckboxInput-label .LuiCheckboxInput-labelCheck,
|
|
4482
4524
|
.LuiCheckboxInput--isChecked.LuiCheckboxInput--isDisabled .LuiCheckboxInput-labelCheck {
|
|
4483
|
-
background-color: #
|
|
4525
|
+
background-color: #989189;
|
|
4526
|
+
border-color: #989189;
|
|
4484
4527
|
}
|
|
4485
4528
|
|
|
4486
4529
|
.LuiCheckboxInput--inline {
|
|
@@ -4554,7 +4597,6 @@ body.lui-menu-drawer-open {
|
|
|
4554
4597
|
opacity: 1;
|
|
4555
4598
|
}
|
|
4556
4599
|
.LuiRadioInput-label--isDisabled {
|
|
4557
|
-
color: #6b6966;
|
|
4558
4600
|
cursor: not-allowed;
|
|
4559
4601
|
}
|
|
4560
4602
|
.LuiRadioInput-label--isDisabled:before {
|
|
@@ -4562,7 +4604,7 @@ body.lui-menu-drawer-open {
|
|
|
4562
4604
|
border-color: #989189;
|
|
4563
4605
|
}
|
|
4564
4606
|
.LuiRadioInput-label--isDisabled:after {
|
|
4565
|
-
background-color: #
|
|
4607
|
+
background-color: #6b6966;
|
|
4566
4608
|
}
|
|
4567
4609
|
|
|
4568
4610
|
.LuiRadioInput--hasError .LuiRadioInput-label:before {
|
|
@@ -5386,7 +5428,7 @@ body.lui-menu-drawer-open {
|
|
|
5386
5428
|
}
|
|
5387
5429
|
|
|
5388
5430
|
.LuiIcon--disabled {
|
|
5389
|
-
fill: #
|
|
5431
|
+
fill: #989189;
|
|
5390
5432
|
}
|
|
5391
5433
|
|
|
5392
5434
|
.LuiMenuTrigger {
|