@clayui/css 3.126.0 → 3.128.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 +224 -58
  2. package/lib/css/atlas.css.map +1 -1
  3. package/lib/css/base.css +176 -74
  4. package/lib/css/base.css.map +1 -1
  5. package/lib/css/bootstrap.css +0 -0
  6. package/lib/css/bootstrap.css.map +1 -1
  7. package/lib/css/cadmin.css +423 -272
  8. package/lib/css/cadmin.css.map +1 -1
  9. package/lib/images/icons/icons.svg +1 -1
  10. package/package.json +2 -2
  11. package/src/scss/_license-text.scss +1 -1
  12. package/src/scss/atlas/variables/_globals.scss +8 -0
  13. package/src/scss/cadmin/components/_grid.scss +3 -1
  14. package/src/scss/cadmin/components/_multi-step-nav.scss +4 -2
  15. package/src/scss/cadmin/variables/_dropdowns.scss +18 -6
  16. package/src/scss/cadmin/variables/_globals.scss +4 -0
  17. package/src/scss/cadmin/variables/_multi-step-nav.scss +2 -2
  18. package/src/scss/components/_grid.scss +3 -1
  19. package/src/scss/components/_multi-step-nav.scss +4 -2
  20. package/src/scss/functions/_global-functions.scss +8 -2
  21. package/src/scss/mixins/_alerts.scss +104 -48
  22. package/src/scss/mixins/_badges.scss +75 -33
  23. package/src/scss/mixins/_buttons.scss +503 -250
  24. package/src/scss/mixins/_cards.scss +619 -302
  25. package/src/scss/mixins/_close.scss +42 -49
  26. package/src/scss/mixins/_custom-forms.scss +864 -606
  27. package/src/scss/mixins/_dropdown-menu.scss +476 -239
  28. package/src/scss/mixins/_forms.scss +4 -79
  29. package/src/scss/mixins/_links.scss +565 -308
  30. package/src/scss/mixins/_modals.scss +1 -26
  31. package/src/scss/mixins/_popovers.scss +1 -26
  32. package/src/scss/mixins/_sidebar.scss +3 -28
  33. package/src/scss/mixins/_slideout.scss +1 -26
  34. package/src/scss/mixins/_toggle-switch.scss +6 -31
  35. package/src/scss/variables/_dropdowns.scss +18 -6
  36. package/src/scss/variables/_globals.scss +8 -0
  37. package/src/scss/variables/_multi-step-nav.scss +2 -2
package/lib/css/base.css CHANGED
@@ -1,6 +1,6 @@
1
1
  @charset "UTF-8";
2
2
  /**
3
- * Clay 3.126.0
3
+ * Clay 3.128.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>
@@ -145,6 +145,7 @@ a.focus, a:focus-visible, .c-prefers-focus a:focus {
145
145
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
146
146
  outline: 0;
147
147
  }
148
+
148
149
  pre,
149
150
  code,
150
151
  kbd,
@@ -1190,9 +1191,7 @@ button.collapse-icon .c-inner,
1190
1191
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
1191
1192
  outline: 0;
1192
1193
  }
1193
- .btn:active:focus-visible, .c-prefers-focus .btn:active:focus {
1194
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
1195
- }
1194
+
1196
1195
  .btn:disabled, .btn.disabled {
1197
1196
  cursor: not-allowed;
1198
1197
  opacity: 0.65;
@@ -1200,6 +1199,7 @@ button.collapse-icon .c-inner,
1200
1199
  .btn:disabled:focus-visible, .c-prefers-focus .btn:disabled:focus, .btn.disabled:focus-visible, .c-prefers-focus .btn.disabled:focus {
1201
1200
  box-shadow: none;
1202
1201
  }
1202
+
1203
1203
  .btn:disabled:active, .btn.disabled:active {
1204
1204
  pointer-events: none;
1205
1205
  }
@@ -1401,6 +1401,7 @@ input[type=button].btn-block {
1401
1401
  border-color: #0062cc;
1402
1402
  color: #fff;
1403
1403
  }
1404
+
1404
1405
  .btn-primary:active {
1405
1406
  background-color: #0062cc;
1406
1407
  border-color: #005cbf;
@@ -1436,6 +1437,7 @@ input[type=button].btn-block {
1436
1437
  border-color: #545b62;
1437
1438
  color: #fff;
1438
1439
  }
1440
+
1439
1441
  .btn-secondary:active {
1440
1442
  background-color: #545b62;
1441
1443
  border-color: #4e555b;
@@ -1471,6 +1473,7 @@ input[type=button].btn-block {
1471
1473
  border-color: #1e7e34;
1472
1474
  color: #fff;
1473
1475
  }
1476
+
1474
1477
  .btn-success:active {
1475
1478
  background-color: #1e7e34;
1476
1479
  border-color: #1c7430;
@@ -1506,6 +1509,7 @@ input[type=button].btn-block {
1506
1509
  border-color: #117a8b;
1507
1510
  color: #fff;
1508
1511
  }
1512
+
1509
1513
  .btn-info:active {
1510
1514
  background-color: #117a8b;
1511
1515
  border-color: #10707f;
@@ -1541,6 +1545,7 @@ input[type=button].btn-block {
1541
1545
  border-color: #d39e00;
1542
1546
  color: #212529;
1543
1547
  }
1548
+
1544
1549
  .btn-warning:active {
1545
1550
  background-color: #d39e00;
1546
1551
  border-color: #c69500;
@@ -1576,6 +1581,7 @@ input[type=button].btn-block {
1576
1581
  border-color: #bd2130;
1577
1582
  color: #fff;
1578
1583
  }
1584
+
1579
1585
  .btn-danger:active {
1580
1586
  background-color: #bd2130;
1581
1587
  border-color: #b21f2d;
@@ -1611,6 +1617,7 @@ input[type=button].btn-block {
1611
1617
  border-color: #dae0e5;
1612
1618
  color: #212529;
1613
1619
  }
1620
+
1614
1621
  .btn-light:active {
1615
1622
  background-color: #dae0e5;
1616
1623
  border-color: #d3d9df;
@@ -1646,6 +1653,7 @@ input[type=button].btn-block {
1646
1653
  border-color: #1d2124;
1647
1654
  color: #fff;
1648
1655
  }
1656
+
1649
1657
  .btn-dark:active {
1650
1658
  background-color: #1d2124;
1651
1659
  border-color: #171a1d;
@@ -1680,9 +1688,7 @@ input[type=button].btn-block {
1680
1688
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
1681
1689
  text-decoration: none;
1682
1690
  }
1683
- .btn-link:active:focus-visible, .c-prefers-focus .btn-link:active:focus {
1684
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
1685
- }
1691
+
1686
1692
  .btn-link:disabled, .btn-link.disabled {
1687
1693
  box-shadow: none;
1688
1694
  color: #6c757d;
@@ -1704,6 +1710,7 @@ input[type=button].btn-block {
1704
1710
  background-color: rgba(0, 105, 217, 0.06);
1705
1711
  color: #0069d9;
1706
1712
  }
1713
+
1707
1714
  .btn-translucent.btn-primary:active {
1708
1715
  background-color: rgba(0, 105, 217, 0.08);
1709
1716
  color: #0069d9;
@@ -1729,6 +1736,7 @@ input[type=button].btn-block {
1729
1736
  background-color: rgba(130, 142, 154, 0.06);
1730
1737
  color: #6c757d;
1731
1738
  }
1739
+
1732
1740
  .btn-translucent.btn-secondary:active {
1733
1741
  background-color: rgba(130, 142, 154, 0.08);
1734
1742
  color: #6c757d;
@@ -1754,6 +1762,7 @@ input[type=button].btn-block {
1754
1762
  background-color: rgba(19, 132, 150, 0.06);
1755
1763
  color: #138496;
1756
1764
  }
1765
+
1757
1766
  .btn-translucent.btn-info:active, .btn-beta:active {
1758
1767
  background-color: rgba(19, 132, 150, 0.08);
1759
1768
  color: #138496;
@@ -1779,6 +1788,7 @@ input[type=button].btn-block {
1779
1788
  background-color: rgba(33, 136, 56, 0.06);
1780
1789
  color: #218838;
1781
1790
  }
1791
+
1782
1792
  .btn-translucent.btn-success:active {
1783
1793
  background-color: rgba(33, 136, 56, 0.08);
1784
1794
  color: #218838;
@@ -1804,6 +1814,7 @@ input[type=button].btn-block {
1804
1814
  background-color: rgba(224, 168, 0, 0.06);
1805
1815
  color: #e0a800;
1806
1816
  }
1817
+
1807
1818
  .btn-translucent.btn-warning:active {
1808
1819
  background-color: rgba(224, 168, 0, 0.08);
1809
1820
  color: #e0a800;
@@ -1829,6 +1840,7 @@ input[type=button].btn-block {
1829
1840
  background-color: rgba(200, 35, 51, 0.06);
1830
1841
  color: #c82333;
1831
1842
  }
1843
+
1832
1844
  .btn-translucent.btn-danger:active {
1833
1845
  background-color: rgba(200, 35, 51, 0.08);
1834
1846
  color: #c82333;
@@ -1854,6 +1866,7 @@ input[type=button].btn-block {
1854
1866
  background-color: rgba(168, 210, 255, 0.06);
1855
1867
  color: #75b8ff;
1856
1868
  }
1869
+
1857
1870
  .clay-dark.btn-translucent.btn-primary:active, .clay-dark .btn-translucent.btn-primary:active {
1858
1871
  background-color: rgba(168, 210, 255, 0.08);
1859
1872
  color: #75b8ff;
@@ -1879,6 +1892,7 @@ input[type=button].btn-block {
1879
1892
  background-color: rgba(135, 226, 240, 0.06);
1880
1893
  color: #5ad7ea;
1881
1894
  }
1895
+
1882
1896
  .clay-dark.btn-translucent.btn-info:active, .clay-dark .btn-translucent.btn-info:active, .btn-beta-dark:active {
1883
1897
  background-color: rgba(135, 226, 240, 0.08);
1884
1898
  color: #5ad7ea;
@@ -1904,6 +1918,7 @@ input[type=button].btn-block {
1904
1918
  background-color: rgba(146, 229, 165, 0.06);
1905
1919
  color: #69db83;
1906
1920
  }
1921
+
1907
1922
  .clay-dark.btn-translucent.btn-success:active, .clay-dark .btn-translucent.btn-success:active {
1908
1923
  background-color: rgba(146, 229, 165, 0.08);
1909
1924
  color: #69db83;
@@ -1929,6 +1944,7 @@ input[type=button].btn-block {
1929
1944
  background-color: rgba(255, 235, 175, 0.06);
1930
1945
  color: #ffde7c;
1931
1946
  }
1947
+
1932
1948
  .clay-dark.btn-translucent.btn-warning:active, .clay-dark .btn-translucent.btn-warning:active {
1933
1949
  background-color: rgba(255, 235, 175, 0.08);
1934
1950
  color: #ffde7c;
@@ -1954,6 +1970,7 @@ input[type=button].btn-block {
1954
1970
  background-color: rgba(245, 196, 201, 0.06);
1955
1971
  color: #ed99a1;
1956
1972
  }
1973
+
1957
1974
  .clay-dark.btn-translucent.btn-danger:active, .clay-dark .btn-translucent.btn-danger:active {
1958
1975
  background-color: rgba(245, 196, 201, 0.08);
1959
1976
  color: #ed99a1;
@@ -1978,14 +1995,12 @@ input[type=button].btn-block {
1978
1995
  .btn-outline-primary.focus, .btn-outline-primary:focus-visible, .c-prefers-focus .btn-outline-primary:focus {
1979
1996
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
1980
1997
  }
1998
+
1981
1999
  .btn-outline-primary:active {
1982
2000
  background-color: #007bff;
1983
2001
  border-color: #007bff;
1984
2002
  color: #fff;
1985
2003
  }
1986
- .btn-outline-primary:active:focus-visible, .c-prefers-focus .btn-outline-primary:active:focus {
1987
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
1988
- }
1989
2004
  .btn-outline-primary.active {
1990
2005
  background-color: #007bff;
1991
2006
  border-color: #007bff;
@@ -2012,14 +2027,12 @@ input[type=button].btn-block {
2012
2027
  .btn-outline-secondary.focus, .btn-outline-secondary:focus-visible, .c-prefers-focus .btn-outline-secondary:focus {
2013
2028
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
2014
2029
  }
2030
+
2015
2031
  .btn-outline-secondary:active {
2016
2032
  background-color: #6c757d;
2017
2033
  border-color: #6c757d;
2018
2034
  color: #fff;
2019
2035
  }
2020
- .btn-outline-secondary:active:focus-visible, .c-prefers-focus .btn-outline-secondary:active:focus {
2021
- box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
2022
- }
2023
2036
  .btn-outline-secondary.active {
2024
2037
  background-color: #6c757d;
2025
2038
  border-color: #6c757d;
@@ -2046,14 +2059,12 @@ input[type=button].btn-block {
2046
2059
  .btn-outline-success.focus, .btn-outline-success:focus-visible, .c-prefers-focus .btn-outline-success:focus {
2047
2060
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
2048
2061
  }
2062
+
2049
2063
  .btn-outline-success:active {
2050
2064
  background-color: #28a745;
2051
2065
  border-color: #28a745;
2052
2066
  color: #fff;
2053
2067
  }
2054
- .btn-outline-success:active:focus-visible, .c-prefers-focus .btn-outline-success:active:focus {
2055
- box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
2056
- }
2057
2068
  .btn-outline-success.active {
2058
2069
  background-color: #28a745;
2059
2070
  border-color: #28a745;
@@ -2080,14 +2091,12 @@ input[type=button].btn-block {
2080
2091
  .btn-outline-info.focus, .btn-outline-info:focus-visible, .c-prefers-focus .btn-outline-info:focus {
2081
2092
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
2082
2093
  }
2094
+
2083
2095
  .btn-outline-info:active {
2084
2096
  background-color: #17a2b8;
2085
2097
  border-color: #17a2b8;
2086
2098
  color: #fff;
2087
2099
  }
2088
- .btn-outline-info:active:focus-visible, .c-prefers-focus .btn-outline-info:active:focus {
2089
- box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
2090
- }
2091
2100
  .btn-outline-info.active {
2092
2101
  background-color: #17a2b8;
2093
2102
  border-color: #17a2b8;
@@ -2114,14 +2123,12 @@ input[type=button].btn-block {
2114
2123
  .btn-outline-warning.focus, .btn-outline-warning:focus-visible, .c-prefers-focus .btn-outline-warning:focus {
2115
2124
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
2116
2125
  }
2126
+
2117
2127
  .btn-outline-warning:active {
2118
2128
  background-color: #ffc107;
2119
2129
  border-color: #ffc107;
2120
2130
  color: #212529;
2121
2131
  }
2122
- .btn-outline-warning:active:focus-visible, .c-prefers-focus .btn-outline-warning:active:focus {
2123
- box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
2124
- }
2125
2132
  .btn-outline-warning.active {
2126
2133
  background-color: #ffc107;
2127
2134
  border-color: #ffc107;
@@ -2148,14 +2155,12 @@ input[type=button].btn-block {
2148
2155
  .btn-outline-danger.focus, .btn-outline-danger:focus-visible, .c-prefers-focus .btn-outline-danger:focus {
2149
2156
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
2150
2157
  }
2158
+
2151
2159
  .btn-outline-danger:active {
2152
2160
  background-color: #dc3545;
2153
2161
  border-color: #dc3545;
2154
2162
  color: #fff;
2155
2163
  }
2156
- .btn-outline-danger:active:focus-visible, .c-prefers-focus .btn-outline-danger:active:focus {
2157
- box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
2158
- }
2159
2164
  .btn-outline-danger.active {
2160
2165
  background-color: #dc3545;
2161
2166
  border-color: #dc3545;
@@ -2182,14 +2187,12 @@ input[type=button].btn-block {
2182
2187
  .btn-outline-light.focus, .btn-outline-light:focus-visible, .c-prefers-focus .btn-outline-light:focus {
2183
2188
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
2184
2189
  }
2190
+
2185
2191
  .btn-outline-light:active {
2186
2192
  background-color: #f8f9fa;
2187
2193
  border-color: #f8f9fa;
2188
2194
  color: #212529;
2189
2195
  }
2190
- .btn-outline-light:active:focus-visible, .c-prefers-focus .btn-outline-light:active:focus {
2191
- box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
2192
- }
2193
2196
  .btn-outline-light.active {
2194
2197
  background-color: #f8f9fa;
2195
2198
  border-color: #f8f9fa;
@@ -2216,14 +2219,12 @@ input[type=button].btn-block {
2216
2219
  .btn-outline-dark.focus, .btn-outline-dark:focus-visible, .c-prefers-focus .btn-outline-dark:focus {
2217
2220
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
2218
2221
  }
2222
+
2219
2223
  .btn-outline-dark:active {
2220
2224
  background-color: #343a40;
2221
2225
  border-color: #343a40;
2222
2226
  color: #fff;
2223
2227
  }
2224
- .btn-outline-dark:active:focus-visible, .c-prefers-focus .btn-outline-dark:active:focus {
2225
- box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
2226
- }
2227
2228
  .btn-outline-dark.active {
2228
2229
  background-color: #343a40;
2229
2230
  border-color: #343a40;
@@ -2247,6 +2248,7 @@ input[type=button].btn-block {
2247
2248
  .btn-outline-borderless.focus, .btn-outline-borderless:focus-visible, .c-prefers-focus .btn-outline-borderless:focus {
2248
2249
  border-color: transparent;
2249
2250
  }
2251
+
2250
2252
  .btn-outline-borderless:disabled, .btn-outline-borderless.disabled {
2251
2253
  border-color: transparent;
2252
2254
  }
@@ -2326,6 +2328,8 @@ input[type=button].btn-block {
2326
2328
  padding-left: calc(30px * 0.5);
2327
2329
  padding-right: calc(30px * 0.5);
2328
2330
  width: 100%;
2331
+ max-width: 1392px;
2332
+ max-width: 1872px;
2329
2333
  }
2330
2334
  @media (min-width: 576px) {
2331
2335
  .container {
@@ -2348,7 +2352,7 @@ input[type=button].btn-block {
2348
2352
  }
2349
2353
  }
2350
2354
 
2351
- .container-xl, .container-lg, .container-md, .container-sm, .container-fluid {
2355
+ .container-xxxl, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-fluid {
2352
2356
  margin-left: auto;
2353
2357
  margin-right: auto;
2354
2358
  padding-left: calc(30px * 0.5);
@@ -3467,6 +3471,12 @@ input[type=button].btn-block {
3467
3471
  .container-fluid-max-xl {
3468
3472
  max-width: 1140px;
3469
3473
  }
3474
+ .container-fluid-max-xxl {
3475
+ max-width: 1392px;
3476
+ }
3477
+ .container-fluid-max-xxxl {
3478
+ max-width: 1872px;
3479
+ }
3470
3480
 
3471
3481
  .container-no-gutters {
3472
3482
  padding-left: 0;
@@ -3654,6 +3664,7 @@ input[type=button].btn-block {
3654
3664
  .c-prefers-focus .alert-link.btn-unstyled:focus {
3655
3665
  text-decoration: underline;
3656
3666
  }
3667
+
3657
3668
  .alert-indicator {
3658
3669
  font-size: 1.25rem;
3659
3670
  line-height: 1;
@@ -4193,6 +4204,7 @@ input[type=button].btn-block {
4193
4204
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
4194
4205
  outline: 0;
4195
4206
  }
4207
+
4196
4208
  .badge a {
4197
4209
  color: #fff;
4198
4210
  text-decoration: underline;
@@ -4203,6 +4215,7 @@ input[type=button].btn-block {
4203
4215
  .badge a.focus, .badge a:focus-visible, .c-prefers-focus .badge a:focus {
4204
4216
  text-decoration: none;
4205
4217
  }
4218
+
4206
4219
  .badge > .c-inner {
4207
4220
  margin-bottom: -0.25em;
4208
4221
  margin-left: -0.4em;
@@ -4321,6 +4334,7 @@ input[type=button].btn-block {
4321
4334
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
4322
4335
  color: #fff;
4323
4336
  }
4337
+
4324
4338
  .badge-secondary {
4325
4339
  background-color: #6c757d;
4326
4340
  color: #fff;
@@ -4334,6 +4348,7 @@ input[type=button].btn-block {
4334
4348
  color: #fff;
4335
4349
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
4336
4350
  }
4351
+
4337
4352
  .badge-success {
4338
4353
  background-color: #28a745;
4339
4354
  color: #fff;
@@ -4347,6 +4362,7 @@ input[type=button].btn-block {
4347
4362
  color: #fff;
4348
4363
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
4349
4364
  }
4365
+
4350
4366
  .badge-info {
4351
4367
  background-color: #17a2b8;
4352
4368
  color: #fff;
@@ -4360,6 +4376,7 @@ input[type=button].btn-block {
4360
4376
  color: #fff;
4361
4377
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
4362
4378
  }
4379
+
4363
4380
  .badge-warning {
4364
4381
  background-color: #ffc107;
4365
4382
  color: #212529;
@@ -4373,6 +4390,7 @@ input[type=button].btn-block {
4373
4390
  color: #212529;
4374
4391
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
4375
4392
  }
4393
+
4376
4394
  .badge-danger {
4377
4395
  background-color: #dc3545;
4378
4396
  color: #fff;
@@ -4386,6 +4404,7 @@ input[type=button].btn-block {
4386
4404
  color: #fff;
4387
4405
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
4388
4406
  }
4407
+
4389
4408
  .badge-light {
4390
4409
  background-color: #f8f9fa;
4391
4410
  color: #212529;
@@ -4399,6 +4418,7 @@ input[type=button].btn-block {
4399
4418
  color: #212529;
4400
4419
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
4401
4420
  }
4421
+
4402
4422
  .badge-dark {
4403
4423
  background-color: #343a40;
4404
4424
  color: #fff;
@@ -4412,6 +4432,7 @@ input[type=button].btn-block {
4412
4432
  color: #fff;
4413
4433
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
4414
4434
  }
4435
+
4415
4436
  .badge-translucent.badge-primary {
4416
4437
  background-color: rgba(0, 105, 217, 0.04);
4417
4438
  border-color: transparent;
@@ -4485,6 +4506,7 @@ input[type=button].btn-block {
4485
4506
  color: #0056b3;
4486
4507
  text-decoration: underline;
4487
4508
  }
4509
+
4488
4510
  .breadcrumb-toggle {
4489
4511
  color: #007bff;
4490
4512
  }
@@ -4537,6 +4559,7 @@ input[type=button].btn-block {
4537
4559
  .breadcrumb-item .dropdown-toggle.focus, .breadcrumb-item .dropdown-toggle:focus-visible, .c-prefers-focus .breadcrumb-item .dropdown-toggle:focus {
4538
4560
  text-decoration: none;
4539
4561
  }
4562
+
4540
4563
  .breadcrumb-text-truncate {
4541
4564
  display: inline-block;
4542
4565
  max-width: 17.875rem;
@@ -4797,6 +4820,7 @@ input[type=button].btn-block {
4797
4820
  color: inherit;
4798
4821
  text-decoration: none;
4799
4822
  }
4823
+
4800
4824
  .label .sticker {
4801
4825
  border-radius: 100px;
4802
4826
  height: 0.875em;
@@ -4931,6 +4955,7 @@ input[type=button].btn-block {
4931
4955
  [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 {
4932
4956
  color: #0062cc;
4933
4957
  }
4958
+
4934
4959
  .label-primary a:hover, .label-primary a.hover,
4935
4960
  .label-primary .btn-unstyled:hover,
4936
4961
  .label-primary .btn-unstyled.hover {
@@ -4955,6 +4980,7 @@ input[type=button].btn-block {
4955
4980
  [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 {
4956
4981
  color: #545b62;
4957
4982
  }
4983
+
4958
4984
  .label-secondary a:hover, .label-secondary a.hover,
4959
4985
  .label-secondary .btn-unstyled:hover,
4960
4986
  .label-secondary .btn-unstyled.hover {
@@ -4979,6 +5005,7 @@ input[type=button].btn-block {
4979
5005
  [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 {
4980
5006
  color: #1e7e34;
4981
5007
  }
5008
+
4982
5009
  .label-success a:hover, .label-success a.hover,
4983
5010
  .label-success .btn-unstyled:hover,
4984
5011
  .label-success .btn-unstyled.hover {
@@ -5003,6 +5030,7 @@ input[type=button].btn-block {
5003
5030
  [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 {
5004
5031
  color: #117a8b;
5005
5032
  }
5033
+
5006
5034
  .label-info a:hover, .label-info a.hover,
5007
5035
  .label-info .btn-unstyled:hover,
5008
5036
  .label-info .btn-unstyled.hover {
@@ -5027,6 +5055,7 @@ input[type=button].btn-block {
5027
5055
  [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 {
5028
5056
  color: #d39e00;
5029
5057
  }
5058
+
5030
5059
  .label-warning a:hover, .label-warning a.hover,
5031
5060
  .label-warning .btn-unstyled:hover,
5032
5061
  .label-warning .btn-unstyled.hover {
@@ -5051,6 +5080,7 @@ input[type=button].btn-block {
5051
5080
  [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 {
5052
5081
  color: #bd2130;
5053
5082
  }
5083
+
5054
5084
  .label-danger a:hover, .label-danger a.hover,
5055
5085
  .label-danger .btn-unstyled:hover,
5056
5086
  .label-danger .btn-unstyled.hover {
@@ -5075,6 +5105,7 @@ input[type=button].btn-block {
5075
5105
  [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 {
5076
5106
  color: #1d2124;
5077
5107
  }
5108
+
5078
5109
  .label-dark a:hover, .label-dark a.hover,
5079
5110
  .label-dark .btn-unstyled:hover,
5080
5111
  .label-dark .btn-unstyled.hover {
@@ -5099,6 +5130,7 @@ input[type=button].btn-block {
5099
5130
  [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 {
5100
5131
  color: #dae0e5;
5101
5132
  }
5133
+
5102
5134
  .label-light a:hover, .label-light a.hover,
5103
5135
  .label-light .btn-unstyled:hover,
5104
5136
  .label-light .btn-unstyled.hover {
@@ -5646,6 +5678,7 @@ input[type=button].btn-block {
5646
5678
  .card-text:last-child {
5647
5679
  margin-bottom: 0;
5648
5680
  }
5681
+
5649
5682
  .card-link {
5650
5683
  color: #007bff;
5651
5684
  }
@@ -6110,9 +6143,6 @@ input[type=button].btn-block {
6110
6143
  .form-check-card .custom-control .custom-control-input:checked ~ .card {
6111
6144
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6112
6145
  }
6113
- .form-check-card .custom-control .custom-control-input:checked ~ .card {
6114
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6115
- }
6116
6146
  .form-check-card .form-check-input:checked ~ .card {
6117
6147
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6118
6148
  }
@@ -6148,6 +6178,7 @@ input[type=button].btn-block {
6148
6178
  top: auto;
6149
6179
  transform: none;
6150
6180
  }
6181
+
6151
6182
  .form-check-bottom-right .form-check-input {
6152
6183
  bottom: 1rem;
6153
6184
  left: auto;
@@ -6171,6 +6202,7 @@ input[type=button].btn-block {
6171
6202
  top: auto;
6172
6203
  transform: none;
6173
6204
  }
6205
+
6174
6206
  .form-check-middle-left .form-check-input {
6175
6207
  left: 1rem;
6176
6208
  margin-top: 0;
@@ -6191,6 +6223,7 @@ input[type=button].btn-block {
6191
6223
  top: 50%;
6192
6224
  transform: translateY(-50%);
6193
6225
  }
6226
+
6194
6227
  .form-check-middle-right .form-check-input {
6195
6228
  left: auto;
6196
6229
  margin-top: 0;
@@ -6214,6 +6247,7 @@ input[type=button].btn-block {
6214
6247
  top: 50%;
6215
6248
  transform: translateY(-50%);
6216
6249
  }
6250
+
6217
6251
  .form-check-top-left .form-check-input {
6218
6252
  left: 1rem;
6219
6253
  opacity: 1;
@@ -6231,6 +6265,7 @@ input[type=button].btn-block {
6231
6265
  top: 1rem;
6232
6266
  transform: none;
6233
6267
  }
6268
+
6234
6269
  .form-check-top-right .form-check-input {
6235
6270
  left: auto;
6236
6271
  opacity: 1;
@@ -6251,6 +6286,7 @@ input[type=button].btn-block {
6251
6286
  top: 1rem;
6252
6287
  transform: none;
6253
6288
  }
6289
+
6254
6290
  .card-page.card-page-equal-height .card-page-item,
6255
6291
  .card-page.card-page-equal-height .card-page-item-asset,
6256
6292
  .card-page.card-page-equal-height .card-page-item-directory {
@@ -6396,6 +6432,7 @@ input[type=button].btn-block {
6396
6432
  border-color: #80bdff;
6397
6433
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
6398
6434
  }
6435
+
6399
6436
  .card-interactive:active, .card-interactive.active {
6400
6437
  background-color: #e9ecef;
6401
6438
  }
@@ -6437,6 +6474,7 @@ input[type=button].btn-block {
6437
6474
  .card-interactive-primary.focus, .card-interactive-primary:focus-visible, .c-prefers-focus .card-interactive-primary:focus {
6438
6475
  background-color: #f8f9fa;
6439
6476
  }
6477
+
6440
6478
  .card-interactive-primary:active, .card-interactive-primary.active {
6441
6479
  background-color: #e9ecef;
6442
6480
  }
@@ -6670,6 +6708,7 @@ input[type=button].btn-block {
6670
6708
  color: #16181b;
6671
6709
  text-decoration: none;
6672
6710
  }
6711
+
6673
6712
  .dropdown-item:active {
6674
6713
  background-color: #007bff;
6675
6714
  color: #fff;
@@ -6719,6 +6758,7 @@ input[type=button].btn-block {
6719
6758
  width: auto;
6720
6759
  }
6721
6760
  .dropdown-item.autofit-row {
6761
+ align-items: center;
6722
6762
  padding-left: calc(1.5rem - 0.25rem);
6723
6763
  padding-right: calc(1.5rem - 0.25rem);
6724
6764
  }
@@ -6727,6 +6767,7 @@ input[type=button].btn-block {
6727
6767
  padding-right: 0.25rem;
6728
6768
  }
6729
6769
  .dropdown-item .autofit-row {
6770
+ align-items: center;
6730
6771
  margin-left: -0.25rem;
6731
6772
  margin-right: -0.25rem;
6732
6773
  width: auto;
@@ -6744,6 +6785,17 @@ input[type=button].btn-block {
6744
6785
  .dropdown-item .custom-control-label {
6745
6786
  font-weight: 400;
6746
6787
  }
6788
+ .dropdown-item .inline-item {
6789
+ line-height: 1;
6790
+ }
6791
+ .dropdown-item .inline-item .lexicon-icon {
6792
+ font-size: 1rem;
6793
+ margin-top: 0;
6794
+ }
6795
+ .dropdown-item .label {
6796
+ margin-bottom: 0;
6797
+ margin-top: 0.3125rem;
6798
+ }
6747
6799
  .dropdown-item .form-check {
6748
6800
  margin-bottom: 0;
6749
6801
  }
@@ -6877,10 +6929,6 @@ input[type=button].btn-block {
6877
6929
  margin-top: -0.3125rem;
6878
6930
  width: auto;
6879
6931
  }
6880
- .dropdown-menu-select.dropdown-menu .dropdown-item.autofit-row {
6881
- padding-left: 1.5rem;
6882
- padding-right: 0.5rem;
6883
- }
6884
6932
  .dropdown-menu-select.dropdown-menu .dropdown-item-scroll {
6885
6933
  font-size: 1rem;
6886
6934
  height: 2rem;
@@ -6899,6 +6947,7 @@ input[type=button].btn-block {
6899
6947
  background-image: none;
6900
6948
  color: #16181b;
6901
6949
  }
6950
+
6902
6951
  .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active {
6903
6952
  background-color: #007bff;
6904
6953
  background-image: none;
@@ -6957,12 +7006,14 @@ input[type=button].btn-block {
6957
7006
  }
6958
7007
  .dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-start .dropdown-item-indicator-start {
6959
7008
  left: 0.5rem;
6960
- top: 0.5rem;
6961
7009
  }
6962
7010
  .dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-end .dropdown-item-indicator-end {
6963
7011
  right: 0.5rem;
6964
- top: 0.5rem;
6965
7012
  }
7013
+ .dropdown-menu-select.dropdown-menu .inline-scroller {
7014
+ max-height: 224px;
7015
+ }
7016
+
6966
7017
  .dropdown-menu-select.dropdown-menu-height-lg .inline-scroller {
6967
7018
  max-height: 432px;
6968
7019
  }
@@ -7129,6 +7180,7 @@ input[type=button].btn-block {
7129
7180
  width: 1rem;
7130
7181
  }
7131
7182
  .dropdown-item-indicator-start .lexicon-icon {
7183
+ font-size: 1rem;
7132
7184
  margin-top: 0;
7133
7185
  }
7134
7186
 
@@ -7147,6 +7199,7 @@ input[type=button].btn-block {
7147
7199
  color: inherit;
7148
7200
  text-decoration: inherit;
7149
7201
  }
7202
+
7150
7203
  .dropdown-item-indicator-text-start > .c-inner {
7151
7204
  margin-left: -2rem;
7152
7205
  }
@@ -7184,6 +7237,7 @@ input[type=button].btn-block {
7184
7237
  width: 1rem;
7185
7238
  }
7186
7239
  .dropdown-item-indicator-end .lexicon-icon {
7240
+ font-size: 16px;
7187
7241
  margin-top: 0;
7188
7242
  }
7189
7243
 
@@ -7202,6 +7256,7 @@ input[type=button].btn-block {
7202
7256
  color: inherit;
7203
7257
  text-decoration: inherit;
7204
7258
  }
7259
+
7205
7260
  .dropdown-item-indicator-text-end > .c-inner {
7206
7261
  margin-right: -2rem;
7207
7262
  }
@@ -7215,6 +7270,7 @@ input[type=button].btn-block {
7215
7270
  transform: none !important;
7216
7271
  will-change: auto !important;
7217
7272
  }
7273
+
7218
7274
  .dropdown-menu-top-right {
7219
7275
  bottom: 100% !important;
7220
7276
  left: auto !important;
@@ -7225,6 +7281,7 @@ input[type=button].btn-block {
7225
7281
  transform: none !important;
7226
7282
  will-change: auto !important;
7227
7283
  }
7284
+
7228
7285
  .dropdown-menu-top-center {
7229
7286
  bottom: 100% !important;
7230
7287
  left: 50% !important;
@@ -7235,6 +7292,7 @@ input[type=button].btn-block {
7235
7292
  transform: translateX(-50%) !important;
7236
7293
  will-change: auto !important;
7237
7294
  }
7295
+
7238
7296
  .dropdown-menu-center {
7239
7297
  bottom: auto !important;
7240
7298
  left: 50% !important;
@@ -7243,6 +7301,7 @@ input[type=button].btn-block {
7243
7301
  transform: translateX(-50%) !important;
7244
7302
  will-change: auto !important;
7245
7303
  }
7304
+
7246
7305
  .dropdown-menu-left-side {
7247
7306
  bottom: auto !important;
7248
7307
  left: auto !important;
@@ -7253,6 +7312,7 @@ input[type=button].btn-block {
7253
7312
  transform: none !important;
7254
7313
  will-change: auto !important;
7255
7314
  }
7315
+
7256
7316
  .dropdown-menu-left-side-bottom {
7257
7317
  bottom: 0 !important;
7258
7318
  left: auto !important;
@@ -7263,6 +7323,7 @@ input[type=button].btn-block {
7263
7323
  transform: none !important;
7264
7324
  will-change: auto !important;
7265
7325
  }
7326
+
7266
7327
  .dropdown-menu-left-side-middle {
7267
7328
  bottom: auto !important;
7268
7329
  left: auto !important;
@@ -7273,6 +7334,7 @@ input[type=button].btn-block {
7273
7334
  transform: translate(0, -50%) !important;
7274
7335
  will-change: auto !important;
7275
7336
  }
7337
+
7276
7338
  .dropdown-menu-right-side {
7277
7339
  bottom: auto !important;
7278
7340
  left: 100% !important;
@@ -7283,6 +7345,7 @@ input[type=button].btn-block {
7283
7345
  transform: none !important;
7284
7346
  will-change: auto !important;
7285
7347
  }
7348
+
7286
7349
  .dropdown-menu-right-side-bottom {
7287
7350
  bottom: 0 !important;
7288
7351
  left: 100% !important;
@@ -7293,6 +7356,7 @@ input[type=button].btn-block {
7293
7356
  transform: none !important;
7294
7357
  will-change: auto !important;
7295
7358
  }
7359
+
7296
7360
  .dropdown-menu-right-side-middle {
7297
7361
  bottom: auto !important;
7298
7362
  left: 100% !important;
@@ -7303,6 +7367,7 @@ input[type=button].btn-block {
7303
7367
  transform: translate(0, -50%) !important;
7304
7368
  will-change: auto !important;
7305
7369
  }
7370
+
7306
7371
  .dropdown-full .dropdown-menu,
7307
7372
  .dropdown-wide .dropdown-menu {
7308
7373
  max-width: none;
@@ -7336,6 +7401,7 @@ input[type=button].btn-block {
7336
7401
  .dropdown-menu-width-shrink {
7337
7402
  min-width: 0;
7338
7403
  }
7404
+
7339
7405
  .dropdown-menu-width-full {
7340
7406
  left: 12px !important;
7341
7407
  right: 12px !important;
@@ -7376,6 +7442,7 @@ input[type=button].btn-block {
7376
7442
  max-width: none;
7377
7443
  width: 100%;
7378
7444
  }
7445
+
7379
7446
  .nav-item.dropdown-full {
7380
7447
  position: static;
7381
7448
  }
@@ -8328,6 +8395,7 @@ textarea.form-control-lg,
8328
8395
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8329
8396
  outline: 0;
8330
8397
  }
8398
+
8331
8399
  .c-link.text-secondary {
8332
8400
  color: #212529 !important;
8333
8401
  }
@@ -8337,6 +8405,7 @@ textarea.form-control-lg,
8337
8405
  .c-link.text-secondary.focus, .c-link.text-secondary:focus-visible, .c-prefers-focus .c-link.text-secondary:focus {
8338
8406
  color: #000 !important;
8339
8407
  }
8408
+
8340
8409
  .c-link.text-tertiary {
8341
8410
  color: #212529 !important;
8342
8411
  }
@@ -8405,6 +8474,7 @@ button.link-outline {
8405
8474
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8406
8475
  outline: 0;
8407
8476
  }
8477
+
8408
8478
  .link-outline:disabled, .link-outline.disabled {
8409
8479
  box-shadow: none;
8410
8480
  }
@@ -8563,6 +8633,7 @@ button.link-outline {
8563
8633
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
8564
8634
  outline: 0;
8565
8635
  }
8636
+
8566
8637
  .component-action:active {
8567
8638
  background-color: #6c757d;
8568
8639
  color: #fff;
@@ -9007,9 +9078,7 @@ button.link-outline {
9007
9078
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
9008
9079
  color: #000;
9009
9080
  }
9010
- .clay-color-dropdown-menu .component-action:active:focus-visible, .c-prefers-focus .clay-color-dropdown-menu .component-action:active:focus {
9011
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
9012
- }
9081
+
9013
9082
  .clay-color-dropdown-menu .form-control {
9014
9083
  font-size: 0.875rem;
9015
9084
  height: 2rem;
@@ -9083,9 +9152,7 @@ button.link-outline {
9083
9152
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
9084
9153
  outline: 0;
9085
9154
  }
9086
- .clay-color-pointer:active:focus-visible, .c-prefers-focus .clay-color-pointer:active:focus {
9087
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
9088
- }
9155
+
9089
9156
  .clay-color-pointer .c-inner {
9090
9157
  margin-bottom: 0;
9091
9158
  margin-left: 0;
@@ -9105,6 +9172,7 @@ button.link-outline {
9105
9172
  font-weight: 500;
9106
9173
  max-width: calc(100% - 2rem);
9107
9174
  }
9175
+
9108
9176
  .clay-color-footer {
9109
9177
  margin-bottom: 1rem;
9110
9178
  }
@@ -9561,6 +9629,7 @@ label.custom-control-label {
9561
9629
  border-color: #80bdff;
9562
9630
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
9563
9631
  }
9632
+
9564
9633
  .custom-control-input:active ~ .custom-control-label::before {
9565
9634
  background-color: #027cff;
9566
9635
  border-color: #027cff;
@@ -9581,10 +9650,8 @@ label.custom-control-label {
9581
9650
  border-color: #007bff;
9582
9651
  color: #fff;
9583
9652
  }
9584
- .custom-control-input:checked ~ .custom-control-label::before {
9585
- background-color: #007bff;
9586
- border-color: #007bff;
9587
- color: #fff;
9653
+ .custom-control-input:checked[disabled], .custom-control-input:checked:disabled {
9654
+ cursor: not-allowed;
9588
9655
  }
9589
9656
  .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-control-input:checked:disabled ~ .custom-control-label::before {
9590
9657
  background-color: #e9ecef;
@@ -9594,15 +9661,13 @@ label.custom-control-label {
9594
9661
  background-color: #fff;
9595
9662
  border-color: #adb5bd;
9596
9663
  }
9664
+
9597
9665
  .custom-checkbox .custom-control-input ~ .custom-control-label::before {
9598
9666
  border-radius: 0.25rem;
9599
9667
  }
9600
9668
  .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
9601
9669
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='8'%20height='8'%20viewBox='0%200%208%208'%3E%3Cpath%20fill='%23fff'%20d='M6.564.75l-3.59%203.612-1.538-1.55L0%204.26l2.974%202.99L8%202.193z'/%3E%3C/svg%3E");
9602
9670
  }
9603
- .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
9604
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='8'%20height='8'%20viewBox='0%200%208%208'%3E%3Cpath%20fill='%23fff'%20d='M6.564.75l-3.59%203.612-1.538-1.55L0%204.26l2.974%202.99L8%202.193z'/%3E%3C/svg%3E");
9605
- }
9606
9671
  .custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::before {
9607
9672
  background-color: rgba(0, 123, 255, 0.5);
9608
9673
  }
@@ -9629,18 +9694,17 @@ label.custom-control-label {
9629
9694
  .custom-checkbox .custom-control-input:indeterminate[readonly] ~ .custom-control-label::after {
9630
9695
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='4'%20height='4'%20viewBox='0%200%204%204'%3E%3Cpath%20stroke='%23343a40'%20d='M0%202h4'/%3E%3C/svg%3E");
9631
9696
  }
9697
+
9632
9698
  .custom-radio .custom-control-input ~ .custom-control-label::before {
9633
9699
  border-radius: 50%;
9634
9700
  }
9635
9701
  .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
9636
9702
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='-4%20-4%208%208'%3E%3Ccircle%20r='3'%20fill='%23fff'/%3E%3C/svg%3E");
9637
9703
  }
9638
- .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
9639
- background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='12'%20height='12'%20viewBox='-4%20-4%208%208'%3E%3Ccircle%20r='3'%20fill='%23fff'/%3E%3C/svg%3E");
9640
- }
9641
9704
  .custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::before {
9642
9705
  background-color: rgba(0, 123, 255, 0.5);
9643
9706
  }
9707
+
9644
9708
  .custom-control-outside label {
9645
9709
  display: block;
9646
9710
  padding-left: calc( 1rem + 0.5rem );
@@ -9651,6 +9715,7 @@ label.custom-control-label {
9651
9715
  .custom-control-outside .custom-control-input ~ .custom-control-label::before {
9652
9716
  position: absolute;
9653
9717
  }
9718
+
9654
9719
  .custom-control-inline {
9655
9720
  display: inline-flex;
9656
9721
  }
@@ -10158,9 +10223,7 @@ label.custom-control-label {
10158
10223
  .date-picker-nav .nav-btn.focus, .date-picker-nav .nav-btn:focus-visible, .c-prefers-focus .date-picker-nav .nav-btn:focus {
10159
10224
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
10160
10225
  }
10161
- .date-picker-nav .nav-btn:active:focus-visible, .c-prefers-focus .date-picker-nav .nav-btn:active:focus {
10162
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
10163
- }
10226
+
10164
10227
  .date-picker-nav .nav-btn:disabled, .date-picker-nav .nav-btn.disabled {
10165
10228
  background-color: transparent;
10166
10229
  box-shadow: none;
@@ -10385,13 +10448,11 @@ label.custom-control-label {
10385
10448
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
10386
10449
  outline: 0;
10387
10450
  }
10451
+
10388
10452
  .date-picker-date:active {
10389
10453
  background-color: #007bff;
10390
10454
  color: #fff;
10391
10455
  }
10392
- .date-picker-date:active:focus-visible, .c-prefers-focus .date-picker-date:active:focus {
10393
- box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
10394
- }
10395
10456
  .date-picker-date.active {
10396
10457
  background-color: #007bff;
10397
10458
  color: #fff;
@@ -10411,6 +10472,7 @@ label.custom-control-label {
10411
10472
  .previous-month-date.focus, .previous-month-date:focus-visible, .c-prefers-focus .previous-month-date:focus {
10412
10473
  opacity: 1;
10413
10474
  }
10475
+
10414
10476
  .previous-month-date:active {
10415
10477
  background-color: #75b8ff;
10416
10478
  color: #e5f2ff;
@@ -10429,6 +10491,7 @@ label.custom-control-label {
10429
10491
  .next-month-date.focus, .next-month-date:focus-visible, .c-prefers-focus .next-month-date:focus {
10430
10492
  opacity: 1;
10431
10493
  }
10494
+
10432
10495
  .next-month-date:active {
10433
10496
  background-color: #75b8ff;
10434
10497
  color: #e5f2ff;
@@ -11645,6 +11708,7 @@ label.custom-control-label {
11645
11708
  line-height: 1.2;
11646
11709
  margin-bottom: 0;
11647
11710
  }
11711
+
11648
11712
  .list-group-title {
11649
11713
  font-size: 1.125rem;
11650
11714
  font-weight: 500;
@@ -12647,7 +12711,7 @@ label.custom-control-label {
12647
12711
  cursor: not-allowed;
12648
12712
  opacity: 1;
12649
12713
  }
12650
- .multi-step-item.disabled .multi-step-icon.focus, .multi-step-item.disabled .multi-step-icon:focus-visible {
12714
+ .multi-step-item.disabled .multi-step-icon.focus, .multi-step-item.disabled .multi-step-icon:focus-visible, .c-prefers-focus .multi-step-item.disabled .multi-step-icon:focus {
12651
12715
  box-shadow: none;
12652
12716
  }
12653
12717
 
@@ -12665,6 +12729,7 @@ label.custom-control-label {
12665
12729
  overflow-wrap: break-word;
12666
12730
  word-wrap: break-word;
12667
12731
  }
12732
+
12668
12733
  .multi-step-item-expand {
12669
12734
  flex-grow: 1;
12670
12735
  width: 75px;
@@ -12739,10 +12804,8 @@ label.custom-control-label {
12739
12804
  color: rgba(0, 0, 0, 0.7);
12740
12805
  text-decoration: none;
12741
12806
  }
12742
- .multi-step-icon.focus, .multi-step-icon:focus-visible {
12743
- background-color: #e9ecef;
12807
+ .multi-step-icon.focus, .multi-step-icon:focus-visible, .c-prefers-focus .multi-step-icon:focus {
12744
12808
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
12745
- color: rgba(0, 0, 0, 0.7);
12746
12809
  outline: 0;
12747
12810
  text-decoration: none;
12748
12811
  }
@@ -12900,6 +12963,7 @@ label.custom-control-label {
12900
12963
  text-decoration: none;
12901
12964
  z-index: 1;
12902
12965
  }
12966
+
12903
12967
  .nav-link:disabled, .nav-link.disabled {
12904
12968
  color: #6c757d;
12905
12969
  cursor: not-allowed;
@@ -12938,6 +13002,7 @@ label.custom-control-label {
12938
13002
  .nav-btn.focus, .nav-btn:focus-visible, .c-prefers-focus .nav-btn:focus {
12939
13003
  z-index: 1;
12940
13004
  }
13005
+
12941
13006
  .nav-btn:disabled, .nav-btn.disabled {
12942
13007
  opacity: 1;
12943
13008
  }
@@ -13199,6 +13264,7 @@ label.custom-control-label {
13199
13264
  .nav-tabs .nav-link.focus, .nav-tabs .nav-link:focus-visible, .c-prefers-focus .nav-tabs .nav-link:focus {
13200
13265
  border-color: #e9ecef #e9ecef #dee2e6;
13201
13266
  }
13267
+
13202
13268
  .nav-tabs .nav-link:active {
13203
13269
  background-color: #fff;
13204
13270
  border-color: #dee2e6 #dee2e6 #fff;
@@ -13335,6 +13401,7 @@ label.custom-control-label {
13335
13401
  right: 0;
13336
13402
  top: 0;
13337
13403
  }
13404
+
13338
13405
  .menubar-primary .nav-link:active {
13339
13406
  color: rgba(0, 0, 0, 0.9);
13340
13407
  }
@@ -13377,6 +13444,7 @@ label.custom-control-label {
13377
13444
  .menubar-primary .nav-link[aria-expanded=true]:focus-visible::before, .c-prefers-focus .menubar-primary .nav-link[aria-expanded=true]:focus::before, .menubar-primary .nav-link.show:focus-visible::before, .c-prefers-focus .menubar-primary .nav-link.show:focus::before {
13378
13445
  display: none;
13379
13446
  }
13447
+
13380
13448
  .menubar-primary .nav-link.collapse-icon {
13381
13449
  font-size: 0.75rem;
13382
13450
  font-weight: 500;
@@ -13700,7 +13768,7 @@ label.custom-control-label {
13700
13768
  padding: 0.5rem 1rem;
13701
13769
  position: relative;
13702
13770
  }
13703
- .navbar > .container-xl, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar .container,
13771
+ .navbar > .container-xxxl, .navbar > .container-xxl, .navbar > .container-xl, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar .container,
13704
13772
  .navbar .container-fluid {
13705
13773
  align-items: inherit;
13706
13774
  background-color: inherit;
@@ -17500,6 +17568,7 @@ label.custom-control-label {
17500
17568
  outline: 0;
17501
17569
  z-index: 4;
17502
17570
  }
17571
+
17503
17572
  .page-link:active {
17504
17573
  background-color: #007bff;
17505
17574
  border-color: #007bff;
@@ -17609,6 +17678,7 @@ label.custom-control-label {
17609
17678
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
17610
17679
  outline: 0;
17611
17680
  }
17681
+
17612
17682
  .pagination-items-per-page > a:active,
17613
17683
  .pagination-items-per-page > button:active {
17614
17684
  background-color: #007bff;
@@ -17832,6 +17902,7 @@ label.custom-control-label {
17832
17902
  .panel-header-link.focus, .panel-header-link:focus-visible, .c-prefers-focus .panel-header-link:focus {
17833
17903
  z-index: 1;
17834
17904
  }
17905
+
17835
17906
  .panel-header-link.panel-header.collapsed {
17836
17907
  border-color: transparent;
17837
17908
  transition: border-color 0.75s ease;
@@ -19070,6 +19141,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19070
19141
  overflow-wrap: break-word;
19071
19142
  word-wrap: break-word;
19072
19143
  }
19144
+
19073
19145
  .sidebar-footer {
19074
19146
  padding-bottom: 1rem;
19075
19147
  padding-left: 1rem;
@@ -19151,10 +19223,12 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19151
19223
  margin-bottom: 0.25rem;
19152
19224
  text-transform: uppercase;
19153
19225
  }
19226
+
19154
19227
  .sidebar-dd {
19155
19228
  font-size: 0.875rem;
19156
19229
  margin-bottom: 0.75rem;
19157
19230
  }
19231
+
19158
19232
  .sidebar-sm {
19159
19233
  font-size: 0.875rem;
19160
19234
  }
@@ -19263,6 +19337,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19263
19337
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
19264
19338
  outline: 0;
19265
19339
  }
19340
+
19266
19341
  .sidebar-dark .nav-nested .nav-link:active {
19267
19342
  color: #fff;
19268
19343
  }
@@ -19325,6 +19400,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
19325
19400
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
19326
19401
  outline: 0;
19327
19402
  }
19403
+
19328
19404
  .sidebar-dark-l2 .nav-nested .nav-link:active {
19329
19405
  color: #fff;
19330
19406
  }
@@ -19630,6 +19706,7 @@ caption {
19630
19706
  .table .component-drag.focus, .table .component-drag:focus-visible, .c-prefers-focus .table .component-drag:focus {
19631
19707
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
19632
19708
  }
19709
+
19633
19710
  .table .custom-control,
19634
19711
  .table .form-check {
19635
19712
  margin-bottom: 0;
@@ -20972,9 +21049,7 @@ td.table-focus {
20972
21049
  .tbar-stacked .tbar-btn-monospaced.focus, .tbar-stacked .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-stacked .tbar-btn-monospaced:focus {
20973
21050
  box-shadow: inset 0 0 0 0.125rem #57a8ff, inset 0 0 0 0.25rem #fff;
20974
21051
  }
20975
- .tbar-stacked .tbar-btn-monospaced:active:focus-visible, .c-prefers-focus .tbar-stacked .tbar-btn-monospaced:active:focus {
20976
- box-shadow: inset 0 0 0 0.125rem #57a8ff, inset 0 0 0 0.25rem #fff;
20977
- }
21052
+
20978
21053
  .tbar-stacked .tbar-btn-monospaced .c-inner {
20979
21054
  margin-bottom: 0;
20980
21055
  margin-left: 0;
@@ -21001,6 +21076,7 @@ td.table-focus {
21001
21076
  .tbar-light .tbar-btn-monospaced.focus, .tbar-light .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-light .tbar-btn-monospaced:focus {
21002
21077
  color: #343a40;
21003
21078
  }
21079
+
21004
21080
  .tbar-light .tbar-btn-monospaced:active {
21005
21081
  background-color: #e9ecef;
21006
21082
  color: #343a40;
@@ -21037,6 +21113,7 @@ td.table-focus {
21037
21113
  .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 {
21038
21114
  color: #fff;
21039
21115
  }
21116
+
21040
21117
  .tbar-dark-l2 .tbar-btn-monospaced:active {
21041
21118
  background-color: rgba(255, 255, 255, 0.06);
21042
21119
  color: #fff;
@@ -21072,6 +21149,7 @@ td.table-focus {
21072
21149
  .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 {
21073
21150
  color: #fff;
21074
21151
  }
21152
+
21075
21153
  .tbar-dark-d1 .tbar-btn-monospaced:active {
21076
21154
  background-color: rgba(255, 255, 255, 0.06);
21077
21155
  color: #fff;
@@ -21080,6 +21158,16 @@ td.table-focus {
21080
21158
  background-color: rgba(255, 255, 255, 0.06);
21081
21159
  color: #fff;
21082
21160
  }
21161
+ .tbar-dark-d1 .tbar-btn-monospaced.active::after {
21162
+ background-color: #75b8ff;
21163
+ bottom: 0;
21164
+ content: "";
21165
+ display: block;
21166
+ left: 0;
21167
+ position: absolute;
21168
+ top: 0;
21169
+ width: 0.25rem;
21170
+ }
21083
21171
  .tbar-dark-d1 .tbar-btn-monospaced:disabled, .tbar-dark-d1 .tbar-btn-monospaced.disabled {
21084
21172
  color: inherit;
21085
21173
  }
@@ -21087,6 +21175,16 @@ td.table-focus {
21087
21175
  background-color: rgba(255, 255, 255, 0.06);
21088
21176
  color: #fff;
21089
21177
  }
21178
+ .tbar-dark-d1 .tbar-btn-monospaced[aria-expanded=true]::after, .tbar-dark-d1 .tbar-btn-monospaced.show::after {
21179
+ background-color: #75b8ff;
21180
+ bottom: 0;
21181
+ content: "";
21182
+ display: block;
21183
+ left: 0;
21184
+ position: absolute;
21185
+ top: 0;
21186
+ width: 0.25rem;
21187
+ }
21090
21188
  .tbar-dark-d1 .tbar-label {
21091
21189
  border-width: 0.0625rem;
21092
21190
  }
@@ -22012,9 +22110,7 @@ td.table-focus {
22012
22110
  .treeview .btn-monospaced.focus, .treeview .btn-monospaced:focus-visible, .c-prefers-focus .treeview .btn-monospaced:focus {
22013
22111
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
22014
22112
  }
22015
- .treeview .btn-monospaced:active:focus-visible, .c-prefers-focus .treeview .btn-monospaced:active:focus {
22016
- box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
22017
- }
22113
+
22018
22114
  .treeview .custom-control {
22019
22115
  margin-left: 4px;
22020
22116
  margin-right: 4px;
@@ -22038,6 +22134,7 @@ td.table-focus {
22038
22134
  .treeview .component-action.focus, .treeview .component-action:focus-visible, .c-prefers-focus .treeview .component-action:focus {
22039
22135
  color: #6c757d;
22040
22136
  }
22137
+
22041
22138
  .treeview .component-action:active {
22042
22139
  background-color: transparent;
22043
22140
  }
@@ -22171,6 +22268,7 @@ td.table-focus {
22171
22268
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
22172
22269
  outline: 0;
22173
22270
  }
22271
+
22174
22272
  .treeview-link:disabled, .treeview-link.disabled {
22175
22273
  cursor: not-allowed;
22176
22274
  }
@@ -22229,6 +22327,7 @@ td.table-focus {
22229
22327
  .treeview-light .treeview-link.focus, .treeview-light .treeview-link:focus-visible, .c-prefers-focus .treeview-light .treeview-link:focus {
22230
22328
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
22231
22329
  }
22330
+
22232
22331
  .treeview-light .treeview-link:active {
22233
22332
  background-color: #e5f2ff;
22234
22333
  box-shadow: inset 0 0 0 1px #007bff;
@@ -22252,6 +22351,7 @@ td.table-focus {
22252
22351
  .treeview-light .treeview-link[aria-expanded=true]:focus-visible, .c-prefers-focus .treeview-light .treeview-link[aria-expanded=true]:focus, .treeview-light .treeview-link.show:focus-visible, .c-prefers-focus .treeview-light .treeview-link.show:focus {
22253
22352
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
22254
22353
  }
22354
+
22255
22355
  .treeview-light .treeview-link.treeview-no-hover:hover, .treeview-light .treeview-link.treeview-no-hover.hover {
22256
22356
  background-color: transparent;
22257
22357
  color: #6c757d;
@@ -22272,6 +22372,7 @@ td.table-focus {
22272
22372
  .treeview-dark .treeview-link.focus, .treeview-dark .treeview-link:focus-visible, .c-prefers-focus .treeview-dark .treeview-link:focus {
22273
22373
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
22274
22374
  }
22375
+
22275
22376
  .treeview-dark .treeview-link:active {
22276
22377
  background-color: #828e9a;
22277
22378
  box-shadow: inset 0 0 0 1px #007bff;
@@ -22295,6 +22396,7 @@ td.table-focus {
22295
22396
  .treeview-dark .treeview-link[aria-expanded=true]:focus-visible, .c-prefers-focus .treeview-dark .treeview-link[aria-expanded=true]:focus, .treeview-dark .treeview-link.show:focus-visible, .c-prefers-focus .treeview-dark .treeview-link.show:focus {
22296
22397
  box-shadow: inset 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
22297
22398
  }
22399
+
22298
22400
  .treeview-dark .treeview-link.treeview-no-hover:hover, .treeview-dark .treeview-link.treeview-no-hover.hover {
22299
22401
  background-color: transparent;
22300
22402
  color: #a9afb5;