@clayui/css 3.99.0 → 3.101.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.
Files changed (37) hide show
  1. package/lib/css/atlas.css +263 -206
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +164 -126
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/cadmin.css +394 -193
  6. package/lib/css/cadmin.css.map +1 -1
  7. package/lib/images/icons/flags-es-AR.svg +1 -1
  8. package/lib/images/icons/flags-es-CO.svg +1 -1
  9. package/lib/images/icons/flags-es-MX.svg +1 -1
  10. package/lib/images/icons/icons.svg +1 -1
  11. package/package.json +2 -2
  12. package/src/images/icons/flags-es-AR.svg +1 -1
  13. package/src/images/icons/flags-es-CO.svg +1 -1
  14. package/src/images/icons/flags-es-MX.svg +1 -1
  15. package/src/scss/_license-text.scss +1 -1
  16. package/src/scss/atlas/variables/_custom-forms.scss +1 -2
  17. package/src/scss/atlas/variables/_globals.scss +9 -1
  18. package/src/scss/cadmin/components/_modals.scss +11 -3
  19. package/src/scss/cadmin/variables/_custom-forms.scss +1 -3
  20. package/src/scss/cadmin/variables/_globals.scss +9 -0
  21. package/src/scss/cadmin/variables/_slideout.scss +1 -0
  22. package/src/scss/components/_modals.scss +4 -0
  23. package/src/scss/functions/_lx-icons-generated.scss +3 -3
  24. package/src/scss/mixins/_buttons.scss +95 -56
  25. package/src/scss/mixins/_cards.scss +45 -17
  26. package/src/scss/mixins/_close.scss +33 -3
  27. package/src/scss/mixins/_custom-forms.scss +123 -73
  28. package/src/scss/mixins/_dropdown-menu.scss +41 -15
  29. package/src/scss/mixins/_forms.scss +166 -76
  30. package/src/scss/mixins/_links.scss +106 -59
  31. package/src/scss/mixins/_modals.scss +35 -4
  32. package/src/scss/mixins/_sidebar.scss +37 -7
  33. package/src/scss/mixins/_slideout.scss +32 -2
  34. package/src/scss/mixins/_toggle-switch.scss +114 -36
  35. package/src/scss/variables/_badges.scss +6 -1
  36. package/src/scss/variables/_buttons.scss +17 -3
  37. package/src/scss/variables/_globals.scss +8 -0
package/lib/css/base.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.99.0
3
+ * Clay 3.101.0
4
4
  *
5
5
  * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
6
6
  * SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
@@ -1178,18 +1178,18 @@ button.collapse-icon .c-inner {
1178
1178
  color: #212529;
1179
1179
  text-decoration: none;
1180
1180
  }
1181
- .btn:focus, .btn.focus {
1181
+ .btn.focus, .btn:focus-visible, .c-prefers-focus .btn:focus {
1182
1182
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
1183
1183
  outline: 0;
1184
1184
  }
1185
- .btn:active:focus {
1185
+ .btn:active:focus-visible, .c-prefers-focus .btn:active:focus {
1186
1186
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
1187
1187
  }
1188
1188
  .btn:disabled, .btn.disabled {
1189
1189
  cursor: not-allowed;
1190
1190
  opacity: 0.65;
1191
1191
  }
1192
- .btn:disabled:focus, .btn.disabled:focus {
1192
+ .btn:disabled:focus-visible, .c-prefers-focus .btn:disabled:focus, .btn.disabled:focus-visible, .c-prefers-focus .btn.disabled:focus {
1193
1193
  box-shadow: none;
1194
1194
  }
1195
1195
  .btn:disabled:active, .btn.disabled:active {
@@ -1384,7 +1384,7 @@ input[type=button].btn-block {
1384
1384
  border-color: #0062cc;
1385
1385
  color: #fff;
1386
1386
  }
1387
- .btn-primary:focus, .btn-primary.focus {
1387
+ .btn-primary.focus, .btn-primary:focus-visible, .c-prefers-focus .btn-primary:focus {
1388
1388
  background-color: #0069d9;
1389
1389
  border-color: #0062cc;
1390
1390
  color: #fff;
@@ -1419,7 +1419,7 @@ input[type=button].btn-block {
1419
1419
  border-color: #545b62;
1420
1420
  color: #fff;
1421
1421
  }
1422
- .btn-secondary:focus, .btn-secondary.focus {
1422
+ .btn-secondary.focus, .btn-secondary:focus-visible, .c-prefers-focus .btn-secondary:focus {
1423
1423
  background-color: #5a6268;
1424
1424
  border-color: #545b62;
1425
1425
  color: #fff;
@@ -1454,7 +1454,7 @@ input[type=button].btn-block {
1454
1454
  border-color: #1e7e34;
1455
1455
  color: #fff;
1456
1456
  }
1457
- .btn-success:focus, .btn-success.focus {
1457
+ .btn-success.focus, .btn-success:focus-visible, .c-prefers-focus .btn-success:focus {
1458
1458
  background-color: #218838;
1459
1459
  border-color: #1e7e34;
1460
1460
  color: #fff;
@@ -1489,7 +1489,7 @@ input[type=button].btn-block {
1489
1489
  border-color: #117a8b;
1490
1490
  color: #fff;
1491
1491
  }
1492
- .btn-info:focus, .btn-info.focus {
1492
+ .btn-info.focus, .btn-info:focus-visible, .c-prefers-focus .btn-info:focus {
1493
1493
  background-color: #138496;
1494
1494
  border-color: #117a8b;
1495
1495
  color: #fff;
@@ -1524,7 +1524,7 @@ input[type=button].btn-block {
1524
1524
  border-color: #d39e00;
1525
1525
  color: #212529;
1526
1526
  }
1527
- .btn-warning:focus, .btn-warning.focus {
1527
+ .btn-warning.focus, .btn-warning:focus-visible, .c-prefers-focus .btn-warning:focus {
1528
1528
  background-color: #e0a800;
1529
1529
  border-color: #d39e00;
1530
1530
  color: #212529;
@@ -1559,7 +1559,7 @@ input[type=button].btn-block {
1559
1559
  border-color: #bd2130;
1560
1560
  color: #fff;
1561
1561
  }
1562
- .btn-danger:focus, .btn-danger.focus {
1562
+ .btn-danger.focus, .btn-danger:focus-visible, .c-prefers-focus .btn-danger:focus {
1563
1563
  background-color: #c82333;
1564
1564
  border-color: #bd2130;
1565
1565
  color: #fff;
@@ -1594,7 +1594,7 @@ input[type=button].btn-block {
1594
1594
  border-color: #dae0e5;
1595
1595
  color: #212529;
1596
1596
  }
1597
- .btn-light:focus, .btn-light.focus {
1597
+ .btn-light.focus, .btn-light:focus-visible, .c-prefers-focus .btn-light:focus {
1598
1598
  background-color: #e2e6ea;
1599
1599
  border-color: #dae0e5;
1600
1600
  color: #212529;
@@ -1629,7 +1629,7 @@ input[type=button].btn-block {
1629
1629
  border-color: #1d2124;
1630
1630
  color: #fff;
1631
1631
  }
1632
- .btn-dark:focus, .btn-dark.focus {
1632
+ .btn-dark.focus, .btn-dark:focus-visible, .c-prefers-focus .btn-dark:focus {
1633
1633
  background-color: #23272b;
1634
1634
  border-color: #1d2124;
1635
1635
  color: #fff;
@@ -1664,11 +1664,11 @@ input[type=button].btn-block {
1664
1664
  color: #0056b3;
1665
1665
  text-decoration: underline;
1666
1666
  }
1667
- .btn-link:focus, .btn-link.focus {
1667
+ .btn-link.focus, .btn-link:focus-visible, .c-prefers-focus .btn-link:focus {
1668
1668
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
1669
1669
  text-decoration: none;
1670
1670
  }
1671
- .btn-link:active:focus {
1671
+ .btn-link:active:focus-visible, .c-prefers-focus .btn-link:active:focus {
1672
1672
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
1673
1673
  }
1674
1674
  .btn-link:disabled, .btn-link.disabled {
@@ -1677,18 +1677,32 @@ input[type=button].btn-block {
1677
1677
  text-decoration: none;
1678
1678
  }
1679
1679
  .btn-beta {
1680
- background-color: white;
1680
+ background-color: rgba(19, 132, 150, 0.04);
1681
1681
  color: #138496;
1682
1682
  text-transform: uppercase;
1683
1683
  }
1684
1684
  .btn-beta:hover {
1685
- background-color: #f8f9fa;
1685
+ background-color: rgba(19, 132, 150, 0.06);
1686
1686
  color: #138496;
1687
1687
  }
1688
- .btn-beta:focus, .focus.btn-beta {
1689
- background-color: #f8f9fa;
1688
+ .focus.btn-beta, .btn-beta:focus-visible, .c-prefers-focus .btn-beta:focus {
1689
+ background-color: rgba(19, 132, 150, 0.06);
1690
1690
  color: #138496;
1691
1691
  }
1692
+ .btn-beta-dark {
1693
+ background-color: rgba(135, 226, 240, 0.04);
1694
+ border-color: transparent;
1695
+ color: #5ad7ea;
1696
+ text-transform: uppercase;
1697
+ }
1698
+ .btn-beta-dark:hover {
1699
+ background-color: rgba(135, 226, 240, 0.06);
1700
+ color: #5ad7ea;
1701
+ }
1702
+ .focus.btn-beta-dark, .btn-beta-dark:focus-visible, .c-prefers-focus .btn-beta-dark:focus {
1703
+ background-color: rgba(135, 226, 240, 0.06);
1704
+ color: #5ad7ea;
1705
+ }
1692
1706
  .btn-outline-primary {
1693
1707
  border-color: #007bff;
1694
1708
  color: #007bff;
@@ -1698,7 +1712,7 @@ input[type=button].btn-block {
1698
1712
  border-color: #007bff;
1699
1713
  color: #fff;
1700
1714
  }
1701
- .btn-outline-primary:focus, .btn-outline-primary.focus {
1715
+ .btn-outline-primary.focus, .btn-outline-primary:focus-visible, .c-prefers-focus .btn-outline-primary:focus {
1702
1716
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
1703
1717
  }
1704
1718
  .btn-outline-primary:active {
@@ -1706,7 +1720,7 @@ input[type=button].btn-block {
1706
1720
  border-color: #007bff;
1707
1721
  color: #fff;
1708
1722
  }
1709
- .btn-outline-primary:active:focus {
1723
+ .btn-outline-primary:active:focus-visible, .c-prefers-focus .btn-outline-primary:active:focus {
1710
1724
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
1711
1725
  }
1712
1726
  .btn-outline-primary.active {
@@ -1732,7 +1746,7 @@ input[type=button].btn-block {
1732
1746
  border-color: #6c757d;
1733
1747
  color: #fff;
1734
1748
  }
1735
- .btn-outline-secondary:focus, .btn-outline-secondary.focus {
1749
+ .btn-outline-secondary.focus, .btn-outline-secondary:focus-visible, .c-prefers-focus .btn-outline-secondary:focus {
1736
1750
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
1737
1751
  }
1738
1752
  .btn-outline-secondary:active {
@@ -1740,7 +1754,7 @@ input[type=button].btn-block {
1740
1754
  border-color: #6c757d;
1741
1755
  color: #fff;
1742
1756
  }
1743
- .btn-outline-secondary:active:focus {
1757
+ .btn-outline-secondary:active:focus-visible, .c-prefers-focus .btn-outline-secondary:active:focus {
1744
1758
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
1745
1759
  }
1746
1760
  .btn-outline-secondary.active {
@@ -1766,7 +1780,7 @@ input[type=button].btn-block {
1766
1780
  border-color: #28a745;
1767
1781
  color: #fff;
1768
1782
  }
1769
- .btn-outline-success:focus, .btn-outline-success.focus {
1783
+ .btn-outline-success.focus, .btn-outline-success:focus-visible, .c-prefers-focus .btn-outline-success:focus {
1770
1784
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
1771
1785
  }
1772
1786
  .btn-outline-success:active {
@@ -1774,7 +1788,7 @@ input[type=button].btn-block {
1774
1788
  border-color: #28a745;
1775
1789
  color: #fff;
1776
1790
  }
1777
- .btn-outline-success:active:focus {
1791
+ .btn-outline-success:active:focus-visible, .c-prefers-focus .btn-outline-success:active:focus {
1778
1792
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
1779
1793
  }
1780
1794
  .btn-outline-success.active {
@@ -1800,7 +1814,7 @@ input[type=button].btn-block {
1800
1814
  border-color: #17a2b8;
1801
1815
  color: #fff;
1802
1816
  }
1803
- .btn-outline-info:focus, .btn-outline-info.focus {
1817
+ .btn-outline-info.focus, .btn-outline-info:focus-visible, .c-prefers-focus .btn-outline-info:focus {
1804
1818
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
1805
1819
  }
1806
1820
  .btn-outline-info:active {
@@ -1808,7 +1822,7 @@ input[type=button].btn-block {
1808
1822
  border-color: #17a2b8;
1809
1823
  color: #fff;
1810
1824
  }
1811
- .btn-outline-info:active:focus {
1825
+ .btn-outline-info:active:focus-visible, .c-prefers-focus .btn-outline-info:active:focus {
1812
1826
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
1813
1827
  }
1814
1828
  .btn-outline-info.active {
@@ -1834,7 +1848,7 @@ input[type=button].btn-block {
1834
1848
  border-color: #ffc107;
1835
1849
  color: #212529;
1836
1850
  }
1837
- .btn-outline-warning:focus, .btn-outline-warning.focus {
1851
+ .btn-outline-warning.focus, .btn-outline-warning:focus-visible, .c-prefers-focus .btn-outline-warning:focus {
1838
1852
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
1839
1853
  }
1840
1854
  .btn-outline-warning:active {
@@ -1842,7 +1856,7 @@ input[type=button].btn-block {
1842
1856
  border-color: #ffc107;
1843
1857
  color: #212529;
1844
1858
  }
1845
- .btn-outline-warning:active:focus {
1859
+ .btn-outline-warning:active:focus-visible, .c-prefers-focus .btn-outline-warning:active:focus {
1846
1860
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
1847
1861
  }
1848
1862
  .btn-outline-warning.active {
@@ -1868,7 +1882,7 @@ input[type=button].btn-block {
1868
1882
  border-color: #dc3545;
1869
1883
  color: #fff;
1870
1884
  }
1871
- .btn-outline-danger:focus, .btn-outline-danger.focus {
1885
+ .btn-outline-danger.focus, .btn-outline-danger:focus-visible, .c-prefers-focus .btn-outline-danger:focus {
1872
1886
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
1873
1887
  }
1874
1888
  .btn-outline-danger:active {
@@ -1876,7 +1890,7 @@ input[type=button].btn-block {
1876
1890
  border-color: #dc3545;
1877
1891
  color: #fff;
1878
1892
  }
1879
- .btn-outline-danger:active:focus {
1893
+ .btn-outline-danger:active:focus-visible, .c-prefers-focus .btn-outline-danger:active:focus {
1880
1894
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
1881
1895
  }
1882
1896
  .btn-outline-danger.active {
@@ -1902,7 +1916,7 @@ input[type=button].btn-block {
1902
1916
  border-color: #f8f9fa;
1903
1917
  color: #212529;
1904
1918
  }
1905
- .btn-outline-light:focus, .btn-outline-light.focus {
1919
+ .btn-outline-light.focus, .btn-outline-light:focus-visible, .c-prefers-focus .btn-outline-light:focus {
1906
1920
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
1907
1921
  }
1908
1922
  .btn-outline-light:active {
@@ -1910,7 +1924,7 @@ input[type=button].btn-block {
1910
1924
  border-color: #f8f9fa;
1911
1925
  color: #212529;
1912
1926
  }
1913
- .btn-outline-light:active:focus {
1927
+ .btn-outline-light:active:focus-visible, .c-prefers-focus .btn-outline-light:active:focus {
1914
1928
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
1915
1929
  }
1916
1930
  .btn-outline-light.active {
@@ -1936,7 +1950,7 @@ input[type=button].btn-block {
1936
1950
  border-color: #343a40;
1937
1951
  color: #fff;
1938
1952
  }
1939
- .btn-outline-dark:focus, .btn-outline-dark.focus {
1953
+ .btn-outline-dark.focus, .btn-outline-dark:focus-visible, .c-prefers-focus .btn-outline-dark:focus {
1940
1954
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
1941
1955
  }
1942
1956
  .btn-outline-dark:active {
@@ -1944,7 +1958,7 @@ input[type=button].btn-block {
1944
1958
  border-color: #343a40;
1945
1959
  color: #fff;
1946
1960
  }
1947
- .btn-outline-dark:active:focus {
1961
+ .btn-outline-dark:active:focus-visible, .c-prefers-focus .btn-outline-dark:active:focus {
1948
1962
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
1949
1963
  }
1950
1964
  .btn-outline-dark.active {
@@ -1967,7 +1981,7 @@ input[type=button].btn-block {
1967
1981
  .btn-outline-borderless:hover {
1968
1982
  border-color: transparent;
1969
1983
  }
1970
- .btn-outline-borderless:focus, .btn-outline-borderless.focus {
1984
+ .btn-outline-borderless.focus, .btn-outline-borderless:focus-visible, .c-prefers-focus .btn-outline-borderless:focus {
1971
1985
  border-color: transparent;
1972
1986
  }
1973
1987
  .btn-outline-borderless:disabled, .btn-outline-borderless.disabled {
@@ -3371,9 +3385,10 @@ input[type=button].btn-block {
3371
3385
  .alert-link.btn-unstyled.hover {
3372
3386
  text-decoration: underline;
3373
3387
  }
3374
- .alert-link.focus, .alert-link:focus,
3388
+ .alert-link.focus, .alert-link:focus-visible, .c-prefers-focus .alert-link:focus,
3375
3389
  .alert-link.btn-unstyled.focus,
3376
- .alert-link.btn-unstyled:focus {
3390
+ .alert-link.btn-unstyled:focus-visible,
3391
+ .c-prefers-focus .alert-link.btn-unstyled:focus {
3377
3392
  text-decoration: underline;
3378
3393
  }
3379
3394
  .alert-indicator {
@@ -3911,7 +3926,7 @@ input[type=button].btn-block {
3911
3926
  .badge[href]:hover, .badge[href].hover, .badge[type]:hover, .badge[type].hover {
3912
3927
  text-decoration: none;
3913
3928
  }
3914
- .badge[href].focus, .badge[href]:focus, .badge[type].focus, .badge[type]:focus {
3929
+ .badge[href].focus, .badge[href]:focus-visible, .c-prefers-focus .badge[href]:focus, .badge[type].focus, .badge[type]:focus-visible, .c-prefers-focus .badge[type]:focus {
3915
3930
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
3916
3931
  outline: 0;
3917
3932
  }
@@ -3922,7 +3937,7 @@ input[type=button].btn-block {
3922
3937
  .badge a:hover, .badge a.hover {
3923
3938
  text-decoration: none;
3924
3939
  }
3925
- .badge a.focus, .badge a:focus {
3940
+ .badge a.focus, .badge a:focus-visible, .c-prefers-focus .badge a:focus {
3926
3941
  text-decoration: none;
3927
3942
  }
3928
3943
  .badge > .c-inner {
@@ -3991,9 +4006,10 @@ input[type=button].btn-block {
3991
4006
  color: inherit;
3992
4007
  opacity: 1;
3993
4008
  }
3994
- .badge-item .close:focus {
4009
+ .badge-item .close.focus, .badge-item .close:focus-visible, .c-prefers-focus .badge-item .close:focus {
3995
4010
  opacity: 1;
3996
4011
  }
4012
+
3997
4013
  .badge-item .lexicon-icon {
3998
4014
  height: 0.875em;
3999
4015
  margin-top: 0;
@@ -4037,7 +4053,7 @@ input[type=button].btn-block {
4037
4053
  background-color: #0062cc;
4038
4054
  color: #fff;
4039
4055
  }
4040
- [href].focus.badge-primary, [href].badge-primary:focus, [type].focus.badge-primary, [type].badge-primary:focus {
4056
+ [href].focus.badge-primary, [href].badge-primary:focus-visible, .c-prefers-focus [href].badge-primary:focus, [type].focus.badge-primary, [type].badge-primary:focus-visible, .c-prefers-focus [type].badge-primary:focus {
4041
4057
  background-color: #0062cc;
4042
4058
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
4043
4059
  color: #fff;
@@ -4050,7 +4066,7 @@ input[type=button].btn-block {
4050
4066
  background-color: #545b62;
4051
4067
  color: #fff;
4052
4068
  }
4053
- [href].focus.badge-secondary, [href].badge-secondary:focus, [type].focus.badge-secondary, [type].badge-secondary:focus {
4069
+ [href].focus.badge-secondary, [href].badge-secondary:focus-visible, .c-prefers-focus [href].badge-secondary:focus, [type].focus.badge-secondary, [type].badge-secondary:focus-visible, .c-prefers-focus [type].badge-secondary:focus {
4054
4070
  background-color: #545b62;
4055
4071
  color: #fff;
4056
4072
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
@@ -4063,7 +4079,7 @@ input[type=button].btn-block {
4063
4079
  background-color: #1e7e34;
4064
4080
  color: #fff;
4065
4081
  }
4066
- [href].focus.badge-success, [href].badge-success:focus, [type].focus.badge-success, [type].badge-success:focus {
4082
+ [href].focus.badge-success, [href].badge-success:focus-visible, .c-prefers-focus [href].badge-success:focus, [type].focus.badge-success, [type].badge-success:focus-visible, .c-prefers-focus [type].badge-success:focus {
4067
4083
  background-color: #1e7e34;
4068
4084
  color: #fff;
4069
4085
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
@@ -4076,7 +4092,7 @@ input[type=button].btn-block {
4076
4092
  background-color: #117a8b;
4077
4093
  color: #fff;
4078
4094
  }
4079
- [href].focus.badge-info, [href].badge-info:focus, [type].focus.badge-info, [type].badge-info:focus {
4095
+ [href].focus.badge-info, [href].badge-info:focus-visible, .c-prefers-focus [href].badge-info:focus, [type].focus.badge-info, [type].badge-info:focus-visible, .c-prefers-focus [type].badge-info:focus {
4080
4096
  background-color: #117a8b;
4081
4097
  color: #fff;
4082
4098
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
@@ -4089,7 +4105,7 @@ input[type=button].btn-block {
4089
4105
  background-color: #d39e00;
4090
4106
  color: #212529;
4091
4107
  }
4092
- [href].focus.badge-warning, [href].badge-warning:focus, [type].focus.badge-warning, [type].badge-warning:focus {
4108
+ [href].focus.badge-warning, [href].badge-warning:focus-visible, .c-prefers-focus [href].badge-warning:focus, [type].focus.badge-warning, [type].badge-warning:focus-visible, .c-prefers-focus [type].badge-warning:focus {
4093
4109
  background-color: #d39e00;
4094
4110
  color: #212529;
4095
4111
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
@@ -4102,7 +4118,7 @@ input[type=button].btn-block {
4102
4118
  background-color: #bd2130;
4103
4119
  color: #fff;
4104
4120
  }
4105
- [href].focus.badge-danger, [href].badge-danger:focus, [type].focus.badge-danger, [type].badge-danger:focus {
4121
+ [href].focus.badge-danger, [href].badge-danger:focus-visible, .c-prefers-focus [href].badge-danger:focus, [type].focus.badge-danger, [type].badge-danger:focus-visible, .c-prefers-focus [type].badge-danger:focus {
4106
4122
  background-color: #bd2130;
4107
4123
  color: #fff;
4108
4124
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
@@ -4115,7 +4131,7 @@ input[type=button].btn-block {
4115
4131
  background-color: #dae0e5;
4116
4132
  color: #212529;
4117
4133
  }
4118
- [href].focus.badge-light, [href].badge-light:focus, [type].focus.badge-light, [type].badge-light:focus {
4134
+ [href].focus.badge-light, [href].badge-light:focus-visible, .c-prefers-focus [href].badge-light:focus, [type].focus.badge-light, [type].badge-light:focus-visible, .c-prefers-focus [type].badge-light:focus {
4119
4135
  background-color: #dae0e5;
4120
4136
  color: #212529;
4121
4137
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
@@ -4128,16 +4144,21 @@ input[type=button].btn-block {
4128
4144
  background-color: #1d2124;
4129
4145
  color: #fff;
4130
4146
  }
4131
- [href].focus.badge-dark, [href].badge-dark:focus, [type].focus.badge-dark, [type].badge-dark:focus {
4147
+ [href].focus.badge-dark, [href].badge-dark:focus-visible, .c-prefers-focus [href].badge-dark:focus, [type].focus.badge-dark, [type].badge-dark:focus-visible, .c-prefers-focus [type].badge-dark:focus {
4132
4148
  background-color: #1d2124;
4133
4149
  color: #fff;
4134
4150
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
4135
4151
  }
4136
4152
  .badge-beta {
4137
- background-color: white;
4153
+ background-color: rgba(19, 132, 150, 0.04);
4138
4154
  color: #138496;
4139
4155
  text-transform: uppercase;
4140
4156
  }
4157
+ .badge-beta-dark {
4158
+ background-color: rgba(135, 226, 240, 0.04);
4159
+ color: #5ad7ea;
4160
+ text-transform: uppercase;
4161
+ }
4141
4162
  .breadcrumb {
4142
4163
  background-color: #e9ecef;
4143
4164
  border-radius: 0.25rem;
@@ -4157,7 +4178,7 @@ input[type=button].btn-block {
4157
4178
  color: #0056b3;
4158
4179
  text-decoration: underline;
4159
4180
  }
4160
- .breadcrumb-link.focus, .breadcrumb-link:focus {
4181
+ .breadcrumb-link.focus, .breadcrumb-link:focus-visible, .c-prefers-focus .breadcrumb-link:focus {
4161
4182
  color: #0056b3;
4162
4183
  text-decoration: underline;
4163
4184
  }
@@ -4203,7 +4224,7 @@ input[type=button].btn-block {
4203
4224
  .breadcrumb-item .dropdown-toggle:hover {
4204
4225
  text-decoration: none;
4205
4226
  }
4206
- .breadcrumb-item .dropdown-toggle:focus, .breadcrumb-item .dropdown-toggle.focus {
4227
+ .breadcrumb-item .dropdown-toggle.focus, .breadcrumb-item .dropdown-toggle:focus-visible, .c-prefers-focus .breadcrumb-item .dropdown-toggle:focus {
4207
4228
  text-decoration: none;
4208
4229
  }
4209
4230
  .breadcrumb-text-truncate {
@@ -4448,9 +4469,10 @@ input[type=button].btn-block {
4448
4469
  color: inherit;
4449
4470
  text-decoration: none;
4450
4471
  }
4451
- .label a.focus, .label a:focus,
4472
+ .label a.focus, .label a:focus-visible, .c-prefers-focus .label a:focus,
4452
4473
  .label .btn-unstyled.focus,
4453
- .label .btn-unstyled:focus {
4474
+ .label .btn-unstyled:focus-visible,
4475
+ .c-prefers-focus .label .btn-unstyled:focus {
4454
4476
  color: inherit;
4455
4477
  text-decoration: none;
4456
4478
  }
@@ -4528,9 +4550,10 @@ input[type=button].btn-block {
4528
4550
  color: inherit;
4529
4551
  opacity: 1;
4530
4552
  }
4531
- .label-item .close:focus {
4553
+ .label-item .close.focus, .label-item .close:focus-visible, .c-prefers-focus .label-item .close:focus {
4532
4554
  opacity: 1;
4533
4555
  }
4556
+
4534
4557
  .label-item .close:disabled, .label-item .close.disabled {
4535
4558
  opacity: 0.65;
4536
4559
  }
@@ -4584,7 +4607,7 @@ input[type=button].btn-block {
4584
4607
  border-color: #0062cc;
4585
4608
  color: #0062cc;
4586
4609
  }
4587
- [href].focus.label-primary, [href].label-primary:focus, [type].focus.label-primary, [type].label-primary:focus, [tabindex].focus.label-primary, [tabindex].label-primary:focus {
4610
+ [href].focus.label-primary, [href].label-primary:focus-visible, .c-prefers-focus [href].label-primary:focus, [type].focus.label-primary, [type].label-primary:focus-visible, .c-prefers-focus [type].label-primary:focus, [tabindex].focus.label-primary, [tabindex].label-primary:focus-visible, .c-prefers-focus [tabindex].label-primary:focus {
4588
4611
  color: #0062cc;
4589
4612
  }
4590
4613
  .label-primary a:hover, .label-primary a.hover,
@@ -4595,9 +4618,10 @@ input[type=button].btn-block {
4595
4618
  .label-primary .close:hover {
4596
4619
  color: #0062cc;
4597
4620
  }
4598
- .label-primary .close:focus {
4621
+ .label-primary .close.focus, .label-primary .close:focus-visible, .c-prefers-focus .label-primary .close:focus {
4599
4622
  color: #0062cc;
4600
4623
  }
4624
+
4601
4625
  .label-secondary {
4602
4626
  background-color: #fff;
4603
4627
  border-color: #6c757d;
@@ -4607,7 +4631,7 @@ input[type=button].btn-block {
4607
4631
  border-color: #545b62;
4608
4632
  color: #545b62;
4609
4633
  }
4610
- [href].focus.label-secondary, [href].label-secondary:focus, [type].focus.label-secondary, [type].label-secondary:focus, [tabindex].focus.label-secondary, [tabindex].label-secondary:focus {
4634
+ [href].focus.label-secondary, [href].label-secondary:focus-visible, .c-prefers-focus [href].label-secondary:focus, [type].focus.label-secondary, [type].label-secondary:focus-visible, .c-prefers-focus [type].label-secondary:focus, [tabindex].focus.label-secondary, [tabindex].label-secondary:focus-visible, .c-prefers-focus [tabindex].label-secondary:focus {
4611
4635
  color: #545b62;
4612
4636
  }
4613
4637
  .label-secondary a:hover, .label-secondary a.hover,
@@ -4618,9 +4642,10 @@ input[type=button].btn-block {
4618
4642
  .label-secondary .close:hover {
4619
4643
  color: #545b62;
4620
4644
  }
4621
- .label-secondary .close:focus {
4645
+ .label-secondary .close.focus, .label-secondary .close:focus-visible, .c-prefers-focus .label-secondary .close:focus {
4622
4646
  color: #545b62;
4623
4647
  }
4648
+
4624
4649
  .label-success {
4625
4650
  background-color: #fff;
4626
4651
  border-color: #28a745;
@@ -4630,7 +4655,7 @@ input[type=button].btn-block {
4630
4655
  border-color: #1e7e34;
4631
4656
  color: #1e7e34;
4632
4657
  }
4633
- [href].focus.label-success, [href].label-success:focus, [type].focus.label-success, [type].label-success:focus, [tabindex].focus.label-success, [tabindex].label-success:focus {
4658
+ [href].focus.label-success, [href].label-success:focus-visible, .c-prefers-focus [href].label-success:focus, [type].focus.label-success, [type].label-success:focus-visible, .c-prefers-focus [type].label-success:focus, [tabindex].focus.label-success, [tabindex].label-success:focus-visible, .c-prefers-focus [tabindex].label-success:focus {
4634
4659
  color: #1e7e34;
4635
4660
  }
4636
4661
  .label-success a:hover, .label-success a.hover,
@@ -4641,9 +4666,10 @@ input[type=button].btn-block {
4641
4666
  .label-success .close:hover {
4642
4667
  color: #1e7e34;
4643
4668
  }
4644
- .label-success .close:focus {
4669
+ .label-success .close.focus, .label-success .close:focus-visible, .c-prefers-focus .label-success .close:focus {
4645
4670
  color: #1e7e34;
4646
4671
  }
4672
+
4647
4673
  .label-info {
4648
4674
  background-color: #fff;
4649
4675
  border-color: #17a2b8;
@@ -4653,7 +4679,7 @@ input[type=button].btn-block {
4653
4679
  border-color: #117a8b;
4654
4680
  color: #117a8b;
4655
4681
  }
4656
- [href].focus.label-info, [href].label-info:focus, [type].focus.label-info, [type].label-info:focus, [tabindex].focus.label-info, [tabindex].label-info:focus {
4682
+ [href].focus.label-info, [href].label-info:focus-visible, .c-prefers-focus [href].label-info:focus, [type].focus.label-info, [type].label-info:focus-visible, .c-prefers-focus [type].label-info:focus, [tabindex].focus.label-info, [tabindex].label-info:focus-visible, .c-prefers-focus [tabindex].label-info:focus {
4657
4683
  color: #117a8b;
4658
4684
  }
4659
4685
  .label-info a:hover, .label-info a.hover,
@@ -4664,9 +4690,10 @@ input[type=button].btn-block {
4664
4690
  .label-info .close:hover {
4665
4691
  color: #117a8b;
4666
4692
  }
4667
- .label-info .close:focus {
4693
+ .label-info .close.focus, .label-info .close:focus-visible, .c-prefers-focus .label-info .close:focus {
4668
4694
  color: #117a8b;
4669
4695
  }
4696
+
4670
4697
  .label-warning {
4671
4698
  background-color: #fff;
4672
4699
  border-color: #ffc107;
@@ -4676,7 +4703,7 @@ input[type=button].btn-block {
4676
4703
  border-color: #d39e00;
4677
4704
  color: #d39e00;
4678
4705
  }
4679
- [href].focus.label-warning, [href].label-warning:focus, [type].focus.label-warning, [type].label-warning:focus, [tabindex].focus.label-warning, [tabindex].label-warning:focus {
4706
+ [href].focus.label-warning, [href].label-warning:focus-visible, .c-prefers-focus [href].label-warning:focus, [type].focus.label-warning, [type].label-warning:focus-visible, .c-prefers-focus [type].label-warning:focus, [tabindex].focus.label-warning, [tabindex].label-warning:focus-visible, .c-prefers-focus [tabindex].label-warning:focus {
4680
4707
  color: #d39e00;
4681
4708
  }
4682
4709
  .label-warning a:hover, .label-warning a.hover,
@@ -4687,9 +4714,10 @@ input[type=button].btn-block {
4687
4714
  .label-warning .close:hover {
4688
4715
  color: #d39e00;
4689
4716
  }
4690
- .label-warning .close:focus {
4717
+ .label-warning .close.focus, .label-warning .close:focus-visible, .c-prefers-focus .label-warning .close:focus {
4691
4718
  color: #d39e00;
4692
4719
  }
4720
+
4693
4721
  .label-danger {
4694
4722
  background-color: #fff;
4695
4723
  border-color: #dc3545;
@@ -4699,7 +4727,7 @@ input[type=button].btn-block {
4699
4727
  border-color: #bd2130;
4700
4728
  color: #bd2130;
4701
4729
  }
4702
- [href].focus.label-danger, [href].label-danger:focus, [type].focus.label-danger, [type].label-danger:focus, [tabindex].focus.label-danger, [tabindex].label-danger:focus {
4730
+ [href].focus.label-danger, [href].label-danger:focus-visible, .c-prefers-focus [href].label-danger:focus, [type].focus.label-danger, [type].label-danger:focus-visible, .c-prefers-focus [type].label-danger:focus, [tabindex].focus.label-danger, [tabindex].label-danger:focus-visible, .c-prefers-focus [tabindex].label-danger:focus {
4703
4731
  color: #bd2130;
4704
4732
  }
4705
4733
  .label-danger a:hover, .label-danger a.hover,
@@ -4710,9 +4738,10 @@ input[type=button].btn-block {
4710
4738
  .label-danger .close:hover {
4711
4739
  color: #bd2130;
4712
4740
  }
4713
- .label-danger .close:focus {
4741
+ .label-danger .close.focus, .label-danger .close:focus-visible, .c-prefers-focus .label-danger .close:focus {
4714
4742
  color: #bd2130;
4715
4743
  }
4744
+
4716
4745
  .label-dark {
4717
4746
  background-color: #fff;
4718
4747
  border-color: #343a40;
@@ -4722,7 +4751,7 @@ input[type=button].btn-block {
4722
4751
  border-color: #1d2124;
4723
4752
  color: #1d2124;
4724
4753
  }
4725
- [href].focus.label-dark, [href].label-dark:focus, [type].focus.label-dark, [type].label-dark:focus, [tabindex].focus.label-dark, [tabindex].label-dark:focus {
4754
+ [href].focus.label-dark, [href].label-dark:focus-visible, .c-prefers-focus [href].label-dark:focus, [type].focus.label-dark, [type].label-dark:focus-visible, .c-prefers-focus [type].label-dark:focus, [tabindex].focus.label-dark, [tabindex].label-dark:focus-visible, .c-prefers-focus [tabindex].label-dark:focus {
4726
4755
  color: #1d2124;
4727
4756
  }
4728
4757
  .label-dark a:hover, .label-dark a.hover,
@@ -4733,9 +4762,10 @@ input[type=button].btn-block {
4733
4762
  .label-dark .close:hover {
4734
4763
  color: #1d2124;
4735
4764
  }
4736
- .label-dark .close:focus {
4765
+ .label-dark .close.focus, .label-dark .close:focus-visible, .c-prefers-focus .label-dark .close:focus {
4737
4766
  color: #1d2124;
4738
4767
  }
4768
+
4739
4769
  .label-light {
4740
4770
  background-color: #343a40;
4741
4771
  border-color: #f8f9fa;
@@ -4745,7 +4775,7 @@ input[type=button].btn-block {
4745
4775
  border-color: #dae0e5;
4746
4776
  color: #dae0e5;
4747
4777
  }
4748
- [href].focus.label-light, [href].label-light:focus, [type].focus.label-light, [type].label-light:focus, [tabindex].focus.label-light, [tabindex].label-light:focus {
4778
+ [href].focus.label-light, [href].label-light:focus-visible, .c-prefers-focus [href].label-light:focus, [type].focus.label-light, [type].label-light:focus-visible, .c-prefers-focus [type].label-light:focus, [tabindex].focus.label-light, [tabindex].label-light:focus-visible, .c-prefers-focus [tabindex].label-light:focus {
4749
4779
  color: #dae0e5;
4750
4780
  }
4751
4781
  .label-light a:hover, .label-light a.hover,
@@ -4756,9 +4786,10 @@ input[type=button].btn-block {
4756
4786
  .label-light .close:hover {
4757
4787
  color: #dae0e5;
4758
4788
  }
4759
- .label-light .close:focus {
4789
+ .label-light .close.focus, .label-light .close:focus-visible, .c-prefers-focus .label-light .close:focus {
4760
4790
  color: #dae0e5;
4761
4791
  }
4792
+
4762
4793
  .label-inverse-primary {
4763
4794
  background-color: #007bff;
4764
4795
  border-color: #007bff;
@@ -5990,7 +6021,7 @@ input[type=button].btn-block {
5990
6021
  background-color: #f8f9fa;
5991
6022
  text-decoration: none;
5992
6023
  }
5993
- .card-interactive:focus, .card-interactive.focus {
6024
+ .card-interactive.focus, .card-interactive:focus-visible, .c-prefers-focus .card-interactive:focus {
5994
6025
  border-color: #80bdff;
5995
6026
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
5996
6027
  }
@@ -6032,7 +6063,7 @@ input[type=button].btn-block {
6032
6063
  cursor: pointer;
6033
6064
  }
6034
6065
 
6035
- .card-interactive-primary:focus, .card-interactive-primary.focus {
6066
+ .card-interactive-primary.focus, .card-interactive-primary:focus-visible, .c-prefers-focus .card-interactive-primary:focus {
6036
6067
  background-color: #f8f9fa;
6037
6068
  }
6038
6069
  .card-interactive-primary:active, .card-interactive-primary.active {
@@ -6263,7 +6294,7 @@ input[type=button].btn-block {
6263
6294
  color: #16181b;
6264
6295
  text-decoration: none;
6265
6296
  }
6266
- .dropdown-item:focus, .dropdown-item.focus {
6297
+ .dropdown-item.focus, .dropdown-item:focus-visible, .c-prefers-focus .dropdown-item:focus {
6267
6298
  background-color: #f8f9fa;
6268
6299
  color: #16181b;
6269
6300
  text-decoration: none;
@@ -6492,7 +6523,7 @@ input[type=button].btn-block {
6492
6523
  background-image: none;
6493
6524
  color: #16181b;
6494
6525
  }
6495
- .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:focus, .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.focus {
6526
+ .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.focus, .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:focus-visible, .c-prefers-focus .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:focus {
6496
6527
  background-color: #f8f9fa;
6497
6528
  background-image: none;
6498
6529
  color: #16181b;
@@ -6741,7 +6772,7 @@ input[type=button].btn-block {
6741
6772
  color: inherit;
6742
6773
  text-decoration: inherit;
6743
6774
  }
6744
- .dropdown-item-indicator-text-start.focus, .dropdown-item-indicator-text-start:focus {
6775
+ .dropdown-item-indicator-text-start.focus, .dropdown-item-indicator-text-start:focus-visible, .c-prefers-focus .dropdown-item-indicator-text-start:focus {
6745
6776
  color: inherit;
6746
6777
  text-decoration: inherit;
6747
6778
  }
@@ -6796,7 +6827,7 @@ input[type=button].btn-block {
6796
6827
  color: inherit;
6797
6828
  text-decoration: inherit;
6798
6829
  }
6799
- .dropdown-item-indicator-text-end.focus, .dropdown-item-indicator-text-end:focus {
6830
+ .dropdown-item-indicator-text-end.focus, .dropdown-item-indicator-text-end:focus-visible, .c-prefers-focus .dropdown-item-indicator-text-end:focus {
6800
6831
  color: inherit;
6801
6832
  text-decoration: inherit;
6802
6833
  }
@@ -7272,7 +7303,7 @@ fieldset[disabled] label .form-control {
7272
7303
  color: #6c757d;
7273
7304
  opacity: 1;
7274
7305
  }
7275
- .form-control:focus, .form-control.focus {
7306
+ .form-control.focus, .form-control:focus-visible, .c-prefers-focus .form-control:focus {
7276
7307
  background-color: #fff;
7277
7308
  border-color: #80bdff;
7278
7309
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
@@ -7438,7 +7469,7 @@ div.form-control-sm {
7438
7469
  padding: 0;
7439
7470
  width: 50px;
7440
7471
  }
7441
- .form-control-inset:focus, .form-control-inset.focus {
7472
+ .form-control-inset.focus, .form-control-inset:focus-visible, .c-prefers-focus .form-control-inset:focus {
7442
7473
  outline: 0;
7443
7474
  }
7444
7475
  .form-control-inset:disabled, .form-control-inset.disabled {
@@ -7503,7 +7534,7 @@ select.form-control[size] {
7503
7534
  scrollbar-width: thin;
7504
7535
  color: #495057;
7505
7536
  }
7506
- select.form-control[size]:focus, select.form-control[size].focus {
7537
+ select.form-control[size].focus, select.form-control[size]:focus-visible, .c-prefers-focus select.form-control[size]:focus {
7507
7538
  background-image: none;
7508
7539
  }
7509
7540
  select.form-control[size] option {
@@ -7518,7 +7549,7 @@ select.form-control[multiple] {
7518
7549
  scrollbar-width: thin;
7519
7550
  color: #495057;
7520
7551
  }
7521
- select.form-control[multiple]:focus, select.form-control[multiple].focus {
7552
+ select.form-control[multiple].focus, select.form-control[multiple]:focus-visible, .c-prefers-focus select.form-control[multiple]:focus {
7522
7553
  background-image: none;
7523
7554
  }
7524
7555
  select.form-control[multiple] option {
@@ -7639,7 +7670,7 @@ textarea.form-control-plaintext,
7639
7670
  transition: none;
7640
7671
  }
7641
7672
 
7642
- .form-control-plaintext[readonly]:focus, .form-control-plaintext[readonly].focus {
7673
+ .form-control-plaintext[readonly].focus, .form-control-plaintext[readonly]:focus-visible, .c-prefers-focus .form-control-plaintext[readonly]:focus {
7643
7674
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
7644
7675
  }
7645
7676
  .form-control-lg {
@@ -7914,7 +7945,7 @@ textarea.form-control-lg,
7914
7945
  .c-link:hover, .c-link.hover {
7915
7946
  text-decoration: none;
7916
7947
  }
7917
- .c-link.focus, .c-link:focus {
7948
+ .c-link.focus, .c-link:focus-visible, .c-prefers-focus .c-link:focus {
7918
7949
  border-radius: 1px;
7919
7950
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
7920
7951
  outline: 0;
@@ -7925,7 +7956,7 @@ textarea.form-control-lg,
7925
7956
  .c-link.text-secondary:hover, .c-link.text-secondary.hover {
7926
7957
  color: #000 !important;
7927
7958
  }
7928
- .c-link.text-secondary.focus, .c-link.text-secondary:focus {
7959
+ .c-link.text-secondary.focus, .c-link.text-secondary:focus-visible, .c-prefers-focus .c-link.text-secondary:focus {
7929
7960
  color: #000 !important;
7930
7961
  }
7931
7962
  .c-link.text-tertiary {
@@ -7992,7 +8023,7 @@ button.link-outline {
7992
8023
  .link-outline:hover, .link-outline.hover {
7993
8024
  text-decoration: none;
7994
8025
  }
7995
- .link-outline.focus, .link-outline:focus {
8026
+ .link-outline.focus, .link-outline:focus-visible, .c-prefers-focus .link-outline:focus {
7996
8027
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
7997
8028
  outline: 0;
7998
8029
  }
@@ -8150,7 +8181,7 @@ button.link-outline {
8150
8181
  background-color: #6c757d;
8151
8182
  color: #fff;
8152
8183
  }
8153
- .component-action.focus, .component-action:focus {
8184
+ .component-action.focus, .component-action:focus-visible, .c-prefers-focus .component-action:focus {
8154
8185
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8155
8186
  outline: 0;
8156
8187
  }
@@ -8408,10 +8439,10 @@ button.link-outline {
8408
8439
  visibility: visible;
8409
8440
  opacity: 1;
8410
8441
  }
8411
- .clay-range-input .form-control-range:focus, .clay-range-input .form-control-range.focus {
8442
+ .clay-range-input .form-control-range.focus, .clay-range-input .form-control-range:focus-visible, .c-prefers-focus .clay-range-input .form-control-range:focus {
8412
8443
  outline: 0;
8413
8444
  }
8414
- .clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip, .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip {
8445
+ .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip, .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .tooltip, .c-prefers-focus .clay-range-input .form-control-range:focus ~ .clay-range-progress .tooltip {
8415
8446
  visibility: visible;
8416
8447
  opacity: 1;
8417
8448
  }
@@ -8467,7 +8498,7 @@ button.link-outline {
8467
8498
  padding-top: 0.375rem;
8468
8499
  width: 100%;
8469
8500
  }
8470
- .clay-reorder .form-control-inset:focus, .clay-reorder .form-control-inset.focus {
8501
+ .clay-reorder .form-control-inset.focus, .clay-reorder .form-control-inset:focus-visible, .c-prefers-focus .clay-reorder .form-control-inset:focus {
8471
8502
  background-color: transparent;
8472
8503
  box-shadow: none;
8473
8504
  }
@@ -8530,11 +8561,11 @@ button.link-outline {
8530
8561
  background-color: transparent;
8531
8562
  color: #000;
8532
8563
  }
8533
- .clay-color-dropdown-menu .component-action:focus, .clay-color-dropdown-menu .component-action.focus {
8564
+ .clay-color-dropdown-menu .component-action.focus, .clay-color-dropdown-menu .component-action:focus-visible, .c-prefers-focus .clay-color-dropdown-menu .component-action:focus {
8534
8565
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8535
8566
  color: #000;
8536
8567
  }
8537
- .clay-color-dropdown-menu .component-action:active:focus {
8568
+ .clay-color-dropdown-menu .component-action:active:focus-visible, .c-prefers-focus .clay-color-dropdown-menu .component-action:active:focus {
8538
8569
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8539
8570
  }
8540
8571
  .clay-color-dropdown-menu .form-control {
@@ -8606,11 +8637,11 @@ button.link-outline {
8606
8637
  transition: none;
8607
8638
  }
8608
8639
 
8609
- .clay-color-pointer:focus, .clay-color-pointer.focus {
8640
+ .clay-color-pointer.focus, .clay-color-pointer:focus-visible, .c-prefers-focus .clay-color-pointer:focus {
8610
8641
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8611
8642
  outline: 0;
8612
8643
  }
8613
- .clay-color-pointer:active:focus {
8644
+ .clay-color-pointer:active:focus-visible, .c-prefers-focus .clay-color-pointer:active:focus {
8614
8645
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8615
8646
  }
8616
8647
  .clay-color-pointer .c-inner {
@@ -8873,7 +8904,7 @@ label.custom-control-label {
8873
8904
  width: 1rem;
8874
8905
  z-index: 1;
8875
8906
  }
8876
- .custom-control-input:focus ~ .custom-control-label::before {
8907
+ .custom-control-input:focus-visible ~ .custom-control-label::before, .c-prefers-focus .custom-control-input:focus ~ .custom-control-label::before {
8877
8908
  border-color: #80bdff;
8878
8909
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8879
8910
  }
@@ -9318,7 +9349,7 @@ label.custom-control-label {
9318
9349
  .clay-time .form-control-inset::-moz-selection, .clay-time .form-control-inset::selection {
9319
9350
  background-color: transparent;
9320
9351
  }
9321
- .clay-time .form-control-inset:focus, .clay-time .form-control-inset.focus {
9352
+ .clay-time .form-control-inset.focus, .clay-time .form-control-inset:focus-visible, .c-prefers-focus .clay-time .form-control-inset:focus {
9322
9353
  background-color: #b3d8fd;
9323
9354
  }
9324
9355
  .clay-time .input-group-text {
@@ -9427,10 +9458,10 @@ label.custom-control-label {
9427
9458
  .date-picker-nav .nav-btn:hover {
9428
9459
  background-color: #e9ecef;
9429
9460
  }
9430
- .date-picker-nav .nav-btn:focus, .date-picker-nav .nav-btn.focus {
9461
+ .date-picker-nav .nav-btn.focus, .date-picker-nav .nav-btn:focus-visible, .c-prefers-focus .date-picker-nav .nav-btn:focus {
9431
9462
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
9432
9463
  }
9433
- .date-picker-nav .nav-btn:active:focus {
9464
+ .date-picker-nav .nav-btn:active:focus-visible, .c-prefers-focus .date-picker-nav .nav-btn:active:focus {
9434
9465
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
9435
9466
  }
9436
9467
  .date-picker-nav .nav-btn:disabled, .date-picker-nav .nav-btn.disabled {
@@ -9581,7 +9612,7 @@ label.custom-control-label {
9581
9612
  .date-picker-date:hover {
9582
9613
  background-color: #e9ecef;
9583
9614
  }
9584
- .date-picker-date:focus, .date-picker-date.focus {
9615
+ .date-picker-date.focus, .date-picker-date:focus-visible, .c-prefers-focus .date-picker-date:focus {
9585
9616
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
9586
9617
  outline: 0;
9587
9618
  }
@@ -9589,7 +9620,7 @@ label.custom-control-label {
9589
9620
  background-color: #007bff;
9590
9621
  color: #fff;
9591
9622
  }
9592
- .date-picker-date:active:focus {
9623
+ .date-picker-date:active:focus-visible, .c-prefers-focus .date-picker-date:active:focus {
9593
9624
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
9594
9625
  }
9595
9626
  .date-picker-date.active {
@@ -9608,7 +9639,7 @@ label.custom-control-label {
9608
9639
  .previous-month-date {
9609
9640
  opacity: 0.65;
9610
9641
  }
9611
- .previous-month-date:focus, .previous-month-date.focus {
9642
+ .previous-month-date.focus, .previous-month-date:focus-visible, .c-prefers-focus .previous-month-date:focus {
9612
9643
  opacity: 1;
9613
9644
  }
9614
9645
  .previous-month-date:active {
@@ -9626,7 +9657,7 @@ label.custom-control-label {
9626
9657
  .next-month-date {
9627
9658
  opacity: 0.65;
9628
9659
  }
9629
- .next-month-date:focus, .next-month-date.focus {
9660
+ .next-month-date.focus, .next-month-date:focus-visible, .c-prefers-focus .next-month-date:focus {
9630
9661
  opacity: 1;
9631
9662
  }
9632
9663
  .next-month-date:active {
@@ -9895,7 +9926,7 @@ label.custom-control-label {
9895
9926
  .has-error .form-control {
9896
9927
  border-color: #dc3545;
9897
9928
  }
9898
- .has-error .form-control:focus, .has-error .form-control.focus {
9929
+ .has-error .form-control.focus, .has-error .form-control:focus-visible, .c-prefers-focus .has-error .form-control:focus {
9899
9930
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
9900
9931
  }
9901
9932
  .has-error .form-feedback-item {
@@ -9939,7 +9970,7 @@ label.custom-control-label {
9939
9970
  .has-warning .form-control {
9940
9971
  border-color: #ffc107;
9941
9972
  }
9942
- .has-warning .form-control:focus, .has-warning .form-control.focus {
9973
+ .has-warning .form-control.focus, .has-warning .form-control:focus-visible, .c-prefers-focus .has-warning .form-control:focus {
9943
9974
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
9944
9975
  }
9945
9976
  .has-warning .form-feedback-item {
@@ -9983,7 +10014,7 @@ label.custom-control-label {
9983
10014
  .has-success .form-control {
9984
10015
  border-color: #28a745;
9985
10016
  }
9986
- .has-success .form-control:focus, .has-success .form-control.focus {
10017
+ .has-success .form-control.focus, .has-success .form-control:focus-visible, .c-prefers-focus .has-success .form-control:focus {
9987
10018
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
9988
10019
  }
9989
10020
  .has-success .form-feedback-item {
@@ -10456,13 +10487,14 @@ label.custom-control-label {
10456
10487
  order: 5;
10457
10488
  width: 1%;
10458
10489
  }
10459
- .input-group-inset:focus, .input-group-inset.focus {
10490
+ .input-group-inset.focus, .input-group-inset:focus-visible, .c-prefers-focus .input-group-inset:focus {
10460
10491
  box-shadow: none;
10461
10492
  }
10462
- .input-group-inset:focus ~ .input-group-inset-item, .input-group-inset.focus ~ .input-group-inset-item {
10493
+ .input-group-inset.focus ~ .input-group-inset-item, .input-group-inset:focus-visible ~ .input-group-inset-item, .c-prefers-focus .input-group-inset:focus ~ .input-group-inset-item {
10463
10494
  background-color: #fff;
10464
10495
  border-color: #80bdff;
10465
10496
  }
10497
+
10466
10498
  .input-group-inset:disabled ~ .input-group-inset-item, .input-group-inset.disabled ~ .input-group-inset-item {
10467
10499
  background-color: #e9ecef;
10468
10500
  }
@@ -11592,6 +11624,9 @@ label.custom-control-label {
11592
11624
  margin-left: calc(-1140px / 2);
11593
11625
  }
11594
11626
  }
11627
+ .modal-height-full .modal-body {
11628
+ overflow: auto;
11629
+ }
11595
11630
  .modal-height-full .modal-content {
11596
11631
  position: absolute;
11597
11632
  bottom: 0.5rem;
@@ -11984,7 +12019,7 @@ label.custom-control-label {
11984
12019
  .nav-link:hover, .nav-link.hover {
11985
12020
  text-decoration: none;
11986
12021
  }
11987
- .nav-link.focus, .nav-link:focus {
12022
+ .nav-link.focus, .nav-link:focus-visible, .c-prefers-focus .nav-link:focus {
11988
12023
  text-decoration: none;
11989
12024
  z-index: 1;
11990
12025
  }
@@ -12023,7 +12058,7 @@ label.custom-control-label {
12023
12058
  text-align: center;
12024
12059
  width: auto;
12025
12060
  }
12026
- .nav-btn:focus, .nav-btn.focus {
12061
+ .nav-btn.focus, .nav-btn:focus-visible, .c-prefers-focus .nav-btn:focus {
12027
12062
  z-index: 1;
12028
12063
  }
12029
12064
  .nav-btn:disabled, .nav-btn.disabled {
@@ -12284,7 +12319,7 @@ label.custom-control-label {
12284
12319
  .nav-tabs .nav-link:hover, .nav-tabs .nav-link.hover {
12285
12320
  border-color: #e9ecef #e9ecef #dee2e6;
12286
12321
  }
12287
- .nav-tabs .nav-link.focus, .nav-tabs .nav-link:focus {
12322
+ .nav-tabs .nav-link.focus, .nav-tabs .nav-link:focus-visible, .c-prefers-focus .nav-tabs .nav-link:focus {
12288
12323
  border-color: #e9ecef #e9ecef #dee2e6;
12289
12324
  }
12290
12325
  .nav-tabs .nav-link:active {
@@ -16448,7 +16483,7 @@ label.custom-control-label {
16448
16483
  text-decoration: none;
16449
16484
  z-index: 2;
16450
16485
  }
16451
- .page-link.focus, .page-link:focus {
16486
+ .page-link.focus, .page-link:focus-visible, .c-prefers-focus .page-link:focus {
16452
16487
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
16453
16488
  outline: 0;
16454
16489
  z-index: 4;
@@ -16555,9 +16590,10 @@ label.custom-control-label {
16555
16590
  border-color: #dee2e6;
16556
16591
  color: #0056b3;
16557
16592
  }
16558
- .pagination-items-per-page > a.focus, .pagination-items-per-page > a:focus,
16593
+ .pagination-items-per-page > a.focus, .pagination-items-per-page > a:focus-visible, .c-prefers-focus .pagination-items-per-page > a:focus,
16559
16594
  .pagination-items-per-page > button.focus,
16560
- .pagination-items-per-page > button:focus {
16595
+ .pagination-items-per-page > button:focus-visible,
16596
+ .c-prefers-focus .pagination-items-per-page > button:focus {
16561
16597
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
16562
16598
  outline: 0;
16563
16599
  }
@@ -16784,7 +16820,7 @@ label.custom-control-label {
16784
16820
  .panel-header-link:hover, .panel-header-link.hover {
16785
16821
  color: inherit;
16786
16822
  }
16787
- .panel-header-link.focus, .panel-header-link:focus {
16823
+ .panel-header-link.focus, .panel-header-link:focus-visible, .c-prefers-focus .panel-header-link:focus {
16788
16824
  z-index: 1;
16789
16825
  }
16790
16826
  .panel-header-link.panel-header.collapsed {
@@ -18086,7 +18122,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
18086
18122
  .sidebar-dark .nav-nested .nav-link:hover, .sidebar-dark .nav-nested .nav-link.hover {
18087
18123
  color: #fff;
18088
18124
  }
18089
- .sidebar-dark .nav-nested .nav-link.focus, .sidebar-dark .nav-nested .nav-link:focus {
18125
+ .sidebar-dark .nav-nested .nav-link.focus, .sidebar-dark .nav-nested .nav-link:focus-visible, .c-prefers-focus .sidebar-dark .nav-nested .nav-link:focus {
18090
18126
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
18091
18127
  outline: 0;
18092
18128
  }
@@ -18148,7 +18184,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
18148
18184
  .sidebar-dark-l2 .nav-nested .nav-link:hover, .sidebar-dark-l2 .nav-nested .nav-link.hover {
18149
18185
  color: #fff;
18150
18186
  }
18151
- .sidebar-dark-l2 .nav-nested .nav-link.focus, .sidebar-dark-l2 .nav-nested .nav-link:focus {
18187
+ .sidebar-dark-l2 .nav-nested .nav-link.focus, .sidebar-dark-l2 .nav-nested .nav-link:focus-visible, .c-prefers-focus .sidebar-dark-l2 .nav-nested .nav-link:focus {
18152
18188
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
18153
18189
  outline: 0;
18154
18190
  }
@@ -19584,9 +19620,10 @@ caption {
19584
19620
  margin-top: -0.625rem;
19585
19621
  width: 3rem;
19586
19622
  }
19587
- .subnav-tbar-primary .component-label .close:focus {
19623
+ .subnav-tbar-primary .component-label .close.focus, .subnav-tbar-primary .component-label .close:focus-visible, .c-prefers-focus .subnav-tbar-primary .component-label .close:focus {
19588
19624
  color: inherit;
19589
19625
  }
19626
+
19590
19627
  .subnav-tbar-primary .component-label .close:disabled, .subnav-tbar-primary .component-label .close.disabled {
19591
19628
  color: #6c757d;
19592
19629
  opacity: 0.65;
@@ -19680,10 +19717,10 @@ caption {
19680
19717
  position: relative;
19681
19718
  width: 2.5rem;
19682
19719
  }
19683
- .tbar-stacked .tbar-btn-monospaced:focus, .tbar-stacked .tbar-btn-monospaced.focus {
19720
+ .tbar-stacked .tbar-btn-monospaced.focus, .tbar-stacked .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-stacked .tbar-btn-monospaced:focus {
19684
19721
  box-shadow: inset 0 0 0 0.125rem #47a0ff, inset 0 0 0 0.25rem #fff;
19685
19722
  }
19686
- .tbar-stacked .tbar-btn-monospaced:active:focus {
19723
+ .tbar-stacked .tbar-btn-monospaced:active:focus-visible, .c-prefers-focus .tbar-stacked .tbar-btn-monospaced:active:focus {
19687
19724
  box-shadow: inset 0 0 0 0.125rem #47a0ff, inset 0 0 0 0.25rem #fff;
19688
19725
  }
19689
19726
  .tbar-stacked .tbar-btn-monospaced .c-inner {
@@ -19709,7 +19746,7 @@ caption {
19709
19746
  .tbar-light .tbar-btn-monospaced:hover {
19710
19747
  color: #343a40;
19711
19748
  }
19712
- .tbar-light .tbar-btn-monospaced:focus, .tbar-light .tbar-btn-monospaced.focus {
19749
+ .tbar-light .tbar-btn-monospaced.focus, .tbar-light .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-light .tbar-btn-monospaced:focus {
19713
19750
  color: #343a40;
19714
19751
  }
19715
19752
  .tbar-light .tbar-btn-monospaced:active {
@@ -19745,7 +19782,7 @@ caption {
19745
19782
  .tbar-dark-l2 .tbar-btn-monospaced:hover {
19746
19783
  color: #fff;
19747
19784
  }
19748
- .tbar-dark-l2 .tbar-btn-monospaced:focus, .tbar-dark-l2 .tbar-btn-monospaced.focus {
19785
+ .tbar-dark-l2 .tbar-btn-monospaced.focus, .tbar-dark-l2 .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-dark-l2 .tbar-btn-monospaced:focus {
19749
19786
  color: #fff;
19750
19787
  }
19751
19788
  .tbar-dark-l2 .tbar-btn-monospaced:active {
@@ -19780,7 +19817,7 @@ caption {
19780
19817
  .tbar-dark-d1 .tbar-btn-monospaced:hover {
19781
19818
  color: #fff;
19782
19819
  }
19783
- .tbar-dark-d1 .tbar-btn-monospaced:focus, .tbar-dark-d1 .tbar-btn-monospaced.focus {
19820
+ .tbar-dark-d1 .tbar-btn-monospaced.focus, .tbar-dark-d1 .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-dark-d1 .tbar-btn-monospaced:focus {
19784
19821
  color: #fff;
19785
19822
  }
19786
19823
  .tbar-dark-d1 .tbar-btn-monospaced:active {
@@ -20229,7 +20266,7 @@ caption {
20229
20266
  .toggle-switch-check ~ .toggle-switch-bar .button-icon-on {
20230
20267
  opacity: 0;
20231
20268
  }
20232
- .toggle-switch-check:focus ~ .toggle-switch-bar::before {
20269
+ .toggle-switch-check:focus-visible ~ .toggle-switch-bar::before, .c-prefers-focus .toggle-switch-check:focus ~ .toggle-switch-bar::before {
20233
20270
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
20234
20271
  }
20235
20272
  .toggle-switch-check[disabled] ~ .toggle-switch-bar, .toggle-switch-check:disabled ~ .toggle-switch-bar {
@@ -20676,10 +20713,10 @@ caption {
20676
20713
  padding: 0;
20677
20714
  width: 24px;
20678
20715
  }
20679
- .treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
20716
+ .treeview .btn-monospaced.focus, .treeview .btn-monospaced:focus-visible, .c-prefers-focus .treeview .btn-monospaced:focus {
20680
20717
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
20681
20718
  }
20682
- .treeview .btn-monospaced:active:focus {
20719
+ .treeview .btn-monospaced:active:focus-visible, .c-prefers-focus .treeview .btn-monospaced:active:focus {
20683
20720
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
20684
20721
  }
20685
20722
  .treeview .custom-control {
@@ -20702,7 +20739,7 @@ caption {
20702
20739
  background-color: transparent;
20703
20740
  color: #6c757d;
20704
20741
  }
20705
- .treeview .component-action:focus, .treeview .component-action.focus {
20742
+ .treeview .component-action.focus, .treeview .component-action:focus-visible, .c-prefers-focus .treeview .component-action:focus {
20706
20743
  color: #6c757d;
20707
20744
  }
20708
20745
  .treeview .component-action:active {
@@ -20833,7 +20870,7 @@ caption {
20833
20870
  .treeview-link:hover, .treeview-link.hover {
20834
20871
  text-decoration: none;
20835
20872
  }
20836
- .treeview-link.focus, .treeview-link:focus {
20873
+ .treeview-link.focus, .treeview-link:focus-visible, .c-prefers-focus .treeview-link:focus {
20837
20874
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
20838
20875
  outline: 0;
20839
20876
  }
@@ -20992,11 +21029,12 @@ caption {
20992
21029
  opacity: 0.75;
20993
21030
  text-decoration: none;
20994
21031
  }
20995
- .close:focus {
21032
+ .close.focus, .close:focus-visible, .c-prefers-focus .close:focus {
20996
21033
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
20997
21034
  outline: 0;
20998
21035
  opacity: 0.75;
20999
21036
  }
21037
+
21000
21038
  .close:disabled, .close.disabled {
21001
21039
  box-shadow: none;
21002
21040
  cursor: not-allowed;