@linzjs/lui 24.14.0 → 24.16.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/dist/lui.css CHANGED
@@ -1505,7 +1505,7 @@ button {
1505
1505
  padding: 0.4375rem 1rem;
1506
1506
  border: none;
1507
1507
  border-radius: 3px;
1508
- transition: background-color 0.3s, color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
1508
+ transition: background-color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
1509
1509
  }
1510
1510
  button i,
1511
1511
  button svg * {
@@ -1525,7 +1525,7 @@ a.lui-button {
1525
1525
  padding: 0.4375rem 1rem;
1526
1526
  border: none;
1527
1527
  border-radius: 3px;
1528
- transition: background-color 0.3s, color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
1528
+ transition: background-color 0.3s, height 0.3s, border 0.3s, fill 0.3s;
1529
1529
  }
1530
1530
  a.lui-button i,
1531
1531
  a.lui-button svg * {
@@ -1549,7 +1549,7 @@ a.lui-button.lui-button-icon-right {
1549
1549
  }
1550
1550
  .lui-button.lui-button-icon-right .LuiIcon,
1551
1551
  a.lui-button.lui-button-icon-right .LuiIcon {
1552
- margin: 3px 0 -7px 12px;
1552
+ margin: 3px 0 -7px 11px;
1553
1553
  }
1554
1554
  .lui-button.lui-button-icon-right i,
1555
1555
  a.lui-button.lui-button-icon-right i {
@@ -1590,37 +1590,51 @@ a.lui-button-primary svg * {
1590
1590
  a.lui-button-primary:visited {
1591
1591
  color: #fff;
1592
1592
  }
1593
- .lui-button-primary:hover,
1594
- a.lui-button-primary:hover {
1593
+ .lui-button-primary:hover:where(:not([aria-busy])),
1594
+ a.lui-button-primary:hover:where(:not([aria-busy])) {
1595
1595
  background-color: #005678;
1596
1596
  cursor: pointer;
1597
1597
  color: #fff;
1598
1598
  border: 1px solid #005678;
1599
1599
  }
1600
- .lui-button-primary:hover i,
1601
- .lui-button-primary:hover svg *,
1602
- a.lui-button-primary:hover i,
1603
- a.lui-button-primary:hover svg * {
1600
+ .lui-button-primary:hover:where(:not([aria-busy])) i,
1601
+ .lui-button-primary:hover:where(:not([aria-busy])) svg *,
1602
+ a.lui-button-primary:hover:where(:not([aria-busy])) i,
1603
+ a.lui-button-primary:hover:where(:not([aria-busy])) svg * {
1604
1604
  color: #fff;
1605
1605
  fill: #fff;
1606
1606
  }
1607
- .lui-button-primary:disabled,
1608
- a.lui-button-primary:disabled {
1607
+ .lui-button-primary:disabled:where(:not([aria-busy])),
1608
+ a.lui-button-primary:disabled:where(:not([aria-busy])) {
1609
1609
  color: #989189;
1610
1610
  background: #eaeaea;
1611
1611
  border-color: #6b6966;
1612
1612
  }
1613
- .lui-button-primary:disabled i,
1614
- .lui-button-primary:disabled svg *,
1615
- a.lui-button-primary:disabled i,
1616
- a.lui-button-primary:disabled svg * {
1613
+ .lui-button-primary:disabled:where(:not([aria-busy])) i,
1614
+ .lui-button-primary:disabled:where(:not([aria-busy])) svg *,
1615
+ a.lui-button-primary:disabled:where(:not([aria-busy])) i,
1616
+ a.lui-button-primary:disabled:where(:not([aria-busy])) svg * {
1617
1617
  color: #6b6966;
1618
1618
  fill: #6b6966;
1619
1619
  }
1620
- .lui-button-primary:disabled:hover,
1621
- a.lui-button-primary:disabled:hover {
1620
+ .lui-button-primary:disabled:where(:not([aria-busy])):hover,
1621
+ a.lui-button-primary:disabled:where(:not([aria-busy])):hover {
1622
1622
  cursor: not-allowed;
1623
1623
  }
1624
+ .lui-button-primary[aria-busy]:hover,
1625
+ a.lui-button-primary[aria-busy]:hover {
1626
+ cursor: progress;
1627
+ }
1628
+ .lui-button-primary[aria-busy]:not(:active),
1629
+ a.lui-button-primary[aria-busy]:not(:active) {
1630
+ transition: none;
1631
+ }
1632
+ .lui-button-primary[aria-busy]:not(:active) i,
1633
+ .lui-button-primary[aria-busy]:not(:active) svg *,
1634
+ a.lui-button-primary[aria-busy]:not(:active) i,
1635
+ a.lui-button-primary[aria-busy]:not(:active) svg * {
1636
+ transition: none;
1637
+ }
1624
1638
  .lui-button-primary:active:enabled,
1625
1639
  a.lui-button-primary:active:enabled {
1626
1640
  background-color: #00425d;
@@ -1635,9 +1649,8 @@ a.lui-button-primary:active:enabled svg * {
1635
1649
  color: rgba(255, 255, 255, 0.6);
1636
1650
  fill: rgba(255, 255, 255, 0.6);
1637
1651
  }
1638
- .lui-button-secondary, .lui-button-warning,
1639
- a.lui-button-secondary,
1640
- a.lui-button-warning {
1652
+ .lui-button-secondary,
1653
+ a.lui-button-secondary {
1641
1654
  background-color: #fff;
1642
1655
  border: 1px solid #007198;
1643
1656
  color: #007198;
@@ -1645,104 +1658,135 @@ a.lui-button-warning {
1645
1658
  font-weight: 600;
1646
1659
  }
1647
1660
  .lui-button-secondary i,
1648
- .lui-button-secondary svg *, .lui-button-warning i,
1649
- .lui-button-warning svg *,
1661
+ .lui-button-secondary svg *,
1650
1662
  a.lui-button-secondary i,
1651
- a.lui-button-secondary svg *,
1652
- a.lui-button-warning i,
1653
- a.lui-button-warning svg * {
1663
+ a.lui-button-secondary svg * {
1654
1664
  color: #007198;
1655
1665
  fill: #007198;
1656
1666
  }
1657
- .lui-button-secondary:visited, .lui-button-warning:visited,
1658
- a.lui-button-secondary:visited,
1659
- a.lui-button-warning:visited {
1667
+ .lui-button-secondary:visited,
1668
+ a.lui-button-secondary:visited {
1660
1669
  color: #007198;
1661
1670
  }
1662
- .lui-button-secondary:hover, .lui-button-warning:hover,
1663
- a.lui-button-secondary:hover,
1664
- a.lui-button-warning:hover {
1671
+ .lui-button-secondary:hover:where(:not([aria-busy])),
1672
+ a.lui-button-secondary:hover:where(:not([aria-busy])) {
1665
1673
  background-color: #e2f3f7;
1666
1674
  cursor: pointer;
1667
1675
  color: #007198;
1668
1676
  border: 1px solid #007198;
1669
1677
  }
1670
- .lui-button-secondary:hover i,
1671
- .lui-button-secondary:hover svg *, .lui-button-warning:hover i,
1672
- .lui-button-warning:hover svg *,
1673
- a.lui-button-secondary:hover i,
1674
- a.lui-button-secondary:hover svg *,
1675
- a.lui-button-warning:hover i,
1676
- a.lui-button-warning:hover svg * {
1678
+ .lui-button-secondary:hover:where(:not([aria-busy])) i,
1679
+ .lui-button-secondary:hover:where(:not([aria-busy])) svg *,
1680
+ a.lui-button-secondary:hover:where(:not([aria-busy])) i,
1681
+ a.lui-button-secondary:hover:where(:not([aria-busy])) svg * {
1677
1682
  color: #007198;
1678
1683
  fill: #007198;
1679
1684
  }
1680
- .lui-button-secondary:disabled, .lui-button-warning:disabled,
1681
- a.lui-button-secondary:disabled,
1682
- a.lui-button-warning:disabled {
1685
+ .lui-button-secondary:disabled:where(:not([aria-busy])),
1686
+ a.lui-button-secondary:disabled:where(:not([aria-busy])) {
1683
1687
  color: #989189;
1684
1688
  background: #eaeaea;
1685
1689
  border-color: #6b6966;
1686
1690
  }
1687
- .lui-button-secondary:disabled i,
1688
- .lui-button-secondary:disabled svg *, .lui-button-warning:disabled i,
1689
- .lui-button-warning:disabled svg *,
1690
- a.lui-button-secondary:disabled i,
1691
- a.lui-button-secondary:disabled svg *,
1692
- a.lui-button-warning:disabled i,
1693
- a.lui-button-warning:disabled svg * {
1691
+ .lui-button-secondary:disabled:where(:not([aria-busy])) i,
1692
+ .lui-button-secondary:disabled:where(:not([aria-busy])) svg *,
1693
+ a.lui-button-secondary:disabled:where(:not([aria-busy])) i,
1694
+ a.lui-button-secondary:disabled:where(:not([aria-busy])) svg * {
1694
1695
  color: #6b6966;
1695
1696
  fill: #6b6966;
1696
1697
  }
1697
- .lui-button-secondary:disabled:hover, .lui-button-warning:disabled:hover,
1698
- a.lui-button-secondary:disabled:hover,
1699
- a.lui-button-warning:disabled:hover {
1698
+ .lui-button-secondary:disabled:where(:not([aria-busy])):hover,
1699
+ a.lui-button-secondary:disabled:where(:not([aria-busy])):hover {
1700
1700
  cursor: not-allowed;
1701
1701
  }
1702
- .lui-button-secondary:active:enabled, .lui-button-warning:active:enabled,
1703
- a.lui-button-secondary:active:enabled,
1704
- a.lui-button-warning:active:enabled {
1702
+ .lui-button-secondary[aria-busy]:hover,
1703
+ a.lui-button-secondary[aria-busy]:hover {
1704
+ cursor: progress;
1705
+ }
1706
+ .lui-button-secondary[aria-busy]:not(:active),
1707
+ a.lui-button-secondary[aria-busy]:not(:active) {
1708
+ transition: none;
1709
+ }
1710
+ .lui-button-secondary[aria-busy]:not(:active) i,
1711
+ .lui-button-secondary[aria-busy]:not(:active) svg *,
1712
+ a.lui-button-secondary[aria-busy]:not(:active) i,
1713
+ a.lui-button-secondary[aria-busy]:not(:active) svg * {
1714
+ transition: none;
1715
+ }
1716
+ .lui-button-secondary:active:enabled,
1717
+ a.lui-button-secondary:active:enabled {
1705
1718
  background-color: #007198;
1706
1719
  cursor: pointer;
1707
1720
  color: rgba(255, 255, 255, 0.9);
1708
1721
  border: 1px solid #007198;
1709
1722
  }
1710
1723
  .lui-button-secondary:active:enabled i,
1711
- .lui-button-secondary:active:enabled svg *, .lui-button-warning:active:enabled i,
1712
- .lui-button-warning:active:enabled svg *,
1724
+ .lui-button-secondary:active:enabled svg *,
1713
1725
  a.lui-button-secondary:active:enabled i,
1714
- a.lui-button-secondary:active:enabled svg *,
1715
- a.lui-button-warning:active:enabled i,
1716
- a.lui-button-warning:active:enabled svg * {
1726
+ a.lui-button-secondary:active:enabled svg * {
1717
1727
  color: rgba(255, 255, 255, 0.6);
1718
1728
  fill: rgba(255, 255, 255, 0.6);
1719
1729
  }
1730
+ .lui-button-secondary.lui-button-danger:not(:disabled),
1731
+ a.lui-button-secondary.lui-button-danger:not(:disabled) {
1732
+ color: #cc0000;
1733
+ }
1734
+ .lui-button-secondary.lui-button-danger:where([aria-busy]),
1735
+ a.lui-button-secondary.lui-button-danger:where([aria-busy]) {
1736
+ color: #cc0000;
1737
+ }
1738
+ .lui-button-secondary.lui-button-danger:not(:disabled), .lui-button-secondary.lui-button-danger[aria-busy],
1739
+ a.lui-button-secondary.lui-button-danger:not(:disabled),
1740
+ a.lui-button-secondary.lui-button-danger[aria-busy] {
1741
+ background-color: #ffffff;
1742
+ border-color: #cc0000;
1743
+ }
1744
+ .lui-button-secondary.lui-button-danger:not(:disabled) i,
1745
+ .lui-button-secondary.lui-button-danger:not(:disabled) svg *, .lui-button-secondary.lui-button-danger[aria-busy] i,
1746
+ .lui-button-secondary.lui-button-danger[aria-busy] svg *,
1747
+ a.lui-button-secondary.lui-button-danger:not(:disabled) i,
1748
+ a.lui-button-secondary.lui-button-danger:not(:disabled) svg *,
1749
+ a.lui-button-secondary.lui-button-danger[aria-busy] i,
1750
+ a.lui-button-secondary.lui-button-danger[aria-busy] svg * {
1751
+ color: #cc0000;
1752
+ fill: #cc0000;
1753
+ }
1754
+ .lui-button-secondary.lui-button-danger:hover:enabled,
1755
+ a.lui-button-secondary.lui-button-danger:hover:enabled {
1756
+ background-color: #F5CCCC;
1757
+ border-color: #cc0000;
1758
+ color: #cc0000;
1759
+ }
1760
+ .lui-button-secondary.lui-button-danger:hover:enabled i,
1761
+ .lui-button-secondary.lui-button-danger:hover:enabled svg *,
1762
+ a.lui-button-secondary.lui-button-danger:hover:enabled i,
1763
+ a.lui-button-secondary.lui-button-danger:hover:enabled svg * {
1764
+ color: #cc0000;
1765
+ fill: #cc0000;
1766
+ }
1767
+ .lui-button-secondary.lui-button-danger:active:enabled,
1768
+ a.lui-button-secondary.lui-button-danger:active:enabled {
1769
+ background-color: #cc0000;
1770
+ border-color: #cc0000;
1771
+ color: rgba(245, 204, 204, 0.9);
1772
+ }
1773
+ .lui-button-secondary.lui-button-danger:active:enabled i,
1774
+ .lui-button-secondary.lui-button-danger:active:enabled svg *,
1775
+ a.lui-button-secondary.lui-button-danger:active:enabled i,
1776
+ a.lui-button-secondary.lui-button-danger:active:enabled svg * {
1777
+ color: rgba(245, 204, 204, 0.9);
1778
+ fill: rgba(245, 204, 204, 0.9);
1779
+ }
1720
1780
  .lui-button-secondary i,
1721
- .lui-button-secondary svg *, .lui-button-warning i,
1722
- .lui-button-warning svg *,
1781
+ .lui-button-secondary svg *,
1723
1782
  a.lui-button-secondary i,
1724
- a.lui-button-secondary svg *,
1725
- a.lui-button-warning i,
1726
- a.lui-button-warning svg * {
1783
+ a.lui-button-secondary svg * {
1727
1784
  color: #007198;
1728
1785
  }
1729
- .lui-button-secondary:hover i, .lui-button-warning:hover i,
1730
- a.lui-button-secondary:hover i,
1731
- a.lui-button-warning:hover i {
1786
+ .lui-button-secondary:hover:where(:not([aria-busy])) i,
1787
+ a.lui-button-secondary:hover:where(:not([aria-busy])) i {
1732
1788
  color: #007198;
1733
1789
  }
1734
- .lui-button-warning i,
1735
- .lui-button-warning svg *,
1736
- a.lui-button-warning i,
1737
- a.lui-button-warning svg * {
1738
- fill: #EA6A2E;
1739
- color: #EA6A2E;
1740
- }
1741
- .lui-button-warning:hover i,
1742
- a.lui-button-warning:hover i {
1743
- fill: #b33a01;
1744
- color: #b33a01;
1745
- }
1746
1790
  .lui-button-tertiary,
1747
1791
  a.lui-button-tertiary {
1748
1792
  background-color: transparent;
@@ -1762,37 +1806,51 @@ a.lui-button-tertiary svg * {
1762
1806
  a.lui-button-tertiary:visited {
1763
1807
  color: #007198;
1764
1808
  }
1765
- .lui-button-tertiary:hover,
1766
- a.lui-button-tertiary:hover {
1809
+ .lui-button-tertiary:hover:where(:not([aria-busy])),
1810
+ a.lui-button-tertiary:hover:where(:not([aria-busy])) {
1767
1811
  background-color: #e2f3f7;
1768
1812
  cursor: pointer;
1769
1813
  color: #007198;
1770
1814
  border: 1px solid #fff;
1771
1815
  }
1772
- .lui-button-tertiary:hover i,
1773
- .lui-button-tertiary:hover svg *,
1774
- a.lui-button-tertiary:hover i,
1775
- a.lui-button-tertiary:hover svg * {
1816
+ .lui-button-tertiary:hover:where(:not([aria-busy])) i,
1817
+ .lui-button-tertiary:hover:where(:not([aria-busy])) svg *,
1818
+ a.lui-button-tertiary:hover:where(:not([aria-busy])) i,
1819
+ a.lui-button-tertiary:hover:where(:not([aria-busy])) svg * {
1776
1820
  color: #007198;
1777
1821
  fill: #007198;
1778
1822
  }
1779
- .lui-button-tertiary:disabled,
1780
- a.lui-button-tertiary:disabled {
1823
+ .lui-button-tertiary:disabled:where(:not([aria-busy])),
1824
+ a.lui-button-tertiary:disabled:where(:not([aria-busy])) {
1781
1825
  color: #989189;
1782
1826
  background: #eaeaea;
1783
1827
  border-color: #6b6966;
1784
1828
  }
1785
- .lui-button-tertiary:disabled i,
1786
- .lui-button-tertiary:disabled svg *,
1787
- a.lui-button-tertiary:disabled i,
1788
- a.lui-button-tertiary:disabled svg * {
1829
+ .lui-button-tertiary:disabled:where(:not([aria-busy])) i,
1830
+ .lui-button-tertiary:disabled:where(:not([aria-busy])) svg *,
1831
+ a.lui-button-tertiary:disabled:where(:not([aria-busy])) i,
1832
+ a.lui-button-tertiary:disabled:where(:not([aria-busy])) svg * {
1789
1833
  color: #6b6966;
1790
1834
  fill: #6b6966;
1791
1835
  }
1792
- .lui-button-tertiary:disabled:hover,
1793
- a.lui-button-tertiary:disabled:hover {
1836
+ .lui-button-tertiary:disabled:where(:not([aria-busy])):hover,
1837
+ a.lui-button-tertiary:disabled:where(:not([aria-busy])):hover {
1794
1838
  cursor: not-allowed;
1795
1839
  }
1840
+ .lui-button-tertiary[aria-busy]:hover,
1841
+ a.lui-button-tertiary[aria-busy]:hover {
1842
+ cursor: progress;
1843
+ }
1844
+ .lui-button-tertiary[aria-busy]:not(:active),
1845
+ a.lui-button-tertiary[aria-busy]:not(:active) {
1846
+ transition: none;
1847
+ }
1848
+ .lui-button-tertiary[aria-busy]:not(:active) i,
1849
+ .lui-button-tertiary[aria-busy]:not(:active) svg *,
1850
+ a.lui-button-tertiary[aria-busy]:not(:active) i,
1851
+ a.lui-button-tertiary[aria-busy]:not(:active) svg * {
1852
+ transition: none;
1853
+ }
1796
1854
  .lui-button-tertiary:active:enabled,
1797
1855
  a.lui-button-tertiary:active:enabled {
1798
1856
  background-color: #007198;
@@ -1807,6 +1865,56 @@ a.lui-button-tertiary:active:enabled svg * {
1807
1865
  color: rgba(255, 255, 255, 0.6);
1808
1866
  fill: rgba(255, 255, 255, 0.6);
1809
1867
  }
1868
+ .lui-button-tertiary.lui-button-danger:not(:disabled),
1869
+ a.lui-button-tertiary.lui-button-danger:not(:disabled) {
1870
+ color: #cc0000;
1871
+ }
1872
+ .lui-button-tertiary.lui-button-danger:where([aria-busy]),
1873
+ a.lui-button-tertiary.lui-button-danger:where([aria-busy]) {
1874
+ color: #cc0000;
1875
+ }
1876
+ .lui-button-tertiary.lui-button-danger:not(:disabled), .lui-button-tertiary.lui-button-danger[aria-busy],
1877
+ a.lui-button-tertiary.lui-button-danger:not(:disabled),
1878
+ a.lui-button-tertiary.lui-button-danger[aria-busy] {
1879
+ background-color: transparent;
1880
+ border-color: transparent;
1881
+ }
1882
+ .lui-button-tertiary.lui-button-danger:not(:disabled) i,
1883
+ .lui-button-tertiary.lui-button-danger:not(:disabled) svg *, .lui-button-tertiary.lui-button-danger[aria-busy] i,
1884
+ .lui-button-tertiary.lui-button-danger[aria-busy] svg *,
1885
+ a.lui-button-tertiary.lui-button-danger:not(:disabled) i,
1886
+ a.lui-button-tertiary.lui-button-danger:not(:disabled) svg *,
1887
+ a.lui-button-tertiary.lui-button-danger[aria-busy] i,
1888
+ a.lui-button-tertiary.lui-button-danger[aria-busy] svg * {
1889
+ color: #cc0000;
1890
+ fill: #cc0000;
1891
+ }
1892
+ .lui-button-tertiary.lui-button-danger:hover:enabled,
1893
+ a.lui-button-tertiary.lui-button-danger:hover:enabled {
1894
+ background-color: #F5CCCC;
1895
+ border-color: #F5CCCC;
1896
+ color: #cc0000;
1897
+ }
1898
+ .lui-button-tertiary.lui-button-danger:hover:enabled i,
1899
+ .lui-button-tertiary.lui-button-danger:hover:enabled svg *,
1900
+ a.lui-button-tertiary.lui-button-danger:hover:enabled i,
1901
+ a.lui-button-tertiary.lui-button-danger:hover:enabled svg * {
1902
+ color: #cc0000;
1903
+ fill: #cc0000;
1904
+ }
1905
+ .lui-button-tertiary.lui-button-danger:active:enabled,
1906
+ a.lui-button-tertiary.lui-button-danger:active:enabled {
1907
+ background-color: #cc0000;
1908
+ border-color: #cc0000;
1909
+ color: rgba(245, 204, 204, 0.9);
1910
+ }
1911
+ .lui-button-tertiary.lui-button-danger:active:enabled i,
1912
+ .lui-button-tertiary.lui-button-danger:active:enabled svg *,
1913
+ a.lui-button-tertiary.lui-button-danger:active:enabled i,
1914
+ a.lui-button-tertiary.lui-button-danger:active:enabled svg * {
1915
+ color: rgba(245, 204, 204, 0.9);
1916
+ fill: rgba(245, 204, 204, 0.9);
1917
+ }
1810
1918
  .lui-button-tertiary,
1811
1919
  a.lui-button-tertiary {
1812
1920
  font-family: "Open Sans", system-ui, sans-serif;
@@ -1815,160 +1923,155 @@ a.lui-button-tertiary {
1815
1923
  border: none;
1816
1924
  margin: 2px;
1817
1925
  }
1818
- .lui-button-tertiary:hover,
1819
- a.lui-button-tertiary:hover {
1926
+ .lui-button-tertiary:hover:where(:not([aria-busy])),
1927
+ a.lui-button-tertiary:hover:where(:not([aria-busy])) {
1820
1928
  border: none;
1821
1929
  }
1822
- .lui-button-tertiary:active:enabled,
1823
- a.lui-button-tertiary:active:enabled {
1930
+ .lui-button-tertiary:active:enabled:where(:not([aria-busy])),
1931
+ a.lui-button-tertiary:active:enabled:where(:not([aria-busy])) {
1824
1932
  border: none;
1825
1933
  }
1826
- .lui-button-tertiary:disabled,
1827
- a.lui-button-tertiary:disabled {
1934
+ .lui-button-tertiary:disabled:where(:not([aria-busy])),
1935
+ a.lui-button-tertiary:disabled:where(:not([aria-busy])) {
1828
1936
  color: #989189;
1829
1937
  background: none;
1830
1938
  text-decoration: none;
1831
1939
  border: none;
1832
1940
  }
1833
- .lui-button-tertiary:disabled:hover,
1834
- a.lui-button-tertiary:disabled:hover {
1941
+ .lui-button-tertiary:disabled:where(:not([aria-busy])):hover,
1942
+ a.lui-button-tertiary:disabled:where(:not([aria-busy])):hover {
1835
1943
  cursor: not-allowed;
1836
- border: none;
1837
1944
  }
1838
- .lui-button-tertiary:disabled i,
1839
- .lui-button-tertiary:disabled svg *,
1840
- a.lui-button-tertiary:disabled i,
1841
- a.lui-button-tertiary:disabled svg * {
1945
+ .lui-button-tertiary:disabled:where(:not([aria-busy])) i,
1946
+ .lui-button-tertiary:disabled:where(:not([aria-busy])) svg *,
1947
+ a.lui-button-tertiary:disabled:where(:not([aria-busy])) i,
1948
+ a.lui-button-tertiary:disabled:where(:not([aria-busy])) svg * {
1842
1949
  color: #989189;
1843
1950
  fill: #989189;
1844
1951
  }
1845
- .lui-button-success,
1846
- a.lui-button-success {
1847
- background-color: #0aa245;
1848
- border: 1px solid #0aa245;
1849
- color: #fff;
1850
- line-height: 24px;
1851
- font-weight: 600;
1852
- }
1853
- .lui-button-success i,
1854
- .lui-button-success svg *,
1855
- a.lui-button-success i,
1856
- a.lui-button-success svg * {
1857
- color: #fff;
1858
- fill: #fff;
1859
- }
1860
- .lui-button-success:visited,
1861
- a.lui-button-success:visited {
1862
- color: #fff;
1952
+ .lui-button-success:not(:disabled),
1953
+ a.lui-button-success:not(:disabled) {
1954
+ color: #ffffff;
1863
1955
  }
1864
- .lui-button-success:hover,
1865
- a.lui-button-success:hover {
1866
- background-color: #107c3a;
1867
- cursor: pointer;
1868
- color: #fff;
1869
- border: 1px solid #107c3a;
1956
+ .lui-button-success:where([aria-busy]),
1957
+ a.lui-button-success:where([aria-busy]) {
1958
+ color: #ffffff;
1870
1959
  }
1871
- .lui-button-success:hover i,
1872
- .lui-button-success:hover svg *,
1873
- a.lui-button-success:hover i,
1874
- a.lui-button-success:hover svg * {
1875
- color: #fff;
1876
- fill: #fff;
1960
+ .lui-button-success:not(:disabled), .lui-button-success[aria-busy],
1961
+ a.lui-button-success:not(:disabled),
1962
+ a.lui-button-success[aria-busy] {
1963
+ background-color: #0aa245;
1964
+ border-color: #0aa245;
1877
1965
  }
1878
- .lui-button-success:disabled,
1879
- a.lui-button-success:disabled {
1880
- color: #989189;
1881
- background: #eaeaea;
1882
- border-color: #6b6966;
1966
+ .lui-button-success:not(:disabled) i,
1967
+ .lui-button-success:not(:disabled) svg *, .lui-button-success[aria-busy] i,
1968
+ .lui-button-success[aria-busy] svg *,
1969
+ a.lui-button-success:not(:disabled) i,
1970
+ a.lui-button-success:not(:disabled) svg *,
1971
+ a.lui-button-success[aria-busy] i,
1972
+ a.lui-button-success[aria-busy] svg * {
1973
+ color: #ffffff;
1974
+ fill: #ffffff;
1883
1975
  }
1884
- .lui-button-success:disabled i,
1885
- .lui-button-success:disabled svg *,
1886
- a.lui-button-success:disabled i,
1887
- a.lui-button-success:disabled svg * {
1888
- color: #6b6966;
1889
- fill: #6b6966;
1976
+ .lui-button-success:hover:enabled,
1977
+ a.lui-button-success:hover:enabled {
1978
+ background-color: #107c3a;
1979
+ border-color: #107c3a;
1980
+ color: #ffffff;
1890
1981
  }
1891
- .lui-button-success:disabled:hover,
1892
- a.lui-button-success:disabled:hover {
1893
- cursor: not-allowed;
1982
+ .lui-button-success:hover:enabled i,
1983
+ .lui-button-success:hover:enabled svg *,
1984
+ a.lui-button-success:hover:enabled i,
1985
+ a.lui-button-success:hover:enabled svg * {
1986
+ color: #ffffff;
1987
+ fill: #ffffff;
1894
1988
  }
1895
1989
  .lui-button-success:active:enabled,
1896
1990
  a.lui-button-success:active:enabled {
1897
1991
  background-color: #094a22;
1898
- cursor: pointer;
1992
+ border-color: #094a22;
1899
1993
  color: rgba(255, 255, 255, 0.9);
1900
- border: 1px solid #094a22;
1901
1994
  }
1902
1995
  .lui-button-success:active:enabled i,
1903
1996
  .lui-button-success:active:enabled svg *,
1904
1997
  a.lui-button-success:active:enabled i,
1905
1998
  a.lui-button-success:active:enabled svg * {
1906
- color: rgba(255, 255, 255, 0.6);
1907
- fill: rgba(255, 255, 255, 0.6);
1908
- }
1909
- .lui-button-error,
1910
- a.lui-button-error {
1911
- background-color: #cc0000;
1912
- border: 1px solid #cc0000;
1913
- color: #fff;
1914
- line-height: 24px;
1915
- font-weight: 600;
1916
- }
1917
- .lui-button-error i,
1918
- .lui-button-error svg *,
1919
- a.lui-button-error i,
1920
- a.lui-button-error svg * {
1921
- color: #fff;
1922
- fill: #fff;
1999
+ color: rgba(255, 255, 255, 0.9);
2000
+ fill: rgba(255, 255, 255, 0.9);
1923
2001
  }
1924
- .lui-button-error:visited,
1925
- a.lui-button-error:visited {
1926
- color: #fff;
2002
+ .lui-button-error:not(:disabled), .lui-button.lui-button-primary.lui-button-danger:not(:disabled),
2003
+ a.lui-button-error:not(:disabled),
2004
+ a.lui-button.lui-button-primary.lui-button-danger:not(:disabled) {
2005
+ color: #ffffff;
1927
2006
  }
1928
- .lui-button-error:hover,
1929
- a.lui-button-error:hover {
1930
- background-color: #8f0000;
1931
- cursor: pointer;
1932
- color: #fff;
1933
- border: 1px solid #8f0000;
2007
+ .lui-button-error:where([aria-busy]), .lui-button.lui-button-primary.lui-button-danger:where([aria-busy]),
2008
+ a.lui-button-error:where([aria-busy]),
2009
+ a.lui-button.lui-button-primary.lui-button-danger:where([aria-busy]) {
2010
+ color: #ffffff;
1934
2011
  }
1935
- .lui-button-error:hover i,
1936
- .lui-button-error:hover svg *,
1937
- a.lui-button-error:hover i,
1938
- a.lui-button-error:hover svg * {
1939
- color: #fff;
1940
- fill: #fff;
2012
+ .lui-button-error:not(:disabled), .lui-button-error[aria-busy], .lui-button.lui-button-primary.lui-button-danger:not(:disabled), .lui-button.lui-button-primary.lui-button-danger[aria-busy],
2013
+ a.lui-button-error:not(:disabled),
2014
+ a.lui-button-error[aria-busy],
2015
+ a.lui-button.lui-button-primary.lui-button-danger:not(:disabled),
2016
+ a.lui-button.lui-button-primary.lui-button-danger[aria-busy] {
2017
+ background-color: #cc0000;
2018
+ border-color: #cc0000;
1941
2019
  }
1942
- .lui-button-error:disabled,
1943
- a.lui-button-error:disabled {
1944
- color: #989189;
1945
- background: #eaeaea;
1946
- border-color: #6b6966;
2020
+ .lui-button-error:not(:disabled) i,
2021
+ .lui-button-error:not(:disabled) svg *, .lui-button-error[aria-busy] i,
2022
+ .lui-button-error[aria-busy] svg *, .lui-button.lui-button-primary.lui-button-danger:not(:disabled) i,
2023
+ .lui-button.lui-button-primary.lui-button-danger:not(:disabled) svg *, .lui-button.lui-button-primary.lui-button-danger[aria-busy] i,
2024
+ .lui-button.lui-button-primary.lui-button-danger[aria-busy] svg *,
2025
+ a.lui-button-error:not(:disabled) i,
2026
+ a.lui-button-error:not(:disabled) svg *,
2027
+ a.lui-button-error[aria-busy] i,
2028
+ a.lui-button-error[aria-busy] svg *,
2029
+ a.lui-button.lui-button-primary.lui-button-danger:not(:disabled) i,
2030
+ a.lui-button.lui-button-primary.lui-button-danger:not(:disabled) svg *,
2031
+ a.lui-button.lui-button-primary.lui-button-danger[aria-busy] i,
2032
+ a.lui-button.lui-button-primary.lui-button-danger[aria-busy] svg * {
2033
+ color: #ffffff;
2034
+ fill: #ffffff;
1947
2035
  }
1948
- .lui-button-error:disabled i,
1949
- .lui-button-error:disabled svg *,
1950
- a.lui-button-error:disabled i,
1951
- a.lui-button-error:disabled svg * {
1952
- color: #6b6966;
1953
- fill: #6b6966;
2036
+ .lui-button-error:hover:enabled, .lui-button.lui-button-primary.lui-button-danger:hover:enabled,
2037
+ a.lui-button-error:hover:enabled,
2038
+ a.lui-button.lui-button-primary.lui-button-danger:hover:enabled {
2039
+ background-color: #8f0000;
2040
+ border-color: #8f0000;
2041
+ color: #ffffff;
1954
2042
  }
1955
- .lui-button-error:disabled:hover,
1956
- a.lui-button-error:disabled:hover {
1957
- cursor: not-allowed;
2043
+ .lui-button-error:hover:enabled i,
2044
+ .lui-button-error:hover:enabled svg *, .lui-button.lui-button-primary.lui-button-danger:hover:enabled i,
2045
+ .lui-button.lui-button-primary.lui-button-danger:hover:enabled svg *,
2046
+ a.lui-button-error:hover:enabled i,
2047
+ a.lui-button-error:hover:enabled svg *,
2048
+ a.lui-button.lui-button-primary.lui-button-danger:hover:enabled i,
2049
+ a.lui-button.lui-button-primary.lui-button-danger:hover:enabled svg * {
2050
+ color: #ffffff;
2051
+ fill: #ffffff;
1958
2052
  }
1959
- .lui-button-error:active:enabled,
1960
- a.lui-button-error:active:enabled {
2053
+ .lui-button-error:active:enabled, .lui-button.lui-button-primary.lui-button-danger:active:enabled,
2054
+ a.lui-button-error:active:enabled,
2055
+ a.lui-button.lui-button-primary.lui-button-danger:active:enabled {
1961
2056
  background-color: #5a0000;
1962
- cursor: pointer;
2057
+ border-color: #5a0000;
1963
2058
  color: rgba(255, 255, 255, 0.9);
1964
- border: 1px solid #5a0000;
1965
2059
  }
1966
2060
  .lui-button-error:active:enabled i,
1967
- .lui-button-error:active:enabled svg *,
2061
+ .lui-button-error:active:enabled svg *, .lui-button.lui-button-primary.lui-button-danger:active:enabled i,
2062
+ .lui-button.lui-button-primary.lui-button-danger:active:enabled svg *,
1968
2063
  a.lui-button-error:active:enabled i,
1969
- a.lui-button-error:active:enabled svg * {
1970
- color: rgba(255, 255, 255, 0.6);
1971
- fill: rgba(255, 255, 255, 0.6);
2064
+ a.lui-button-error:active:enabled svg *,
2065
+ a.lui-button.lui-button-primary.lui-button-danger:active:enabled i,
2066
+ a.lui-button.lui-button-primary.lui-button-danger:active:enabled svg * {
2067
+ color: rgba(255, 255, 255, 0.9);
2068
+ fill: rgba(255, 255, 255, 0.9);
2069
+ }
2070
+ .lui-button-success, .lui-button-error,
2071
+ a.lui-button-success,
2072
+ a.lui-button-error {
2073
+ line-height: 24px;
2074
+ font-weight: 600;
1972
2075
  }
1973
2076
  .lui-button-reversed-no-bg,
1974
2077
  a.lui-button-reversed-no-bg {
@@ -1989,37 +2092,51 @@ a.lui-button-reversed-no-bg svg * {
1989
2092
  a.lui-button-reversed-no-bg:visited {
1990
2093
  color: #fff;
1991
2094
  }
1992
- .lui-button-reversed-no-bg:hover,
1993
- a.lui-button-reversed-no-bg:hover {
2095
+ .lui-button-reversed-no-bg:hover:where(:not([aria-busy])),
2096
+ a.lui-button-reversed-no-bg:hover:where(:not([aria-busy])) {
1994
2097
  background-color: transparent;
1995
2098
  cursor: pointer;
1996
2099
  color: rgba(255, 255, 255, 0.8);
1997
2100
  border: 1px solid transparent;
1998
2101
  }
1999
- .lui-button-reversed-no-bg:hover i,
2000
- .lui-button-reversed-no-bg:hover svg *,
2001
- a.lui-button-reversed-no-bg:hover i,
2002
- a.lui-button-reversed-no-bg:hover svg * {
2102
+ .lui-button-reversed-no-bg:hover:where(:not([aria-busy])) i,
2103
+ .lui-button-reversed-no-bg:hover:where(:not([aria-busy])) svg *,
2104
+ a.lui-button-reversed-no-bg:hover:where(:not([aria-busy])) i,
2105
+ a.lui-button-reversed-no-bg:hover:where(:not([aria-busy])) svg * {
2003
2106
  color: rgba(255, 255, 255, 0.8);
2004
2107
  fill: rgba(255, 255, 255, 0.8);
2005
2108
  }
2006
- .lui-button-reversed-no-bg:disabled,
2007
- a.lui-button-reversed-no-bg:disabled {
2109
+ .lui-button-reversed-no-bg:disabled:where(:not([aria-busy])),
2110
+ a.lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) {
2008
2111
  color: #989189;
2009
2112
  background: #eaeaea;
2010
2113
  border-color: #6b6966;
2011
2114
  }
2012
- .lui-button-reversed-no-bg:disabled i,
2013
- .lui-button-reversed-no-bg:disabled svg *,
2014
- a.lui-button-reversed-no-bg:disabled i,
2015
- a.lui-button-reversed-no-bg:disabled svg * {
2115
+ .lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) i,
2116
+ .lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) svg *,
2117
+ a.lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) i,
2118
+ a.lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) svg * {
2016
2119
  color: #6b6966;
2017
2120
  fill: #6b6966;
2018
2121
  }
2019
- .lui-button-reversed-no-bg:disabled:hover,
2020
- a.lui-button-reversed-no-bg:disabled:hover {
2122
+ .lui-button-reversed-no-bg:disabled:where(:not([aria-busy])):hover,
2123
+ a.lui-button-reversed-no-bg:disabled:where(:not([aria-busy])):hover {
2021
2124
  cursor: not-allowed;
2022
2125
  }
2126
+ .lui-button-reversed-no-bg[aria-busy]:hover,
2127
+ a.lui-button-reversed-no-bg[aria-busy]:hover {
2128
+ cursor: progress;
2129
+ }
2130
+ .lui-button-reversed-no-bg[aria-busy]:not(:active),
2131
+ a.lui-button-reversed-no-bg[aria-busy]:not(:active) {
2132
+ transition: none;
2133
+ }
2134
+ .lui-button-reversed-no-bg[aria-busy]:not(:active) i,
2135
+ .lui-button-reversed-no-bg[aria-busy]:not(:active) svg *,
2136
+ a.lui-button-reversed-no-bg[aria-busy]:not(:active) i,
2137
+ a.lui-button-reversed-no-bg[aria-busy]:not(:active) svg * {
2138
+ transition: none;
2139
+ }
2023
2140
  .lui-button-reversed-no-bg:active:enabled,
2024
2141
  a.lui-button-reversed-no-bg:active:enabled {
2025
2142
  background-color: transparent;
@@ -2039,16 +2156,16 @@ a.lui-button-reversed-no-bg i {
2039
2156
  font-size: 2.5rem;
2040
2157
  top: 13px !important;
2041
2158
  }
2042
- .lui-button-reversed-no-bg:disabled,
2043
- a.lui-button-reversed-no-bg:disabled {
2159
+ .lui-button-reversed-no-bg:disabled:where(:not([aria-busy])),
2160
+ a.lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) {
2044
2161
  color: rgba(255, 255, 255, 0.4);
2045
2162
  background: none;
2046
2163
  border: 0;
2047
2164
  }
2048
- .lui-button-reversed-no-bg:disabled i,
2049
- .lui-button-reversed-no-bg:disabled svg *,
2050
- a.lui-button-reversed-no-bg:disabled i,
2051
- a.lui-button-reversed-no-bg:disabled svg * {
2165
+ .lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) i,
2166
+ .lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) svg *,
2167
+ a.lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) i,
2168
+ a.lui-button-reversed-no-bg:disabled:where(:not([aria-busy])) svg * {
2052
2169
  color: rgba(255, 255, 255, 0.4);
2053
2170
  fill: rgba(255, 255, 255, 0.4);
2054
2171
  }
@@ -2075,37 +2192,51 @@ a.lui-button-text svg * {
2075
2192
  a.lui-button-text:visited {
2076
2193
  color: #1F69C3;
2077
2194
  }
2078
- .lui-button-text:hover,
2079
- a.lui-button-text:hover {
2195
+ .lui-button-text:hover:where(:not([aria-busy])),
2196
+ a.lui-button-text:hover:where(:not([aria-busy])) {
2080
2197
  background-color: transparent;
2081
2198
  cursor: pointer;
2082
2199
  color: #00425d;
2083
2200
  border: 1px solid none;
2084
2201
  }
2085
- .lui-button-text:hover i,
2086
- .lui-button-text:hover svg *,
2087
- a.lui-button-text:hover i,
2088
- a.lui-button-text:hover svg * {
2202
+ .lui-button-text:hover:where(:not([aria-busy])) i,
2203
+ .lui-button-text:hover:where(:not([aria-busy])) svg *,
2204
+ a.lui-button-text:hover:where(:not([aria-busy])) i,
2205
+ a.lui-button-text:hover:where(:not([aria-busy])) svg * {
2089
2206
  color: #00425d;
2090
2207
  fill: #00425d;
2091
2208
  }
2092
- .lui-button-text:disabled,
2093
- a.lui-button-text:disabled {
2209
+ .lui-button-text:disabled:where(:not([aria-busy])),
2210
+ a.lui-button-text:disabled:where(:not([aria-busy])) {
2094
2211
  color: #989189;
2095
2212
  background: #eaeaea;
2096
2213
  border-color: #6b6966;
2097
2214
  }
2098
- .lui-button-text:disabled i,
2099
- .lui-button-text:disabled svg *,
2100
- a.lui-button-text:disabled i,
2101
- a.lui-button-text:disabled svg * {
2215
+ .lui-button-text:disabled:where(:not([aria-busy])) i,
2216
+ .lui-button-text:disabled:where(:not([aria-busy])) svg *,
2217
+ a.lui-button-text:disabled:where(:not([aria-busy])) i,
2218
+ a.lui-button-text:disabled:where(:not([aria-busy])) svg * {
2102
2219
  color: #6b6966;
2103
2220
  fill: #6b6966;
2104
2221
  }
2105
- .lui-button-text:disabled:hover,
2106
- a.lui-button-text:disabled:hover {
2222
+ .lui-button-text:disabled:where(:not([aria-busy])):hover,
2223
+ a.lui-button-text:disabled:where(:not([aria-busy])):hover {
2107
2224
  cursor: not-allowed;
2108
2225
  }
2226
+ .lui-button-text[aria-busy]:hover,
2227
+ a.lui-button-text[aria-busy]:hover {
2228
+ cursor: progress;
2229
+ }
2230
+ .lui-button-text[aria-busy]:not(:active),
2231
+ a.lui-button-text[aria-busy]:not(:active) {
2232
+ transition: none;
2233
+ }
2234
+ .lui-button-text[aria-busy]:not(:active) i,
2235
+ .lui-button-text[aria-busy]:not(:active) svg *,
2236
+ a.lui-button-text[aria-busy]:not(:active) i,
2237
+ a.lui-button-text[aria-busy]:not(:active) svg * {
2238
+ transition: none;
2239
+ }
2109
2240
  .lui-button-text:active:enabled,
2110
2241
  a.lui-button-text:active:enabled {
2111
2242
  background-color: none;
@@ -2120,6 +2251,56 @@ a.lui-button-text:active:enabled svg * {
2120
2251
  color: #00425d;
2121
2252
  fill: #00425d;
2122
2253
  }
2254
+ .lui-button-text.lui-button-danger:not(:disabled),
2255
+ a.lui-button-text.lui-button-danger:not(:disabled) {
2256
+ color: #cc0000;
2257
+ }
2258
+ .lui-button-text.lui-button-danger:where([aria-busy]),
2259
+ a.lui-button-text.lui-button-danger:where([aria-busy]) {
2260
+ color: #cc0000;
2261
+ }
2262
+ .lui-button-text.lui-button-danger:not(:disabled), .lui-button-text.lui-button-danger[aria-busy],
2263
+ a.lui-button-text.lui-button-danger:not(:disabled),
2264
+ a.lui-button-text.lui-button-danger[aria-busy] {
2265
+ background-color: transparent;
2266
+ border-color: #cc0000;
2267
+ }
2268
+ .lui-button-text.lui-button-danger:not(:disabled) i,
2269
+ .lui-button-text.lui-button-danger:not(:disabled) svg *, .lui-button-text.lui-button-danger[aria-busy] i,
2270
+ .lui-button-text.lui-button-danger[aria-busy] svg *,
2271
+ a.lui-button-text.lui-button-danger:not(:disabled) i,
2272
+ a.lui-button-text.lui-button-danger:not(:disabled) svg *,
2273
+ a.lui-button-text.lui-button-danger[aria-busy] i,
2274
+ a.lui-button-text.lui-button-danger[aria-busy] svg * {
2275
+ color: #cc0000;
2276
+ fill: #cc0000;
2277
+ }
2278
+ .lui-button-text.lui-button-danger:hover:enabled,
2279
+ a.lui-button-text.lui-button-danger:hover:enabled {
2280
+ background-color: transparent;
2281
+ border-color: #8f0000;
2282
+ color: #8f0000;
2283
+ }
2284
+ .lui-button-text.lui-button-danger:hover:enabled i,
2285
+ .lui-button-text.lui-button-danger:hover:enabled svg *,
2286
+ a.lui-button-text.lui-button-danger:hover:enabled i,
2287
+ a.lui-button-text.lui-button-danger:hover:enabled svg * {
2288
+ color: #8f0000;
2289
+ fill: #8f0000;
2290
+ }
2291
+ .lui-button-text.lui-button-danger:active:enabled,
2292
+ a.lui-button-text.lui-button-danger:active:enabled {
2293
+ background-color: transparent;
2294
+ border-color: #5a0000;
2295
+ color: rgba(90, 0, 0, 0.9);
2296
+ }
2297
+ .lui-button-text.lui-button-danger:active:enabled i,
2298
+ .lui-button-text.lui-button-danger:active:enabled svg *,
2299
+ a.lui-button-text.lui-button-danger:active:enabled i,
2300
+ a.lui-button-text.lui-button-danger:active:enabled svg * {
2301
+ color: rgba(90, 0, 0, 0.9);
2302
+ fill: rgba(90, 0, 0, 0.9);
2303
+ }
2123
2304
  .lui-button-text,
2124
2305
  a.lui-button-text {
2125
2306
  text-decoration: underline;
@@ -2145,23 +2326,27 @@ a.lui-button-text:active:enabled svg * {
2145
2326
  color: #fff;
2146
2327
  fill: #fff;
2147
2328
  }
2148
- .lui-button-text:disabled,
2149
- a.lui-button-text:disabled {
2329
+ .lui-button-text:disabled:where(:not([aria-busy])),
2330
+ a.lui-button-text:disabled:where(:not([aria-busy])) {
2150
2331
  color: #989189;
2151
2332
  background: none;
2152
2333
  text-decoration: underline;
2153
2334
  }
2154
- .lui-button-text:disabled:hover,
2155
- a.lui-button-text:disabled:hover {
2335
+ .lui-button-text:disabled:where(:not([aria-busy])):hover,
2336
+ a.lui-button-text:disabled:where(:not([aria-busy])):hover {
2156
2337
  cursor: not-allowed;
2157
2338
  }
2158
- .lui-button-text:disabled i,
2159
- .lui-button-text:disabled svg *,
2160
- a.lui-button-text:disabled i,
2161
- a.lui-button-text:disabled svg * {
2339
+ .lui-button-text:disabled:where(:not([aria-busy])) i,
2340
+ .lui-button-text:disabled:where(:not([aria-busy])) svg *,
2341
+ a.lui-button-text:disabled:where(:not([aria-busy])) i,
2342
+ a.lui-button-text:disabled:where(:not([aria-busy])) svg * {
2162
2343
  color: #989189;
2163
2344
  fill: #989189;
2164
2345
  }
2346
+ .lui-button-text[aria-busy]:hover,
2347
+ a.lui-button-text[aria-busy]:hover {
2348
+ cursor: progress;
2349
+ }
2165
2350
  .lui-button-plain-text,
2166
2351
  a.lui-button-plain-text {
2167
2352
  background-color: transparent;
@@ -2181,6 +2366,56 @@ a.lui-button-plain-text svg * {
2181
2366
  a.lui-button-plain-text:visited {
2182
2367
  color: inherit;
2183
2368
  }
2369
+ .lui-button-plain-text.lui-button-danger:not(:disabled),
2370
+ a.lui-button-plain-text.lui-button-danger:not(:disabled) {
2371
+ color: #cc0000;
2372
+ }
2373
+ .lui-button-plain-text.lui-button-danger:where([aria-busy]),
2374
+ a.lui-button-plain-text.lui-button-danger:where([aria-busy]) {
2375
+ color: #cc0000;
2376
+ }
2377
+ .lui-button-plain-text.lui-button-danger:not(:disabled), .lui-button-plain-text.lui-button-danger[aria-busy],
2378
+ a.lui-button-plain-text.lui-button-danger:not(:disabled),
2379
+ a.lui-button-plain-text.lui-button-danger[aria-busy] {
2380
+ background-color: transparent;
2381
+ border-color: #cc0000;
2382
+ }
2383
+ .lui-button-plain-text.lui-button-danger:not(:disabled) i,
2384
+ .lui-button-plain-text.lui-button-danger:not(:disabled) svg *, .lui-button-plain-text.lui-button-danger[aria-busy] i,
2385
+ .lui-button-plain-text.lui-button-danger[aria-busy] svg *,
2386
+ a.lui-button-plain-text.lui-button-danger:not(:disabled) i,
2387
+ a.lui-button-plain-text.lui-button-danger:not(:disabled) svg *,
2388
+ a.lui-button-plain-text.lui-button-danger[aria-busy] i,
2389
+ a.lui-button-plain-text.lui-button-danger[aria-busy] svg * {
2390
+ color: #cc0000;
2391
+ fill: #cc0000;
2392
+ }
2393
+ .lui-button-plain-text.lui-button-danger:hover:enabled,
2394
+ a.lui-button-plain-text.lui-button-danger:hover:enabled {
2395
+ background-color: transparent;
2396
+ border-color: #cc0000;
2397
+ color: #cc0000;
2398
+ }
2399
+ .lui-button-plain-text.lui-button-danger:hover:enabled i,
2400
+ .lui-button-plain-text.lui-button-danger:hover:enabled svg *,
2401
+ a.lui-button-plain-text.lui-button-danger:hover:enabled i,
2402
+ a.lui-button-plain-text.lui-button-danger:hover:enabled svg * {
2403
+ color: #cc0000;
2404
+ fill: #cc0000;
2405
+ }
2406
+ .lui-button-plain-text.lui-button-danger:active:enabled,
2407
+ a.lui-button-plain-text.lui-button-danger:active:enabled {
2408
+ background-color: transparent;
2409
+ border-color: #cc0000;
2410
+ color: rgba(204, 0, 0, 0.9);
2411
+ }
2412
+ .lui-button-plain-text.lui-button-danger:active:enabled i,
2413
+ .lui-button-plain-text.lui-button-danger:active:enabled svg *,
2414
+ a.lui-button-plain-text.lui-button-danger:active:enabled i,
2415
+ a.lui-button-plain-text.lui-button-danger:active:enabled svg * {
2416
+ color: rgba(204, 0, 0, 0.9);
2417
+ fill: rgba(204, 0, 0, 0.9);
2418
+ }
2184
2419
  .lui-button-plain-text,
2185
2420
  a.lui-button-plain-text {
2186
2421
  padding: 0;
@@ -2198,24 +2433,28 @@ a.lui-button-plain-text svg * {
2198
2433
  color: #6b6966;
2199
2434
  fill: #6b6966;
2200
2435
  }
2201
- .lui-button-plain-text:disabled,
2202
- a.lui-button-plain-text:disabled {
2436
+ .lui-button-plain-text:disabled:where(:not([aria-busy])),
2437
+ a.lui-button-plain-text:disabled:where(:not([aria-busy])) {
2203
2438
  color: #989189;
2204
2439
  background: none;
2205
2440
  border: 0;
2206
2441
  text-decoration: none;
2207
2442
  }
2208
- .lui-button-plain-text:disabled:hover,
2209
- a.lui-button-plain-text:disabled:hover {
2443
+ .lui-button-plain-text:disabled:where(:not([aria-busy])):hover,
2444
+ a.lui-button-plain-text:disabled:where(:not([aria-busy])):hover {
2210
2445
  cursor: not-allowed;
2211
2446
  }
2212
- .lui-button-plain-text:disabled i,
2213
- .lui-button-plain-text:disabled svg *,
2214
- a.lui-button-plain-text:disabled i,
2215
- a.lui-button-plain-text:disabled svg * {
2447
+ .lui-button-plain-text:disabled:where(:not([aria-busy])) i,
2448
+ .lui-button-plain-text:disabled:where(:not([aria-busy])) svg *,
2449
+ a.lui-button-plain-text:disabled:where(:not([aria-busy])) i,
2450
+ a.lui-button-plain-text:disabled:where(:not([aria-busy])) svg * {
2216
2451
  color: #989189;
2217
2452
  fill: #989189;
2218
2453
  }
2454
+ .lui-button-plain-text[aria-busy]:hover,
2455
+ a.lui-button-plain-text[aria-busy]:hover {
2456
+ cursor: progress;
2457
+ }
2219
2458
  .lui-button-icon-only,
2220
2459
  a.lui-button-icon-only {
2221
2460
  width: 40px;
@@ -2256,46 +2495,65 @@ a.lui-button-icon-only-rev:visited,
2256
2495
  a.lui-button-icon-only-link:visited {
2257
2496
  color: #007198;
2258
2497
  }
2259
- .lui-button-icon-only-rev:hover, .lui-button-icon-only-link:hover,
2260
- a.lui-button-icon-only-rev:hover,
2261
- a.lui-button-icon-only-link:hover {
2498
+ .lui-button-icon-only-rev:hover:where(:not([aria-busy])), .lui-button-icon-only-link:hover:where(:not([aria-busy])),
2499
+ a.lui-button-icon-only-rev:hover:where(:not([aria-busy])),
2500
+ a.lui-button-icon-only-link:hover:where(:not([aria-busy])) {
2262
2501
  background-color: transparent;
2263
2502
  cursor: pointer;
2264
2503
  color: #005678;
2265
2504
  border: 1px solid transparent;
2266
2505
  }
2267
- .lui-button-icon-only-rev:hover i,
2268
- .lui-button-icon-only-rev:hover svg *, .lui-button-icon-only-link:hover i,
2269
- .lui-button-icon-only-link:hover svg *,
2270
- a.lui-button-icon-only-rev:hover i,
2271
- a.lui-button-icon-only-rev:hover svg *,
2272
- a.lui-button-icon-only-link:hover i,
2273
- a.lui-button-icon-only-link:hover svg * {
2506
+ .lui-button-icon-only-rev:hover:where(:not([aria-busy])) i,
2507
+ .lui-button-icon-only-rev:hover:where(:not([aria-busy])) svg *, .lui-button-icon-only-link:hover:where(:not([aria-busy])) i,
2508
+ .lui-button-icon-only-link:hover:where(:not([aria-busy])) svg *,
2509
+ a.lui-button-icon-only-rev:hover:where(:not([aria-busy])) i,
2510
+ a.lui-button-icon-only-rev:hover:where(:not([aria-busy])) svg *,
2511
+ a.lui-button-icon-only-link:hover:where(:not([aria-busy])) i,
2512
+ a.lui-button-icon-only-link:hover:where(:not([aria-busy])) svg * {
2274
2513
  color: #005678;
2275
2514
  fill: #005678;
2276
2515
  }
2277
- .lui-button-icon-only-rev:disabled, .lui-button-icon-only-link:disabled,
2278
- a.lui-button-icon-only-rev:disabled,
2279
- a.lui-button-icon-only-link:disabled {
2516
+ .lui-button-icon-only-rev:disabled:where(:not([aria-busy])), .lui-button-icon-only-link:disabled:where(:not([aria-busy])),
2517
+ a.lui-button-icon-only-rev:disabled:where(:not([aria-busy])),
2518
+ a.lui-button-icon-only-link:disabled:where(:not([aria-busy])) {
2280
2519
  color: #989189;
2281
2520
  background: #eaeaea;
2282
2521
  border-color: #6b6966;
2283
2522
  }
2284
- .lui-button-icon-only-rev:disabled i,
2285
- .lui-button-icon-only-rev:disabled svg *, .lui-button-icon-only-link:disabled i,
2286
- .lui-button-icon-only-link:disabled svg *,
2287
- a.lui-button-icon-only-rev:disabled i,
2288
- a.lui-button-icon-only-rev:disabled svg *,
2289
- a.lui-button-icon-only-link:disabled i,
2290
- a.lui-button-icon-only-link:disabled svg * {
2523
+ .lui-button-icon-only-rev:disabled:where(:not([aria-busy])) i,
2524
+ .lui-button-icon-only-rev:disabled:where(:not([aria-busy])) svg *, .lui-button-icon-only-link:disabled:where(:not([aria-busy])) i,
2525
+ .lui-button-icon-only-link:disabled:where(:not([aria-busy])) svg *,
2526
+ a.lui-button-icon-only-rev:disabled:where(:not([aria-busy])) i,
2527
+ a.lui-button-icon-only-rev:disabled:where(:not([aria-busy])) svg *,
2528
+ a.lui-button-icon-only-link:disabled:where(:not([aria-busy])) i,
2529
+ a.lui-button-icon-only-link:disabled:where(:not([aria-busy])) svg * {
2291
2530
  color: #6b6966;
2292
2531
  fill: #6b6966;
2293
2532
  }
2294
- .lui-button-icon-only-rev:disabled:hover, .lui-button-icon-only-link:disabled:hover,
2295
- a.lui-button-icon-only-rev:disabled:hover,
2296
- a.lui-button-icon-only-link:disabled:hover {
2533
+ .lui-button-icon-only-rev:disabled:where(:not([aria-busy])):hover, .lui-button-icon-only-link:disabled:where(:not([aria-busy])):hover,
2534
+ a.lui-button-icon-only-rev:disabled:where(:not([aria-busy])):hover,
2535
+ a.lui-button-icon-only-link:disabled:where(:not([aria-busy])):hover {
2297
2536
  cursor: not-allowed;
2298
2537
  }
2538
+ .lui-button-icon-only-rev[aria-busy]:hover, .lui-button-icon-only-link[aria-busy]:hover,
2539
+ a.lui-button-icon-only-rev[aria-busy]:hover,
2540
+ a.lui-button-icon-only-link[aria-busy]:hover {
2541
+ cursor: progress;
2542
+ }
2543
+ .lui-button-icon-only-rev[aria-busy]:not(:active), .lui-button-icon-only-link[aria-busy]:not(:active),
2544
+ a.lui-button-icon-only-rev[aria-busy]:not(:active),
2545
+ a.lui-button-icon-only-link[aria-busy]:not(:active) {
2546
+ transition: none;
2547
+ }
2548
+ .lui-button-icon-only-rev[aria-busy]:not(:active) i,
2549
+ .lui-button-icon-only-rev[aria-busy]:not(:active) svg *, .lui-button-icon-only-link[aria-busy]:not(:active) i,
2550
+ .lui-button-icon-only-link[aria-busy]:not(:active) svg *,
2551
+ a.lui-button-icon-only-rev[aria-busy]:not(:active) i,
2552
+ a.lui-button-icon-only-rev[aria-busy]:not(:active) svg *,
2553
+ a.lui-button-icon-only-link[aria-busy]:not(:active) i,
2554
+ a.lui-button-icon-only-link[aria-busy]:not(:active) svg * {
2555
+ transition: none;
2556
+ }
2299
2557
  .lui-button-icon-only-rev:active:enabled, .lui-button-icon-only-link:active:enabled,
2300
2558
  a.lui-button-icon-only-rev:active:enabled,
2301
2559
  a.lui-button-icon-only-link:active:enabled {
@@ -2338,25 +2596,27 @@ a.lui-button-icon-only-rev i,
2338
2596
  a.lui-button-icon-only-rev svg * {
2339
2597
  color: #fff;
2340
2598
  }
2341
- .lui-button-icon-only-rev:disabled, .lui-button-icon-only-rev:disabled:hover,
2342
- a.lui-button-icon-only-rev:disabled,
2343
- a.lui-button-icon-only-rev:disabled:hover {
2599
+ .lui-button-icon-only-rev:disabled:where(:not([aria-busy])), .lui-button-icon-only-rev:disabled:hover:where(:not([aria-busy])),
2600
+ a.lui-button-icon-only-rev:disabled:where(:not([aria-busy])),
2601
+ a.lui-button-icon-only-rev:disabled:hover:where(:not([aria-busy])) {
2344
2602
  color: rgba(255, 255, 255, 0.4);
2603
+ background-color: transparent;
2604
+ border: 0;
2345
2605
  }
2346
- .lui-button-icon-only-rev:disabled i,
2347
- .lui-button-icon-only-rev:disabled svg *, .lui-button-icon-only-rev:disabled:hover i,
2348
- .lui-button-icon-only-rev:disabled:hover svg *,
2349
- a.lui-button-icon-only-rev:disabled i,
2350
- a.lui-button-icon-only-rev:disabled svg *,
2351
- a.lui-button-icon-only-rev:disabled:hover i,
2352
- a.lui-button-icon-only-rev:disabled:hover svg * {
2606
+ .lui-button-icon-only-rev:disabled:where(:not([aria-busy])) i,
2607
+ .lui-button-icon-only-rev:disabled:where(:not([aria-busy])) svg *, .lui-button-icon-only-rev:disabled:hover:where(:not([aria-busy])) i,
2608
+ .lui-button-icon-only-rev:disabled:hover:where(:not([aria-busy])) svg *,
2609
+ a.lui-button-icon-only-rev:disabled:where(:not([aria-busy])) i,
2610
+ a.lui-button-icon-only-rev:disabled:where(:not([aria-busy])) svg *,
2611
+ a.lui-button-icon-only-rev:disabled:hover:where(:not([aria-busy])) i,
2612
+ a.lui-button-icon-only-rev:disabled:hover:where(:not([aria-busy])) svg * {
2353
2613
  color: rgba(255, 255, 255, 0.4);
2354
2614
  fill: rgba(255, 255, 255, 0.4);
2355
2615
  }
2356
- .lui-button-icon-only-rev:hover i,
2357
- .lui-button-icon-only-rev:hover svg *,
2358
- a.lui-button-icon-only-rev:hover i,
2359
- a.lui-button-icon-only-rev:hover svg * {
2616
+ .lui-button-icon-only-rev:hover:where(:not([aria-busy])) i,
2617
+ .lui-button-icon-only-rev:hover:where(:not([aria-busy])) svg *,
2618
+ a.lui-button-icon-only-rev:hover:where(:not([aria-busy])) i,
2619
+ a.lui-button-icon-only-rev:hover:where(:not([aria-busy])) svg * {
2360
2620
  color: #73c8e1;
2361
2621
  fill: #73c8e1;
2362
2622
  }
@@ -2364,6 +2624,26 @@ a.lui-button-icon-only-rev:hover svg * {
2364
2624
  a.lui-button-icon-only-link {
2365
2625
  color: #1F69C3;
2366
2626
  }
2627
+ .lui-button[aria-busy],
2628
+ a.lui-button[aria-busy] {
2629
+ position: relative;
2630
+ }
2631
+ .lui-button[aria-busy]:has(.lui-button-loading-spinner),
2632
+ a.lui-button[aria-busy]:has(.lui-button-loading-spinner) {
2633
+ color: transparent;
2634
+ }
2635
+ .lui-button[aria-busy]:has(.lui-button-loading-spinner) > *:not(.lui-button-loading-spinner),
2636
+ a.lui-button[aria-busy]:has(.lui-button-loading-spinner) > *:not(.lui-button-loading-spinner) {
2637
+ visibility: hidden;
2638
+ }
2639
+ .lui-button-loading-spinner,
2640
+ a.lui-button-loading-spinner {
2641
+ position: absolute;
2642
+ inset: 0;
2643
+ display: flex;
2644
+ align-items: center;
2645
+ justify-content: center;
2646
+ }
2367
2647
  .lui-button.lui-button-sm,
2368
2648
  a.lui-button.lui-button-sm {
2369
2649
  padding: 0.1875rem 0.5rem;
@@ -2466,7 +2746,11 @@ a.lui-button.lui-button-lg.lui-button-icon-only i {
2466
2746
  }
2467
2747
  .lui-button.lui-button-lg.lui-button-icon-right,
2468
2748
  a.lui-button.lui-button-lg.lui-button-icon-right {
2469
- padding: 0.6875rem 0.75rem 0.6875rem 24px;
2749
+ padding: 0.6875rem 0.75rem 0.6875rem 1rem;
2750
+ }
2751
+ .lui-button.lui-button-lg.lui-button-icon-right .LuiIcon,
2752
+ a.lui-button.lui-button-lg.lui-button-icon-right .LuiIcon {
2753
+ margin: 0 0 -0.4375rem 0.5rem;
2470
2754
  }
2471
2755
  .lui-button.lui-button-lg.lui-button-icon-right i,
2472
2756
  a.lui-button.lui-button-lg.lui-button-icon-right i {
@@ -2543,14 +2827,14 @@ a.lui-button + a.lui-button {
2543
2827
  .lui-button-group .lui-button.lui-button-active svg * {
2544
2828
  fill: #ffffff;
2545
2829
  }
2546
- .lui-button-group .lui-button.lui-button-active:disabled {
2830
+ .lui-button-group .lui-button.lui-button-active:disabled:where(:not([aria-busy])) {
2547
2831
  background-color: #989189;
2548
2832
  color: #ffffff;
2549
2833
  }
2550
- .lui-button-group .lui-button.lui-button-active:disabled.lui-button-icon-only svg * {
2834
+ .lui-button-group .lui-button.lui-button-active:disabled:where(:not([aria-busy])).lui-button-icon-only svg * {
2551
2835
  fill: #ffffff;
2552
2836
  }
2553
- .lui-button-group .lui-button:hover {
2837
+ .lui-button-group .lui-button:hover:where(:not([aria-busy])) {
2554
2838
  background: #007198;
2555
2839
  cursor: pointer;
2556
2840
  color: #ffffff;
@@ -2559,13 +2843,15 @@ a.lui-button + a.lui-button {
2559
2843
  outline: 2px solid #004b50;
2560
2844
  position: relative;
2561
2845
  }
2562
- .lui-button-group .lui-button:disabled {
2846
+ .lui-button-group .lui-button:disabled:where(:not([aria-busy])) {
2563
2847
  background-color: #eaeaea;
2564
2848
  border: 1px solid #6b6966;
2565
2849
  color: #989189;
2850
+ }
2851
+ .lui-button-group .lui-button:disabled:where(:not([aria-busy])):disabled:hover {
2566
2852
  cursor: not-allowed;
2567
2853
  }
2568
- .lui-button-group .lui-button:disabled.lui-button-icon-only svg * {
2854
+ .lui-button-group .lui-button:disabled:where(:not([aria-busy])).lui-button-icon-only svg * {
2569
2855
  fill: #989189;
2570
2856
  }
2571
2857
  .lui-button-group .lui-button.lui-button-icon-only {
@@ -7175,30 +7461,40 @@ body.LuiHeaderMenuV2-drawer-open {
7175
7461
  .lui-split-button .popup-toggle-button:visited {
7176
7462
  color: #fff;
7177
7463
  }
7178
- .lui-split-button .popup-toggle-button:hover {
7464
+ .lui-split-button .popup-toggle-button:hover:where(:not([aria-busy])) {
7179
7465
  background-color: #005678;
7180
7466
  cursor: pointer;
7181
7467
  color: #fff;
7182
7468
  border: 1px solid #005678;
7183
7469
  }
7184
- .lui-split-button .popup-toggle-button:hover i,
7185
- .lui-split-button .popup-toggle-button:hover svg * {
7470
+ .lui-split-button .popup-toggle-button:hover:where(:not([aria-busy])) i,
7471
+ .lui-split-button .popup-toggle-button:hover:where(:not([aria-busy])) svg * {
7186
7472
  color: #fff;
7187
7473
  fill: #fff;
7188
7474
  }
7189
- .lui-split-button .popup-toggle-button:disabled {
7475
+ .lui-split-button .popup-toggle-button:disabled:where(:not([aria-busy])) {
7190
7476
  color: #989189;
7191
7477
  background: #eaeaea;
7192
7478
  border-color: #6b6966;
7193
7479
  }
7194
- .lui-split-button .popup-toggle-button:disabled i,
7195
- .lui-split-button .popup-toggle-button:disabled svg * {
7480
+ .lui-split-button .popup-toggle-button:disabled:where(:not([aria-busy])) i,
7481
+ .lui-split-button .popup-toggle-button:disabled:where(:not([aria-busy])) svg * {
7196
7482
  color: #6b6966;
7197
7483
  fill: #6b6966;
7198
7484
  }
7199
- .lui-split-button .popup-toggle-button:disabled:hover {
7485
+ .lui-split-button .popup-toggle-button:disabled:where(:not([aria-busy])):hover {
7200
7486
  cursor: not-allowed;
7201
7487
  }
7488
+ .lui-split-button .popup-toggle-button[aria-busy]:hover {
7489
+ cursor: progress;
7490
+ }
7491
+ .lui-split-button .popup-toggle-button[aria-busy]:not(:active) {
7492
+ transition: none;
7493
+ }
7494
+ .lui-split-button .popup-toggle-button[aria-busy]:not(:active) i,
7495
+ .lui-split-button .popup-toggle-button[aria-busy]:not(:active) svg * {
7496
+ transition: none;
7497
+ }
7202
7498
  .lui-split-button .popup-toggle-button:active:enabled {
7203
7499
  background-color: #00425d;
7204
7500
  cursor: pointer;
@@ -7238,30 +7534,40 @@ body.LuiHeaderMenuV2-drawer-open {
7238
7534
  .lui-split-button .popup-toggle-button-secondary:visited {
7239
7535
  color: #007198;
7240
7536
  }
7241
- .lui-split-button .popup-toggle-button-secondary:hover {
7537
+ .lui-split-button .popup-toggle-button-secondary:hover:where(:not([aria-busy])) {
7242
7538
  background-color: #e2f3f7;
7243
7539
  cursor: pointer;
7244
7540
  color: #007198;
7245
7541
  border: 1px solid #007198;
7246
7542
  }
7247
- .lui-split-button .popup-toggle-button-secondary:hover i,
7248
- .lui-split-button .popup-toggle-button-secondary:hover svg * {
7543
+ .lui-split-button .popup-toggle-button-secondary:hover:where(:not([aria-busy])) i,
7544
+ .lui-split-button .popup-toggle-button-secondary:hover:where(:not([aria-busy])) svg * {
7249
7545
  color: #007198;
7250
7546
  fill: #007198;
7251
7547
  }
7252
- .lui-split-button .popup-toggle-button-secondary:disabled {
7548
+ .lui-split-button .popup-toggle-button-secondary:disabled:where(:not([aria-busy])) {
7253
7549
  color: #989189;
7254
7550
  background: #eaeaea;
7255
7551
  border-color: #6b6966;
7256
7552
  }
7257
- .lui-split-button .popup-toggle-button-secondary:disabled i,
7258
- .lui-split-button .popup-toggle-button-secondary:disabled svg * {
7553
+ .lui-split-button .popup-toggle-button-secondary:disabled:where(:not([aria-busy])) i,
7554
+ .lui-split-button .popup-toggle-button-secondary:disabled:where(:not([aria-busy])) svg * {
7259
7555
  color: #6b6966;
7260
7556
  fill: #6b6966;
7261
7557
  }
7262
- .lui-split-button .popup-toggle-button-secondary:disabled:hover {
7558
+ .lui-split-button .popup-toggle-button-secondary:disabled:where(:not([aria-busy])):hover {
7263
7559
  cursor: not-allowed;
7264
7560
  }
7561
+ .lui-split-button .popup-toggle-button-secondary[aria-busy]:hover {
7562
+ cursor: progress;
7563
+ }
7564
+ .lui-split-button .popup-toggle-button-secondary[aria-busy]:not(:active) {
7565
+ transition: none;
7566
+ }
7567
+ .lui-split-button .popup-toggle-button-secondary[aria-busy]:not(:active) i,
7568
+ .lui-split-button .popup-toggle-button-secondary[aria-busy]:not(:active) svg * {
7569
+ transition: none;
7570
+ }
7265
7571
  .lui-split-button .popup-toggle-button-secondary:active:enabled {
7266
7572
  background-color: #007198;
7267
7573
  cursor: pointer;