@clayui/css 3.127.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.
- package/lib/css/atlas.css +207 -48
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +159 -64
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +188 -50
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +2 -0
- package/src/scss/cadmin/components/_grid.scss +3 -1
- package/src/scss/cadmin/variables/_dropdowns.scss +3 -0
- package/src/scss/cadmin/variables/_globals.scss +2 -0
- package/src/scss/components/_grid.scss +3 -1
- package/src/scss/mixins/_alerts.scss +104 -48
- package/src/scss/mixins/_badges.scss +75 -33
- package/src/scss/mixins/_buttons.scss +503 -225
- package/src/scss/mixins/_cards.scss +619 -277
- package/src/scss/mixins/_close.scss +42 -24
- package/src/scss/mixins/_custom-forms.scss +864 -581
- package/src/scss/mixins/_dropdown-menu.scss +466 -223
- package/src/scss/mixins/_links.scss +564 -282
- package/src/scss/variables/_dropdowns.scss +3 -0
- package/src/scss/variables/_globals.scss +2 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
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>
|
|
@@ -152,6 +152,7 @@ a.focus, a:focus-visible, .c-prefers-focus a:focus {
|
|
|
152
152
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
153
153
|
outline: 0;
|
|
154
154
|
}
|
|
155
|
+
|
|
155
156
|
pre,
|
|
156
157
|
code,
|
|
157
158
|
kbd,
|
|
@@ -1209,6 +1210,7 @@ button.collapse-icon .c-inner,
|
|
|
1209
1210
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
1210
1211
|
outline: 0;
|
|
1211
1212
|
}
|
|
1213
|
+
|
|
1212
1214
|
.btn:disabled, .btn.disabled {
|
|
1213
1215
|
cursor: not-allowed;
|
|
1214
1216
|
opacity: 0.4;
|
|
@@ -1216,6 +1218,7 @@ button.collapse-icon .c-inner,
|
|
|
1216
1218
|
.btn:disabled:focus-visible, .c-prefers-focus .btn:disabled:focus, .btn.disabled:focus-visible, .c-prefers-focus .btn.disabled:focus {
|
|
1217
1219
|
box-shadow: none;
|
|
1218
1220
|
}
|
|
1221
|
+
|
|
1219
1222
|
.btn:disabled:active, .btn.disabled:active {
|
|
1220
1223
|
pointer-events: none;
|
|
1221
1224
|
}
|
|
@@ -1425,6 +1428,7 @@ input[type=button].btn-block {
|
|
|
1425
1428
|
border-color: #004ad7;
|
|
1426
1429
|
color: #fff;
|
|
1427
1430
|
}
|
|
1431
|
+
|
|
1428
1432
|
.btn-primary:active {
|
|
1429
1433
|
background-color: #004ad7;
|
|
1430
1434
|
border-color: transparent;
|
|
@@ -1460,6 +1464,7 @@ input[type=button].btn-block {
|
|
|
1460
1464
|
border-color: #9b92a5;
|
|
1461
1465
|
color: #272833;
|
|
1462
1466
|
}
|
|
1467
|
+
|
|
1463
1468
|
.btn-secondary:active {
|
|
1464
1469
|
background-color: #f1f2f5;
|
|
1465
1470
|
border-color: #9b92a5;
|
|
@@ -1495,6 +1500,7 @@ input[type=button].btn-block {
|
|
|
1495
1500
|
border-color: transparent;
|
|
1496
1501
|
color: #fff;
|
|
1497
1502
|
}
|
|
1503
|
+
|
|
1498
1504
|
.btn-success:active {
|
|
1499
1505
|
background-color: #1c5629;
|
|
1500
1506
|
border-color: transparent;
|
|
@@ -1530,6 +1536,7 @@ input[type=button].btn-block {
|
|
|
1530
1536
|
border-color: transparent;
|
|
1531
1537
|
color: #fff;
|
|
1532
1538
|
}
|
|
1539
|
+
|
|
1533
1540
|
.btn-info:active {
|
|
1534
1541
|
background-color: #234584;
|
|
1535
1542
|
border-color: transparent;
|
|
@@ -1565,6 +1572,7 @@ input[type=button].btn-block {
|
|
|
1565
1572
|
border-color: transparent;
|
|
1566
1573
|
color: #fff;
|
|
1567
1574
|
}
|
|
1575
|
+
|
|
1568
1576
|
.btn-warning:active {
|
|
1569
1577
|
background-color: #863a00;
|
|
1570
1578
|
border-color: transparent;
|
|
@@ -1600,6 +1608,7 @@ input[type=button].btn-block {
|
|
|
1600
1608
|
border-color: transparent;
|
|
1601
1609
|
color: #fff;
|
|
1602
1610
|
}
|
|
1611
|
+
|
|
1603
1612
|
.btn-danger:active {
|
|
1604
1613
|
background-color: #ab1010;
|
|
1605
1614
|
border-color: transparent;
|
|
@@ -1635,6 +1644,7 @@ input[type=button].btn-block {
|
|
|
1635
1644
|
border-color: transparent;
|
|
1636
1645
|
color: #272833;
|
|
1637
1646
|
}
|
|
1647
|
+
|
|
1638
1648
|
.btn-light:active {
|
|
1639
1649
|
background-color: #d3d6e0;
|
|
1640
1650
|
border-color: transparent;
|
|
@@ -1670,6 +1680,7 @@ input[type=button].btn-block {
|
|
|
1670
1680
|
border-color: transparent;
|
|
1671
1681
|
color: #fff;
|
|
1672
1682
|
}
|
|
1683
|
+
|
|
1673
1684
|
.btn-dark:active {
|
|
1674
1685
|
background-color: #111116;
|
|
1675
1686
|
border-color: transparent;
|
|
@@ -1705,9 +1716,7 @@ input[type=button].btn-block {
|
|
|
1705
1716
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
1706
1717
|
text-decoration: none;
|
|
1707
1718
|
}
|
|
1708
|
-
|
|
1709
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
1710
|
-
}
|
|
1719
|
+
|
|
1711
1720
|
.btn-link:disabled, .btn-link.disabled {
|
|
1712
1721
|
box-shadow: none;
|
|
1713
1722
|
color: #0b5fff;
|
|
@@ -1729,6 +1738,7 @@ input[type=button].btn-block {
|
|
|
1729
1738
|
background-color: rgba(0, 83, 240, 0.06);
|
|
1730
1739
|
color: #0053f0;
|
|
1731
1740
|
}
|
|
1741
|
+
|
|
1732
1742
|
.btn-translucent.btn-primary:active {
|
|
1733
1743
|
background-color: rgba(0, 83, 240, 0.08);
|
|
1734
1744
|
color: #0053f0;
|
|
@@ -1754,6 +1764,7 @@ input[type=button].btn-block {
|
|
|
1754
1764
|
background-color: rgba(57, 58, 74, 0.06);
|
|
1755
1765
|
color: #6b6c7e;
|
|
1756
1766
|
}
|
|
1767
|
+
|
|
1757
1768
|
.btn-translucent.btn-secondary:active {
|
|
1758
1769
|
background-color: rgba(57, 58, 74, 0.08);
|
|
1759
1770
|
color: #6b6c7e;
|
|
@@ -1779,6 +1790,7 @@ input[type=button].btn-block {
|
|
|
1779
1790
|
background-color: rgba(41, 79, 152, 0.06);
|
|
1780
1791
|
color: #294f98;
|
|
1781
1792
|
}
|
|
1793
|
+
|
|
1782
1794
|
.btn-translucent.btn-info:active, .btn-beta:active {
|
|
1783
1795
|
background-color: rgba(41, 79, 152, 0.08);
|
|
1784
1796
|
color: #294f98;
|
|
@@ -1804,6 +1816,7 @@ input[type=button].btn-block {
|
|
|
1804
1816
|
background-color: rgba(34, 106, 51, 0.06);
|
|
1805
1817
|
color: #226a33;
|
|
1806
1818
|
}
|
|
1819
|
+
|
|
1807
1820
|
.btn-translucent.btn-success:active {
|
|
1808
1821
|
background-color: rgba(34, 106, 51, 0.08);
|
|
1809
1822
|
color: #226a33;
|
|
@@ -1829,6 +1842,7 @@ input[type=button].btn-block {
|
|
|
1829
1842
|
background-color: rgba(159, 69, 0, 0.06);
|
|
1830
1843
|
color: #9f4500;
|
|
1831
1844
|
}
|
|
1845
|
+
|
|
1832
1846
|
.btn-translucent.btn-warning:active {
|
|
1833
1847
|
background-color: rgba(159, 69, 0, 0.08);
|
|
1834
1848
|
color: #9f4500;
|
|
@@ -1854,6 +1868,7 @@ input[type=button].btn-block {
|
|
|
1854
1868
|
background-color: rgba(195, 18, 18, 0.06);
|
|
1855
1869
|
color: #c31212;
|
|
1856
1870
|
}
|
|
1871
|
+
|
|
1857
1872
|
.btn-translucent.btn-danger:active {
|
|
1858
1873
|
background-color: rgba(195, 18, 18, 0.08);
|
|
1859
1874
|
color: #c31212;
|
|
@@ -1879,6 +1894,7 @@ input[type=button].btn-block {
|
|
|
1879
1894
|
background-color: rgba(179, 205, 255, 0.06);
|
|
1880
1895
|
color: #80acff;
|
|
1881
1896
|
}
|
|
1897
|
+
|
|
1882
1898
|
.clay-dark.btn-translucent.btn-primary:active, .clay-dark .btn-translucent.btn-primary:active {
|
|
1883
1899
|
background-color: rgba(179, 205, 255, 0.08);
|
|
1884
1900
|
color: #80acff;
|
|
@@ -1904,6 +1920,7 @@ input[type=button].btn-block {
|
|
|
1904
1920
|
background-color: rgba(238, 242, 250, 0.06);
|
|
1905
1921
|
color: #89a7e0;
|
|
1906
1922
|
}
|
|
1923
|
+
|
|
1907
1924
|
.clay-dark.btn-translucent.btn-info:active, .clay-dark .btn-translucent.btn-info:active, .btn-beta-dark:active {
|
|
1908
1925
|
background-color: rgba(238, 242, 250, 0.08);
|
|
1909
1926
|
color: #89a7e0;
|
|
@@ -1929,6 +1946,7 @@ input[type=button].btn-block {
|
|
|
1929
1946
|
background-color: rgba(237, 249, 240, 0.06);
|
|
1930
1947
|
color: #5aca75;
|
|
1931
1948
|
}
|
|
1949
|
+
|
|
1932
1950
|
.clay-dark.btn-translucent.btn-success:active, .clay-dark .btn-translucent.btn-success:active {
|
|
1933
1951
|
background-color: rgba(237, 249, 240, 0.08);
|
|
1934
1952
|
color: #5aca75;
|
|
@@ -1954,6 +1972,7 @@ input[type=button].btn-block {
|
|
|
1954
1972
|
background-color: rgba(255, 244, 236, 0.06);
|
|
1955
1973
|
color: #ff8f39;
|
|
1956
1974
|
}
|
|
1975
|
+
|
|
1957
1976
|
.clay-dark.btn-translucent.btn-warning:active, .clay-dark .btn-translucent.btn-warning:active {
|
|
1958
1977
|
background-color: rgba(255, 244, 236, 0.08);
|
|
1959
1978
|
color: #ff8f39;
|
|
@@ -1979,6 +1998,7 @@ input[type=button].btn-block {
|
|
|
1979
1998
|
background-color: rgba(254, 239, 239, 0.06);
|
|
1980
1999
|
color: #f48989;
|
|
1981
2000
|
}
|
|
2001
|
+
|
|
1982
2002
|
.clay-dark.btn-translucent.btn-danger:active, .clay-dark .btn-translucent.btn-danger:active {
|
|
1983
2003
|
background-color: rgba(254, 239, 239, 0.08);
|
|
1984
2004
|
color: #f48989;
|
|
@@ -2004,6 +2024,7 @@ input[type=button].btn-block {
|
|
|
2004
2024
|
background-color: #f0f5ff;
|
|
2005
2025
|
color: #0b5fff;
|
|
2006
2026
|
}
|
|
2027
|
+
|
|
2007
2028
|
.btn-outline-primary:active {
|
|
2008
2029
|
background-color: #e6edf8;
|
|
2009
2030
|
border-color: #0b5fff;
|
|
@@ -2036,6 +2057,7 @@ input[type=button].btn-block {
|
|
|
2036
2057
|
border-color: transparent;
|
|
2037
2058
|
color: #272833;
|
|
2038
2059
|
}
|
|
2060
|
+
|
|
2039
2061
|
.btn-outline-secondary:active {
|
|
2040
2062
|
background-color: rgba(39, 40, 51, 0.06);
|
|
2041
2063
|
border-color: transparent;
|
|
@@ -2069,6 +2091,7 @@ input[type=button].btn-block {
|
|
|
2069
2091
|
background-color: #226a33;
|
|
2070
2092
|
color: #fff;
|
|
2071
2093
|
}
|
|
2094
|
+
|
|
2072
2095
|
.btn-outline-success:active {
|
|
2073
2096
|
background-color: #1c5629;
|
|
2074
2097
|
border-color: #287d3c;
|
|
@@ -2101,6 +2124,7 @@ input[type=button].btn-block {
|
|
|
2101
2124
|
background-color: #294f98;
|
|
2102
2125
|
color: #fff;
|
|
2103
2126
|
}
|
|
2127
|
+
|
|
2104
2128
|
.btn-outline-info:active {
|
|
2105
2129
|
background-color: #234584;
|
|
2106
2130
|
border-color: #2e5aac;
|
|
@@ -2133,6 +2157,7 @@ input[type=button].btn-block {
|
|
|
2133
2157
|
background-color: #9f4500;
|
|
2134
2158
|
color: #fff;
|
|
2135
2159
|
}
|
|
2160
|
+
|
|
2136
2161
|
.btn-outline-warning:active {
|
|
2137
2162
|
background-color: #863a00;
|
|
2138
2163
|
border-color: #b95000;
|
|
@@ -2165,6 +2190,7 @@ input[type=button].btn-block {
|
|
|
2165
2190
|
background-color: #c31212;
|
|
2166
2191
|
color: #fff;
|
|
2167
2192
|
}
|
|
2193
|
+
|
|
2168
2194
|
.btn-outline-danger:active {
|
|
2169
2195
|
background-color: #ab1010;
|
|
2170
2196
|
border-color: #da1414;
|
|
@@ -2197,6 +2223,7 @@ input[type=button].btn-block {
|
|
|
2197
2223
|
background-color: #e2e4ea;
|
|
2198
2224
|
color: #272833;
|
|
2199
2225
|
}
|
|
2226
|
+
|
|
2200
2227
|
.btn-outline-light:active {
|
|
2201
2228
|
background-color: #d3d6e0;
|
|
2202
2229
|
border-color: #f1f2f5;
|
|
@@ -2229,6 +2256,7 @@ input[type=button].btn-block {
|
|
|
2229
2256
|
background-color: #1c1c24;
|
|
2230
2257
|
color: #fff;
|
|
2231
2258
|
}
|
|
2259
|
+
|
|
2232
2260
|
.btn-outline-dark:active {
|
|
2233
2261
|
background-color: #111116;
|
|
2234
2262
|
border-color: #272833;
|
|
@@ -2257,6 +2285,7 @@ input[type=button].btn-block {
|
|
|
2257
2285
|
.btn-outline-borderless.focus, .btn-outline-borderless:focus-visible, .c-prefers-focus .btn-outline-borderless:focus {
|
|
2258
2286
|
border-color: transparent;
|
|
2259
2287
|
}
|
|
2288
|
+
|
|
2260
2289
|
.btn-outline-borderless:disabled, .btn-outline-borderless.disabled {
|
|
2261
2290
|
border-color: transparent;
|
|
2262
2291
|
}
|
|
@@ -2336,6 +2365,8 @@ input[type=button].btn-block {
|
|
|
2336
2365
|
padding-left: calc(24px * 0.5);
|
|
2337
2366
|
padding-right: calc(24px * 0.5);
|
|
2338
2367
|
width: 100%;
|
|
2368
|
+
max-width: 1392px;
|
|
2369
|
+
max-width: 1872px;
|
|
2339
2370
|
}
|
|
2340
2371
|
@media (min-width: 576px) {
|
|
2341
2372
|
.container {
|
|
@@ -2358,7 +2389,7 @@ input[type=button].btn-block {
|
|
|
2358
2389
|
}
|
|
2359
2390
|
}
|
|
2360
2391
|
|
|
2361
|
-
.container-xl, .container-lg, .container-md, .container-sm, .container-fluid {
|
|
2392
|
+
.container-xxxl, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-fluid {
|
|
2362
2393
|
margin-left: auto;
|
|
2363
2394
|
margin-right: auto;
|
|
2364
2395
|
padding-left: calc(24px * 0.5);
|
|
@@ -3477,6 +3508,12 @@ input[type=button].btn-block {
|
|
|
3477
3508
|
.container-fluid-max-xl {
|
|
3478
3509
|
max-width: 1248px;
|
|
3479
3510
|
}
|
|
3511
|
+
.container-fluid-max-xxl {
|
|
3512
|
+
max-width: 1392px;
|
|
3513
|
+
}
|
|
3514
|
+
.container-fluid-max-xxxl {
|
|
3515
|
+
max-width: 1872px;
|
|
3516
|
+
}
|
|
3480
3517
|
|
|
3481
3518
|
.container-no-gutters {
|
|
3482
3519
|
padding-left: 0;
|
|
@@ -3648,15 +3685,11 @@ input[type=button].btn-block {
|
|
|
3648
3685
|
font-weight: 600;
|
|
3649
3686
|
margin-right: 0.3125rem;
|
|
3650
3687
|
}
|
|
3651
|
-
.alert .component-title {
|
|
3652
|
-
font-size: 0.875rem;
|
|
3653
|
-
margin-bottom: 0.25rem;
|
|
3654
|
-
margin-top: 0;
|
|
3655
|
-
}
|
|
3656
3688
|
.alert .component-subtitle {
|
|
3657
3689
|
font-size: 0.75rem;
|
|
3658
3690
|
font-weight: 400;
|
|
3659
3691
|
}
|
|
3692
|
+
|
|
3660
3693
|
.alert-heading {
|
|
3661
3694
|
color: inherit;
|
|
3662
3695
|
}
|
|
@@ -3681,6 +3714,7 @@ input[type=button].btn-block {
|
|
|
3681
3714
|
.c-prefers-focus .alert-link.btn-unstyled:focus {
|
|
3682
3715
|
text-decoration: none;
|
|
3683
3716
|
}
|
|
3717
|
+
|
|
3684
3718
|
.alert-indicator {
|
|
3685
3719
|
font-size: 1rem;
|
|
3686
3720
|
line-height: 1;
|
|
@@ -4335,6 +4369,7 @@ input[type=button].btn-block {
|
|
|
4335
4369
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
4336
4370
|
outline: 0;
|
|
4337
4371
|
}
|
|
4372
|
+
|
|
4338
4373
|
.badge a {
|
|
4339
4374
|
color: #fff;
|
|
4340
4375
|
text-decoration: underline;
|
|
@@ -4345,6 +4380,7 @@ input[type=button].btn-block {
|
|
|
4345
4380
|
.badge a.focus, .badge a:focus-visible, .c-prefers-focus .badge a:focus {
|
|
4346
4381
|
text-decoration: none;
|
|
4347
4382
|
}
|
|
4383
|
+
|
|
4348
4384
|
.badge > .c-inner {
|
|
4349
4385
|
margin-bottom: -0.09375rem;
|
|
4350
4386
|
margin-left: -0.25rem;
|
|
@@ -4463,6 +4499,7 @@ input[type=button].btn-block {
|
|
|
4463
4499
|
box-shadow: 0 0 0 0.2rem rgba(11, 95, 255, 0.5);
|
|
4464
4500
|
color: #fff;
|
|
4465
4501
|
}
|
|
4502
|
+
|
|
4466
4503
|
.badge-secondary {
|
|
4467
4504
|
background-color: #e7e7ed;
|
|
4468
4505
|
color: #272833;
|
|
@@ -4476,6 +4513,7 @@ input[type=button].btn-block {
|
|
|
4476
4513
|
color: #272833;
|
|
4477
4514
|
box-shadow: 0 0 0 0.2rem rgba(231, 231, 237, 0.5);
|
|
4478
4515
|
}
|
|
4516
|
+
|
|
4479
4517
|
.badge-secondary a {
|
|
4480
4518
|
color: #272833;
|
|
4481
4519
|
}
|
|
@@ -4492,6 +4530,7 @@ input[type=button].btn-block {
|
|
|
4492
4530
|
color: #fff;
|
|
4493
4531
|
box-shadow: 0 0 0 0.2rem rgba(40, 125, 60, 0.5);
|
|
4494
4532
|
}
|
|
4533
|
+
|
|
4495
4534
|
.badge-info {
|
|
4496
4535
|
background-color: #2e5aac;
|
|
4497
4536
|
color: #fff;
|
|
@@ -4505,6 +4544,7 @@ input[type=button].btn-block {
|
|
|
4505
4544
|
color: #fff;
|
|
4506
4545
|
box-shadow: 0 0 0 0.2rem rgba(46, 90, 172, 0.5);
|
|
4507
4546
|
}
|
|
4547
|
+
|
|
4508
4548
|
.badge-warning {
|
|
4509
4549
|
background-color: #b95000;
|
|
4510
4550
|
color: #fff;
|
|
@@ -4518,6 +4558,7 @@ input[type=button].btn-block {
|
|
|
4518
4558
|
color: #fff;
|
|
4519
4559
|
box-shadow: 0 0 0 0.2rem rgba(185, 80, 0, 0.5);
|
|
4520
4560
|
}
|
|
4561
|
+
|
|
4521
4562
|
.badge-danger {
|
|
4522
4563
|
background-color: #da1414;
|
|
4523
4564
|
color: #fff;
|
|
@@ -4531,6 +4572,7 @@ input[type=button].btn-block {
|
|
|
4531
4572
|
color: #fff;
|
|
4532
4573
|
box-shadow: 0 0 0 0.2rem rgba(218, 20, 20, 0.5);
|
|
4533
4574
|
}
|
|
4575
|
+
|
|
4534
4576
|
.badge-light {
|
|
4535
4577
|
background-color: #f1f2f5;
|
|
4536
4578
|
color: #272833;
|
|
@@ -4544,6 +4586,7 @@ input[type=button].btn-block {
|
|
|
4544
4586
|
color: #272833;
|
|
4545
4587
|
box-shadow: 0 0 0 0.2rem rgba(241, 242, 245, 0.5);
|
|
4546
4588
|
}
|
|
4589
|
+
|
|
4547
4590
|
.badge-light a {
|
|
4548
4591
|
color: #272833;
|
|
4549
4592
|
}
|
|
@@ -4560,6 +4603,7 @@ input[type=button].btn-block {
|
|
|
4560
4603
|
color: #fff;
|
|
4561
4604
|
box-shadow: 0 0 0 0.2rem rgba(39, 40, 51, 0.5);
|
|
4562
4605
|
}
|
|
4606
|
+
|
|
4563
4607
|
.badge-translucent.badge-primary {
|
|
4564
4608
|
background-color: rgba(0, 83, 240, 0.04);
|
|
4565
4609
|
border-color: transparent;
|
|
@@ -4647,6 +4691,7 @@ input[type=button].btn-block {
|
|
|
4647
4691
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
4648
4692
|
outline: 0;
|
|
4649
4693
|
}
|
|
4694
|
+
|
|
4650
4695
|
.breadcrumb-toggle {
|
|
4651
4696
|
color: #6b6c7e;
|
|
4652
4697
|
}
|
|
@@ -4701,6 +4746,7 @@ input[type=button].btn-block {
|
|
|
4701
4746
|
.breadcrumb-item .dropdown-toggle.focus, .breadcrumb-item .dropdown-toggle:focus-visible, .c-prefers-focus .breadcrumb-item .dropdown-toggle:focus {
|
|
4702
4747
|
text-decoration: none;
|
|
4703
4748
|
}
|
|
4749
|
+
|
|
4704
4750
|
.breadcrumb-text-truncate {
|
|
4705
4751
|
display: inline-block;
|
|
4706
4752
|
max-width: 17.875rem;
|
|
@@ -4970,6 +5016,7 @@ input[type=button].btn-block {
|
|
|
4970
5016
|
text-decoration: underline;
|
|
4971
5017
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
4972
5018
|
}
|
|
5019
|
+
|
|
4973
5020
|
.label a,
|
|
4974
5021
|
.label .btn-unstyled {
|
|
4975
5022
|
color: inherit;
|
|
@@ -4989,6 +5036,7 @@ input[type=button].btn-block {
|
|
|
4989
5036
|
color: inherit;
|
|
4990
5037
|
text-decoration: underline;
|
|
4991
5038
|
}
|
|
5039
|
+
|
|
4992
5040
|
.label .sticker {
|
|
4993
5041
|
border-radius: 100px;
|
|
4994
5042
|
height: 0.875em;
|
|
@@ -5142,6 +5190,7 @@ input[type=button].btn-block {
|
|
|
5142
5190
|
[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 {
|
|
5143
5191
|
color: #004ad7;
|
|
5144
5192
|
}
|
|
5193
|
+
|
|
5145
5194
|
.label-primary a:hover, .label-primary a.hover,
|
|
5146
5195
|
.label-primary .btn-unstyled:hover,
|
|
5147
5196
|
.label-primary .btn-unstyled.hover {
|
|
@@ -5166,6 +5215,7 @@ input[type=button].btn-block {
|
|
|
5166
5215
|
[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 {
|
|
5167
5216
|
color: #272833;
|
|
5168
5217
|
}
|
|
5218
|
+
|
|
5169
5219
|
.label-secondary a:hover, .label-secondary a.hover,
|
|
5170
5220
|
.label-secondary .btn-unstyled:hover,
|
|
5171
5221
|
.label-secondary .btn-unstyled.hover {
|
|
@@ -5190,6 +5240,7 @@ input[type=button].btn-block {
|
|
|
5190
5240
|
[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 {
|
|
5191
5241
|
color: #1c5629;
|
|
5192
5242
|
}
|
|
5243
|
+
|
|
5193
5244
|
.label-success a:hover, .label-success a.hover,
|
|
5194
5245
|
.label-success .btn-unstyled:hover,
|
|
5195
5246
|
.label-success .btn-unstyled.hover {
|
|
@@ -5214,6 +5265,7 @@ input[type=button].btn-block {
|
|
|
5214
5265
|
[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 {
|
|
5215
5266
|
color: #234584;
|
|
5216
5267
|
}
|
|
5268
|
+
|
|
5217
5269
|
.label-info a:hover, .label-info a.hover,
|
|
5218
5270
|
.label-info .btn-unstyled:hover,
|
|
5219
5271
|
.label-info .btn-unstyled.hover {
|
|
@@ -5238,6 +5290,7 @@ input[type=button].btn-block {
|
|
|
5238
5290
|
[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 {
|
|
5239
5291
|
color: #863a00;
|
|
5240
5292
|
}
|
|
5293
|
+
|
|
5241
5294
|
.label-warning a:hover, .label-warning a.hover,
|
|
5242
5295
|
.label-warning .btn-unstyled:hover,
|
|
5243
5296
|
.label-warning .btn-unstyled.hover {
|
|
@@ -5262,6 +5315,7 @@ input[type=button].btn-block {
|
|
|
5262
5315
|
[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 {
|
|
5263
5316
|
color: #ab1010;
|
|
5264
5317
|
}
|
|
5318
|
+
|
|
5265
5319
|
.label-danger a:hover, .label-danger a.hover,
|
|
5266
5320
|
.label-danger .btn-unstyled:hover,
|
|
5267
5321
|
.label-danger .btn-unstyled.hover {
|
|
@@ -5286,6 +5340,7 @@ input[type=button].btn-block {
|
|
|
5286
5340
|
[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 {
|
|
5287
5341
|
color: #393a4a;
|
|
5288
5342
|
}
|
|
5343
|
+
|
|
5289
5344
|
.label-dark a:hover, .label-dark a.hover,
|
|
5290
5345
|
.label-dark .btn-unstyled:hover,
|
|
5291
5346
|
.label-dark .btn-unstyled.hover {
|
|
@@ -5310,6 +5365,7 @@ input[type=button].btn-block {
|
|
|
5310
5365
|
[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 {
|
|
5311
5366
|
color: #d3d6e0;
|
|
5312
5367
|
}
|
|
5368
|
+
|
|
5313
5369
|
.label-light a:hover, .label-light a.hover,
|
|
5314
5370
|
.label-light .btn-unstyled:hover,
|
|
5315
5371
|
.label-light .btn-unstyled.hover {
|
|
@@ -5788,6 +5844,7 @@ input[type=button].btn-block {
|
|
|
5788
5844
|
.card-text:last-child {
|
|
5789
5845
|
margin-bottom: 0;
|
|
5790
5846
|
}
|
|
5847
|
+
|
|
5791
5848
|
.card-link {
|
|
5792
5849
|
color: #6b6c7e;
|
|
5793
5850
|
font-size: 0.875rem;
|
|
@@ -6253,9 +6310,6 @@ input[type=button].btn-block {
|
|
|
6253
6310
|
.form-check-card .custom-control .custom-control-input:checked ~ .card {
|
|
6254
6311
|
box-shadow: 0 0 0 2px #80acff;
|
|
6255
6312
|
}
|
|
6256
|
-
.form-check-card .custom-control .custom-control-input:checked ~ .card {
|
|
6257
|
-
box-shadow: 0 0 0 2px #80acff;
|
|
6258
|
-
}
|
|
6259
6313
|
.form-check-card .form-check-input:checked ~ .card {
|
|
6260
6314
|
box-shadow: 0 0 0 2px #80acff;
|
|
6261
6315
|
}
|
|
@@ -6291,6 +6345,7 @@ input[type=button].btn-block {
|
|
|
6291
6345
|
top: auto;
|
|
6292
6346
|
transform: none;
|
|
6293
6347
|
}
|
|
6348
|
+
|
|
6294
6349
|
.form-check-bottom-right .form-check-input {
|
|
6295
6350
|
bottom: 1rem;
|
|
6296
6351
|
left: auto;
|
|
@@ -6314,6 +6369,7 @@ input[type=button].btn-block {
|
|
|
6314
6369
|
top: auto;
|
|
6315
6370
|
transform: none;
|
|
6316
6371
|
}
|
|
6372
|
+
|
|
6317
6373
|
.form-check-middle-left .form-check-input {
|
|
6318
6374
|
left: 1rem;
|
|
6319
6375
|
margin-top: 0;
|
|
@@ -6334,6 +6390,7 @@ input[type=button].btn-block {
|
|
|
6334
6390
|
top: 50%;
|
|
6335
6391
|
transform: translateY(-50%);
|
|
6336
6392
|
}
|
|
6393
|
+
|
|
6337
6394
|
.form-check-middle-right .form-check-input {
|
|
6338
6395
|
left: auto;
|
|
6339
6396
|
margin-top: 0;
|
|
@@ -6357,6 +6414,7 @@ input[type=button].btn-block {
|
|
|
6357
6414
|
top: 50%;
|
|
6358
6415
|
transform: translateY(-50%);
|
|
6359
6416
|
}
|
|
6417
|
+
|
|
6360
6418
|
.form-check-top-left .form-check-input {
|
|
6361
6419
|
left: 1rem;
|
|
6362
6420
|
opacity: 1;
|
|
@@ -6374,6 +6432,7 @@ input[type=button].btn-block {
|
|
|
6374
6432
|
top: 1rem;
|
|
6375
6433
|
transform: none;
|
|
6376
6434
|
}
|
|
6435
|
+
|
|
6377
6436
|
.form-check-top-right .form-check-input {
|
|
6378
6437
|
left: auto;
|
|
6379
6438
|
opacity: 1;
|
|
@@ -6394,6 +6453,7 @@ input[type=button].btn-block {
|
|
|
6394
6453
|
top: 1rem;
|
|
6395
6454
|
transform: none;
|
|
6396
6455
|
}
|
|
6456
|
+
|
|
6397
6457
|
.card-page.card-page-equal-height .card-page-item,
|
|
6398
6458
|
.card-page.card-page-equal-height .card-page-item-asset,
|
|
6399
6459
|
.card-page.card-page-equal-height .card-page-item-directory {
|
|
@@ -6538,6 +6598,7 @@ input[type=button].btn-block {
|
|
|
6538
6598
|
.card-interactive.focus, .card-interactive:focus-visible, .c-prefers-focus .card-interactive:focus {
|
|
6539
6599
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
6540
6600
|
}
|
|
6601
|
+
|
|
6541
6602
|
.card-interactive:active, .card-interactive.active {
|
|
6542
6603
|
background-color: #f1f2f5;
|
|
6543
6604
|
}
|
|
@@ -6579,6 +6640,7 @@ input[type=button].btn-block {
|
|
|
6579
6640
|
.card-interactive-primary.focus, .card-interactive-primary:focus-visible, .c-prefers-focus .card-interactive-primary:focus {
|
|
6580
6641
|
background-color: #f7f8f9;
|
|
6581
6642
|
}
|
|
6643
|
+
|
|
6582
6644
|
.card-interactive-primary:active, .card-interactive-primary.active {
|
|
6583
6645
|
background-color: #f1f2f5;
|
|
6584
6646
|
}
|
|
@@ -6604,6 +6666,7 @@ input[type=button].btn-block {
|
|
|
6604
6666
|
border-color: transparent;
|
|
6605
6667
|
box-shadow: 0 0 0 2px #5791ff;
|
|
6606
6668
|
}
|
|
6669
|
+
|
|
6607
6670
|
.card-interactive-secondary:active, .card-interactive-secondary.active {
|
|
6608
6671
|
background-color: #fff;
|
|
6609
6672
|
}
|
|
@@ -6839,6 +6902,7 @@ input[type=button].btn-block {
|
|
|
6839
6902
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
6840
6903
|
outline: 0;
|
|
6841
6904
|
}
|
|
6905
|
+
|
|
6842
6906
|
.dropdown-item:active {
|
|
6843
6907
|
background-color: #f0f5ff;
|
|
6844
6908
|
color: #272833;
|
|
@@ -7101,6 +7165,7 @@ input[type=button].btn-block {
|
|
|
7101
7165
|
background-image: none;
|
|
7102
7166
|
color: #272833;
|
|
7103
7167
|
}
|
|
7168
|
+
|
|
7104
7169
|
.dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active {
|
|
7105
7170
|
background-color: #f0f5ff;
|
|
7106
7171
|
background-image: none;
|
|
@@ -7163,6 +7228,10 @@ input[type=button].btn-block {
|
|
|
7163
7228
|
.dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-end .dropdown-item-indicator-end {
|
|
7164
7229
|
right: 0.5rem;
|
|
7165
7230
|
}
|
|
7231
|
+
.dropdown-menu-select.dropdown-menu .inline-scroller {
|
|
7232
|
+
max-height: 224px;
|
|
7233
|
+
}
|
|
7234
|
+
|
|
7166
7235
|
.dropdown-menu-select.dropdown-menu-height-lg .inline-scroller {
|
|
7167
7236
|
max-height: 432px;
|
|
7168
7237
|
}
|
|
@@ -7350,6 +7419,7 @@ input[type=button].btn-block {
|
|
|
7350
7419
|
color: inherit;
|
|
7351
7420
|
text-decoration: inherit;
|
|
7352
7421
|
}
|
|
7422
|
+
|
|
7353
7423
|
.dropdown-item-indicator-text-start > .c-inner {
|
|
7354
7424
|
margin-left: -1.75rem;
|
|
7355
7425
|
}
|
|
@@ -7406,6 +7476,7 @@ input[type=button].btn-block {
|
|
|
7406
7476
|
color: inherit;
|
|
7407
7477
|
text-decoration: inherit;
|
|
7408
7478
|
}
|
|
7479
|
+
|
|
7409
7480
|
.dropdown-item-indicator-text-end > .c-inner {
|
|
7410
7481
|
margin-right: -1.75rem;
|
|
7411
7482
|
}
|
|
@@ -7419,6 +7490,7 @@ input[type=button].btn-block {
|
|
|
7419
7490
|
transform: none !important;
|
|
7420
7491
|
will-change: auto !important;
|
|
7421
7492
|
}
|
|
7493
|
+
|
|
7422
7494
|
.dropdown-menu-top-right {
|
|
7423
7495
|
bottom: 100% !important;
|
|
7424
7496
|
left: auto !important;
|
|
@@ -7429,6 +7501,7 @@ input[type=button].btn-block {
|
|
|
7429
7501
|
transform: none !important;
|
|
7430
7502
|
will-change: auto !important;
|
|
7431
7503
|
}
|
|
7504
|
+
|
|
7432
7505
|
.dropdown-menu-top-center {
|
|
7433
7506
|
bottom: 100% !important;
|
|
7434
7507
|
left: 50% !important;
|
|
@@ -7439,6 +7512,7 @@ input[type=button].btn-block {
|
|
|
7439
7512
|
transform: translateX(-50%) !important;
|
|
7440
7513
|
will-change: auto !important;
|
|
7441
7514
|
}
|
|
7515
|
+
|
|
7442
7516
|
.dropdown-menu-center {
|
|
7443
7517
|
bottom: auto !important;
|
|
7444
7518
|
left: 50% !important;
|
|
@@ -7447,6 +7521,7 @@ input[type=button].btn-block {
|
|
|
7447
7521
|
transform: translateX(-50%) !important;
|
|
7448
7522
|
will-change: auto !important;
|
|
7449
7523
|
}
|
|
7524
|
+
|
|
7450
7525
|
.dropdown-menu-left-side {
|
|
7451
7526
|
bottom: auto !important;
|
|
7452
7527
|
left: auto !important;
|
|
@@ -7457,6 +7532,7 @@ input[type=button].btn-block {
|
|
|
7457
7532
|
transform: none !important;
|
|
7458
7533
|
will-change: auto !important;
|
|
7459
7534
|
}
|
|
7535
|
+
|
|
7460
7536
|
.dropdown-menu-left-side-bottom {
|
|
7461
7537
|
bottom: 0 !important;
|
|
7462
7538
|
left: auto !important;
|
|
@@ -7467,6 +7543,7 @@ input[type=button].btn-block {
|
|
|
7467
7543
|
transform: none !important;
|
|
7468
7544
|
will-change: auto !important;
|
|
7469
7545
|
}
|
|
7546
|
+
|
|
7470
7547
|
.dropdown-menu-left-side-middle {
|
|
7471
7548
|
bottom: auto !important;
|
|
7472
7549
|
left: auto !important;
|
|
@@ -7477,6 +7554,7 @@ input[type=button].btn-block {
|
|
|
7477
7554
|
transform: translate(0, -50%) !important;
|
|
7478
7555
|
will-change: auto !important;
|
|
7479
7556
|
}
|
|
7557
|
+
|
|
7480
7558
|
.dropdown-menu-right-side {
|
|
7481
7559
|
bottom: auto !important;
|
|
7482
7560
|
left: 100% !important;
|
|
@@ -7487,6 +7565,7 @@ input[type=button].btn-block {
|
|
|
7487
7565
|
transform: none !important;
|
|
7488
7566
|
will-change: auto !important;
|
|
7489
7567
|
}
|
|
7568
|
+
|
|
7490
7569
|
.dropdown-menu-right-side-bottom {
|
|
7491
7570
|
bottom: 0 !important;
|
|
7492
7571
|
left: 100% !important;
|
|
@@ -7497,6 +7576,7 @@ input[type=button].btn-block {
|
|
|
7497
7576
|
transform: none !important;
|
|
7498
7577
|
will-change: auto !important;
|
|
7499
7578
|
}
|
|
7579
|
+
|
|
7500
7580
|
.dropdown-menu-right-side-middle {
|
|
7501
7581
|
bottom: auto !important;
|
|
7502
7582
|
left: 100% !important;
|
|
@@ -7507,6 +7587,7 @@ input[type=button].btn-block {
|
|
|
7507
7587
|
transform: translate(0, -50%) !important;
|
|
7508
7588
|
will-change: auto !important;
|
|
7509
7589
|
}
|
|
7590
|
+
|
|
7510
7591
|
.dropdown-full .dropdown-menu,
|
|
7511
7592
|
.dropdown-wide .dropdown-menu {
|
|
7512
7593
|
max-width: none;
|
|
@@ -7540,6 +7621,7 @@ input[type=button].btn-block {
|
|
|
7540
7621
|
.dropdown-menu-width-shrink {
|
|
7541
7622
|
min-width: 0;
|
|
7542
7623
|
}
|
|
7624
|
+
|
|
7543
7625
|
.dropdown-menu-width-full {
|
|
7544
7626
|
left: 12px !important;
|
|
7545
7627
|
right: 12px !important;
|
|
@@ -7580,6 +7662,7 @@ input[type=button].btn-block {
|
|
|
7580
7662
|
max-width: none;
|
|
7581
7663
|
width: 100%;
|
|
7582
7664
|
}
|
|
7665
|
+
|
|
7583
7666
|
.nav-item.dropdown-full {
|
|
7584
7667
|
position: static;
|
|
7585
7668
|
}
|
|
@@ -8668,6 +8751,7 @@ textarea.form-control-lg,
|
|
|
8668
8751
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8669
8752
|
outline: 0;
|
|
8670
8753
|
}
|
|
8754
|
+
|
|
8671
8755
|
.c-link.text-secondary {
|
|
8672
8756
|
color: #272833 !important;
|
|
8673
8757
|
}
|
|
@@ -8677,6 +8761,7 @@ textarea.form-control-lg,
|
|
|
8677
8761
|
.c-link.text-secondary.focus, .c-link.text-secondary:focus-visible, .c-prefers-focus .c-link.text-secondary:focus {
|
|
8678
8762
|
color: #000 !important;
|
|
8679
8763
|
}
|
|
8764
|
+
|
|
8680
8765
|
.c-link.text-tertiary {
|
|
8681
8766
|
color: #272833 !important;
|
|
8682
8767
|
}
|
|
@@ -8706,6 +8791,7 @@ textarea.form-control-lg,
|
|
|
8706
8791
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8707
8792
|
outline: 0;
|
|
8708
8793
|
}
|
|
8794
|
+
|
|
8709
8795
|
.single-link {
|
|
8710
8796
|
font-weight: 600;
|
|
8711
8797
|
}
|
|
@@ -8733,6 +8819,7 @@ textarea.form-control-lg,
|
|
|
8733
8819
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8734
8820
|
outline: 0;
|
|
8735
8821
|
}
|
|
8822
|
+
|
|
8736
8823
|
.link-secondary {
|
|
8737
8824
|
color: #6b6c7e;
|
|
8738
8825
|
border-radius: 1px;
|
|
@@ -8756,6 +8843,7 @@ textarea.form-control-lg,
|
|
|
8756
8843
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8757
8844
|
outline: 0;
|
|
8758
8845
|
}
|
|
8846
|
+
|
|
8759
8847
|
button.link-outline {
|
|
8760
8848
|
cursor: pointer;
|
|
8761
8849
|
}
|
|
@@ -8795,6 +8883,7 @@ button.link-outline {
|
|
|
8795
8883
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8796
8884
|
outline: 0;
|
|
8797
8885
|
}
|
|
8886
|
+
|
|
8798
8887
|
.link-outline:disabled, .link-outline.disabled {
|
|
8799
8888
|
box-shadow: none;
|
|
8800
8889
|
}
|
|
@@ -8824,6 +8913,7 @@ button.link-outline {
|
|
|
8824
8913
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8825
8914
|
color: #0b5fff;
|
|
8826
8915
|
}
|
|
8916
|
+
|
|
8827
8917
|
.link-outline-primary:active {
|
|
8828
8918
|
background-color: #e6edf8;
|
|
8829
8919
|
color: #0b5fff;
|
|
@@ -8856,6 +8946,7 @@ button.link-outline {
|
|
|
8856
8946
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8857
8947
|
color: #272833;
|
|
8858
8948
|
}
|
|
8949
|
+
|
|
8859
8950
|
.link-outline-secondary:active {
|
|
8860
8951
|
background-color: rgba(39, 40, 51, 0.06);
|
|
8861
8952
|
color: #272833;
|
|
@@ -8939,6 +9030,7 @@ button.link-outline {
|
|
|
8939
9030
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8940
9031
|
outline: 0;
|
|
8941
9032
|
}
|
|
9033
|
+
|
|
8942
9034
|
.component-subtitle {
|
|
8943
9035
|
color: #6b6c7e;
|
|
8944
9036
|
margin-bottom: 0;
|
|
@@ -8975,6 +9067,7 @@ button.link-outline {
|
|
|
8975
9067
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8976
9068
|
outline: 0;
|
|
8977
9069
|
}
|
|
9070
|
+
|
|
8978
9071
|
.component-action {
|
|
8979
9072
|
align-items: center;
|
|
8980
9073
|
background-color: transparent;
|
|
@@ -9011,6 +9104,7 @@ button.link-outline {
|
|
|
9011
9104
|
background-color: rgba(39, 40, 51, 0.03);
|
|
9012
9105
|
color: #272833;
|
|
9013
9106
|
}
|
|
9107
|
+
|
|
9014
9108
|
.component-action:active {
|
|
9015
9109
|
background-color: rgba(39, 40, 51, 0.06);
|
|
9016
9110
|
color: #272833;
|
|
@@ -9565,9 +9659,7 @@ button.link-outline {
|
|
|
9565
9659
|
box-shadow: 0 0 0 0.125rem #5791ff;
|
|
9566
9660
|
outline: 0;
|
|
9567
9661
|
}
|
|
9568
|
-
|
|
9569
|
-
box-shadow: 0 0 0 0.125rem #5791ff;
|
|
9570
|
-
}
|
|
9662
|
+
|
|
9571
9663
|
.clay-color-pointer .c-inner {
|
|
9572
9664
|
margin-bottom: 0;
|
|
9573
9665
|
margin-left: 0;
|
|
@@ -9587,6 +9679,7 @@ button.link-outline {
|
|
|
9587
9679
|
font-weight: 600;
|
|
9588
9680
|
max-width: calc(100% - 2rem);
|
|
9589
9681
|
}
|
|
9682
|
+
|
|
9590
9683
|
.clay-color-footer {
|
|
9591
9684
|
margin-bottom: 1rem;
|
|
9592
9685
|
}
|
|
@@ -10052,6 +10145,7 @@ label.custom-control-label {
|
|
|
10052
10145
|
border-color: #6b6c7e;
|
|
10053
10146
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
10054
10147
|
}
|
|
10148
|
+
|
|
10055
10149
|
.custom-control-input:active ~ .custom-control-label::before {
|
|
10056
10150
|
background-color: #fff;
|
|
10057
10151
|
border-color: #6b6c7e;
|
|
@@ -10066,11 +10160,6 @@ label.custom-control-label {
|
|
|
10066
10160
|
border-color: #e7e7ed;
|
|
10067
10161
|
box-shadow: none;
|
|
10068
10162
|
}
|
|
10069
|
-
.custom-control-input:checked ~ .custom-control-label::before {
|
|
10070
|
-
background-color: #0b5fff;
|
|
10071
|
-
border-color: #0b5fff;
|
|
10072
|
-
color: #fff;
|
|
10073
|
-
}
|
|
10074
10163
|
.custom-control-input[readonly] ~ .custom-control-label {
|
|
10075
10164
|
color: #272833;
|
|
10076
10165
|
}
|
|
@@ -10090,6 +10179,9 @@ label.custom-control-label {
|
|
|
10090
10179
|
background-color: #0b5fff;
|
|
10091
10180
|
border-color: #0b5fff;
|
|
10092
10181
|
}
|
|
10182
|
+
.custom-control-input:checked[disabled], .custom-control-input:checked:disabled {
|
|
10183
|
+
cursor: not-allowed;
|
|
10184
|
+
}
|
|
10093
10185
|
.custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
10094
10186
|
background-color: #f1f2f5;
|
|
10095
10187
|
box-shadow: none;
|
|
@@ -10098,6 +10190,7 @@ label.custom-control-label {
|
|
|
10098
10190
|
background-color: #fff;
|
|
10099
10191
|
border-color: #6b6c7e;
|
|
10100
10192
|
}
|
|
10193
|
+
|
|
10101
10194
|
.custom-checkbox .custom-control-input ~ .custom-control-label::before {
|
|
10102
10195
|
border-radius: 0.125rem;
|
|
10103
10196
|
}
|
|
@@ -10105,10 +10198,6 @@ label.custom-control-label {
|
|
|
10105
10198
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M220.9%20377.2c-8%200-15.8-3.2-21.5-8.9l-91-91c-28.1-28.1%2014.8-71%2042.9-42.9l68.2%2068.2%20139.8-157.2c26.4-30%2072%2010.1%2045.6%2040.1L243.7%20366.9c-5.5%206.3-13.4%2010-21.8%2010.3h-1z'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
10106
10199
|
background-size: 100%;
|
|
10107
10200
|
}
|
|
10108
|
-
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
|
|
10109
|
-
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline'%20d='M220.9%20377.2c-8%200-15.8-3.2-21.5-8.9l-91-91c-28.1-28.1%2014.8-71%2042.9-42.9l68.2%2068.2%20139.8-157.2c26.4-30%2072%2010.1%2045.6%2040.1L243.7%20366.9c-5.5%206.3-13.4%2010-21.8%2010.3h-1z'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
10110
|
-
background-size: 100%;
|
|
10111
|
-
}
|
|
10112
10201
|
.custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
10113
10202
|
background-color: #b3cdff;
|
|
10114
10203
|
border-color: #b3cdff;
|
|
@@ -10151,6 +10240,7 @@ label.custom-control-label {
|
|
|
10151
10240
|
.custom-checkbox .custom-control-input:indeterminate[readonly][disabled] ~ .custom-control-label::after {
|
|
10152
10241
|
opacity: 0.4;
|
|
10153
10242
|
}
|
|
10243
|
+
|
|
10154
10244
|
.custom-radio .custom-control-input ~ .custom-control-label::before {
|
|
10155
10245
|
border-radius: 50%;
|
|
10156
10246
|
}
|
|
@@ -10161,14 +10251,11 @@ label.custom-control-label {
|
|
|
10161
10251
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Ccircle%20class='lexicon-icon-outline'%20cx='256'%20cy='256'%20r='256'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
10162
10252
|
background-size: 50%;
|
|
10163
10253
|
}
|
|
10164
|
-
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
|
|
10165
|
-
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Ccircle%20class='lexicon-icon-outline'%20cx='256'%20cy='256'%20r='256'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
10166
|
-
background-size: 50%;
|
|
10167
|
-
}
|
|
10168
10254
|
.custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
10169
10255
|
background-color: #b3cdff;
|
|
10170
10256
|
border-color: #b3cdff;
|
|
10171
10257
|
}
|
|
10258
|
+
|
|
10172
10259
|
.custom-control-outside label {
|
|
10173
10260
|
display: block;
|
|
10174
10261
|
padding-left: calc( 1rem + 0.5rem );
|
|
@@ -10179,6 +10266,7 @@ label.custom-control-label {
|
|
|
10179
10266
|
.custom-control-outside .custom-control-input ~ .custom-control-label::before {
|
|
10180
10267
|
position: absolute;
|
|
10181
10268
|
}
|
|
10269
|
+
|
|
10182
10270
|
.custom-control-inline {
|
|
10183
10271
|
display: inline-flex;
|
|
10184
10272
|
}
|
|
@@ -10527,9 +10615,7 @@ label.custom-control-label {
|
|
|
10527
10615
|
.clay-time .btn.focus, .clay-time .btn:focus-visible, .c-prefers-focus .clay-time .btn:focus {
|
|
10528
10616
|
box-shadow: 0 0 0 1px #5791ff;
|
|
10529
10617
|
}
|
|
10530
|
-
|
|
10531
|
-
box-shadow: 0 0 0 1px #5791ff;
|
|
10532
|
-
}
|
|
10618
|
+
|
|
10533
10619
|
.clay-time .btn .c-inner {
|
|
10534
10620
|
margin-bottom: 0;
|
|
10535
10621
|
margin-left: 0;
|
|
@@ -10704,12 +10790,10 @@ label.custom-control-label {
|
|
|
10704
10790
|
background-color: #f1f2f5;
|
|
10705
10791
|
color: #272833;
|
|
10706
10792
|
}
|
|
10793
|
+
|
|
10707
10794
|
.date-picker-nav .nav-btn:active {
|
|
10708
10795
|
background-color: #f1f2f5;
|
|
10709
10796
|
}
|
|
10710
|
-
.date-picker-nav .nav-btn:active:focus-visible, .c-prefers-focus .date-picker-nav .nav-btn:active:focus {
|
|
10711
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
10712
|
-
}
|
|
10713
10797
|
.date-picker-nav .nav-btn.active {
|
|
10714
10798
|
background-color: #f1f2f5;
|
|
10715
10799
|
}
|
|
@@ -10982,13 +11066,11 @@ label.custom-control-label {
|
|
|
10982
11066
|
background-color: #f1f2f5;
|
|
10983
11067
|
color: #272833;
|
|
10984
11068
|
}
|
|
11069
|
+
|
|
10985
11070
|
.date-picker-date:active {
|
|
10986
11071
|
background-color: #0b5fff;
|
|
10987
11072
|
color: #fff;
|
|
10988
11073
|
}
|
|
10989
|
-
.date-picker-date:active:focus-visible, .c-prefers-focus .date-picker-date:active:focus {
|
|
10990
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
10991
|
-
}
|
|
10992
11074
|
.date-picker-date.active {
|
|
10993
11075
|
background-color: #0b5fff;
|
|
10994
11076
|
color: #fff;
|
|
@@ -12301,6 +12383,7 @@ label.custom-control-label {
|
|
|
12301
12383
|
color: #6b6c7e;
|
|
12302
12384
|
text-transform: uppercase;
|
|
12303
12385
|
}
|
|
12386
|
+
|
|
12304
12387
|
.list-group-title {
|
|
12305
12388
|
font-size: 0.875rem;
|
|
12306
12389
|
font-weight: 600;
|
|
@@ -12341,6 +12424,7 @@ label.custom-control-label {
|
|
|
12341
12424
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12342
12425
|
outline: 0;
|
|
12343
12426
|
}
|
|
12427
|
+
|
|
12344
12428
|
.list-group-subtitle {
|
|
12345
12429
|
color: #6b6c7e;
|
|
12346
12430
|
margin-bottom: 0;
|
|
@@ -12376,6 +12460,7 @@ label.custom-control-label {
|
|
|
12376
12460
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12377
12461
|
outline: 0;
|
|
12378
12462
|
}
|
|
12463
|
+
|
|
12379
12464
|
.list-group-text {
|
|
12380
12465
|
color: #6b6c7e;
|
|
12381
12466
|
margin-bottom: 0;
|
|
@@ -12411,6 +12496,7 @@ label.custom-control-label {
|
|
|
12411
12496
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12412
12497
|
outline: 0;
|
|
12413
12498
|
}
|
|
12499
|
+
|
|
12414
12500
|
.list-group-subtext {
|
|
12415
12501
|
color: #6b6c7e;
|
|
12416
12502
|
margin-bottom: 0;
|
|
@@ -12447,6 +12533,7 @@ label.custom-control-label {
|
|
|
12447
12533
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12448
12534
|
outline: 0;
|
|
12449
12535
|
}
|
|
12536
|
+
|
|
12450
12537
|
.show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
|
|
12451
12538
|
background-color: #f0f5ff;
|
|
12452
12539
|
}
|
|
@@ -13436,6 +13523,7 @@ label.custom-control-label {
|
|
|
13436
13523
|
overflow-wrap: break-word;
|
|
13437
13524
|
word-wrap: break-word;
|
|
13438
13525
|
}
|
|
13526
|
+
|
|
13439
13527
|
.multi-step-item-expand {
|
|
13440
13528
|
flex-grow: 1;
|
|
13441
13529
|
width: 75px;
|
|
@@ -13673,6 +13761,7 @@ label.custom-control-label {
|
|
|
13673
13761
|
text-decoration: none;
|
|
13674
13762
|
z-index: 1;
|
|
13675
13763
|
}
|
|
13764
|
+
|
|
13676
13765
|
.nav-link:disabled, .nav-link.disabled {
|
|
13677
13766
|
color: #a7a9bc;
|
|
13678
13767
|
cursor: not-allowed;
|
|
@@ -13693,9 +13782,7 @@ label.custom-control-label {
|
|
|
13693
13782
|
.nav-link.btn-unstyled.focus, .nav-link.btn-unstyled:focus-visible, .c-prefers-focus .nav-link.btn-unstyled:focus {
|
|
13694
13783
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13695
13784
|
}
|
|
13696
|
-
|
|
13697
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13698
|
-
}
|
|
13785
|
+
|
|
13699
13786
|
.nav-link.btn-unstyled:disabled, .nav-link.btn-unstyled.disabled {
|
|
13700
13787
|
opacity: 1;
|
|
13701
13788
|
}
|
|
@@ -13718,6 +13805,7 @@ label.custom-control-label {
|
|
|
13718
13805
|
.nav-btn.focus, .nav-btn:focus-visible, .c-prefers-focus .nav-btn:focus {
|
|
13719
13806
|
z-index: 1;
|
|
13720
13807
|
}
|
|
13808
|
+
|
|
13721
13809
|
.nav-btn:disabled, .nav-btn.disabled {
|
|
13722
13810
|
opacity: 1;
|
|
13723
13811
|
}
|
|
@@ -13999,6 +14087,7 @@ label.custom-control-label {
|
|
|
13999
14087
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
14000
14088
|
outline: 0;
|
|
14001
14089
|
}
|
|
14090
|
+
|
|
14002
14091
|
.nav-tabs .nav-link:active {
|
|
14003
14092
|
background-color: #fff;
|
|
14004
14093
|
border-color: #cdced9 #cdced9 #fff;
|
|
@@ -14148,6 +14237,7 @@ label.custom-control-label {
|
|
|
14148
14237
|
right: 0;
|
|
14149
14238
|
top: 0;
|
|
14150
14239
|
}
|
|
14240
|
+
|
|
14151
14241
|
.menubar-primary .nav-link:active {
|
|
14152
14242
|
color: #272833;
|
|
14153
14243
|
}
|
|
@@ -14190,6 +14280,7 @@ label.custom-control-label {
|
|
|
14190
14280
|
.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 {
|
|
14191
14281
|
display: none;
|
|
14192
14282
|
}
|
|
14283
|
+
|
|
14193
14284
|
.menubar-primary .nav-link.collapse-icon {
|
|
14194
14285
|
font-size: 0.75rem;
|
|
14195
14286
|
font-weight: 600;
|
|
@@ -14341,6 +14432,7 @@ label.custom-control-label {
|
|
|
14341
14432
|
right: 0;
|
|
14342
14433
|
top: 0;
|
|
14343
14434
|
}
|
|
14435
|
+
|
|
14344
14436
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:active {
|
|
14345
14437
|
color: rgba(0, 0, 0, 0.9);
|
|
14346
14438
|
}
|
|
@@ -14427,6 +14519,7 @@ label.custom-control-label {
|
|
|
14427
14519
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.focus::after, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus-visible::after, .c-prefers-focus .menubar-vertical-expand-md.menubar-transparent .nav-link:focus::after {
|
|
14428
14520
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
14429
14521
|
}
|
|
14522
|
+
|
|
14430
14523
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
14431
14524
|
font-weight: 600;
|
|
14432
14525
|
background-color: rgba(11, 95, 255, 0.06);
|
|
@@ -14585,6 +14678,7 @@ label.custom-control-label {
|
|
|
14585
14678
|
right: 0;
|
|
14586
14679
|
top: 0;
|
|
14587
14680
|
}
|
|
14681
|
+
|
|
14588
14682
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:active {
|
|
14589
14683
|
color: rgba(0, 0, 0, 0.9);
|
|
14590
14684
|
}
|
|
@@ -14671,6 +14765,7 @@ label.custom-control-label {
|
|
|
14671
14765
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.focus::after, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus-visible::after, .c-prefers-focus .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus::after {
|
|
14672
14766
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
14673
14767
|
}
|
|
14768
|
+
|
|
14674
14769
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
14675
14770
|
font-weight: 600;
|
|
14676
14771
|
background-color: rgba(11, 95, 255, 0.06);
|
|
@@ -14723,7 +14818,7 @@ label.custom-control-label {
|
|
|
14723
14818
|
padding: 0.5rem 1rem;
|
|
14724
14819
|
position: relative;
|
|
14725
14820
|
}
|
|
14726
|
-
.navbar > .container-xl, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar .container,
|
|
14821
|
+
.navbar > .container-xxxl, .navbar > .container-xxl, .navbar > .container-xl, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar .container,
|
|
14727
14822
|
.navbar .container-fluid {
|
|
14728
14823
|
align-items: inherit;
|
|
14729
14824
|
background-color: inherit;
|
|
@@ -16649,6 +16744,7 @@ label.custom-control-label {
|
|
|
16649
16744
|
.application-bar .navbar-nav .nav-link.focus, .application-bar .navbar-nav .nav-link:focus-visible, .c-prefers-focus .application-bar .navbar-nav .nav-link:focus {
|
|
16650
16745
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
16651
16746
|
}
|
|
16747
|
+
|
|
16652
16748
|
.application-bar .navbar-nav .nav-link:disabled, .application-bar .navbar-nav .nav-link.disabled {
|
|
16653
16749
|
box-shadow: none;
|
|
16654
16750
|
}
|
|
@@ -16669,6 +16765,7 @@ label.custom-control-label {
|
|
|
16669
16765
|
.application-bar .navbar-brand.focus, .application-bar .navbar-brand:focus-visible, .c-prefers-focus .application-bar .navbar-brand:focus {
|
|
16670
16766
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
16671
16767
|
}
|
|
16768
|
+
|
|
16672
16769
|
.application-bar .navbar-brand:disabled, .application-bar .navbar-brand.disabled {
|
|
16673
16770
|
box-shadow: none;
|
|
16674
16771
|
}
|
|
@@ -16695,6 +16792,7 @@ label.custom-control-label {
|
|
|
16695
16792
|
.application-bar-dark .navbar-nav .nav-link.focus, .application-bar-dark .navbar-nav .nav-link:focus-visible, .c-prefers-focus .application-bar-dark .navbar-nav .nav-link:focus {
|
|
16696
16793
|
background-color: rgba(255, 255, 255, 0.03);
|
|
16697
16794
|
}
|
|
16795
|
+
|
|
16698
16796
|
.application-bar-dark .navbar-nav .nav-link:active {
|
|
16699
16797
|
color: #fff;
|
|
16700
16798
|
background-color: rgba(255, 255, 255, 0.06);
|
|
@@ -16721,6 +16819,7 @@ label.custom-control-label {
|
|
|
16721
16819
|
.application-bar-dark .navbar-brand.focus, .application-bar-dark .navbar-brand:focus-visible, .c-prefers-focus .application-bar-dark .navbar-brand:focus {
|
|
16722
16820
|
background-color: rgba(255, 255, 255, 0.03);
|
|
16723
16821
|
}
|
|
16822
|
+
|
|
16724
16823
|
.application-bar-dark .navbar-brand:active {
|
|
16725
16824
|
color: #fff;
|
|
16726
16825
|
background-color: rgba(255, 255, 255, 0.06);
|
|
@@ -17836,6 +17935,7 @@ label.custom-control-label {
|
|
|
17836
17935
|
.management-bar .navbar-nav .nav-link.focus, .management-bar .navbar-nav .nav-link:focus-visible, .c-prefers-focus .management-bar .navbar-nav .nav-link:focus {
|
|
17837
17936
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
17838
17937
|
}
|
|
17938
|
+
|
|
17839
17939
|
.management-bar .navbar-nav .nav-link:disabled, .management-bar .navbar-nav .nav-link.disabled {
|
|
17840
17940
|
box-shadow: none;
|
|
17841
17941
|
}
|
|
@@ -17856,6 +17956,7 @@ label.custom-control-label {
|
|
|
17856
17956
|
.management-bar .navbar-brand.focus, .management-bar .navbar-brand:focus-visible, .c-prefers-focus .management-bar .navbar-brand:focus {
|
|
17857
17957
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
17858
17958
|
}
|
|
17959
|
+
|
|
17859
17960
|
.management-bar .navbar-brand:disabled, .management-bar .navbar-brand.disabled {
|
|
17860
17961
|
box-shadow: none;
|
|
17861
17962
|
}
|
|
@@ -17879,6 +17980,7 @@ label.custom-control-label {
|
|
|
17879
17980
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17880
17981
|
color: #272833;
|
|
17881
17982
|
}
|
|
17983
|
+
|
|
17882
17984
|
.management-bar-light .navbar-nav .nav-link:active {
|
|
17883
17985
|
color: #272833;
|
|
17884
17986
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -17906,6 +18008,7 @@ label.custom-control-label {
|
|
|
17906
18008
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17907
18009
|
color: #272833;
|
|
17908
18010
|
}
|
|
18011
|
+
|
|
17909
18012
|
.management-bar-light .navbar-brand:active {
|
|
17910
18013
|
color: #272833;
|
|
17911
18014
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -17948,6 +18051,7 @@ label.custom-control-label {
|
|
|
17948
18051
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17949
18052
|
color: #272833;
|
|
17950
18053
|
}
|
|
18054
|
+
|
|
17951
18055
|
.management-bar-primary .navbar-nav .nav-link:active {
|
|
17952
18056
|
color: #272833;
|
|
17953
18057
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -17976,6 +18080,7 @@ label.custom-control-label {
|
|
|
17976
18080
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17977
18081
|
color: #272833;
|
|
17978
18082
|
}
|
|
18083
|
+
|
|
17979
18084
|
.management-bar-primary .navbar-brand:active {
|
|
17980
18085
|
color: #272833;
|
|
17981
18086
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -18439,6 +18544,7 @@ label.custom-control-label {
|
|
|
18439
18544
|
.navigation-bar .navbar-nav .nav-link.focus, .navigation-bar .navbar-nav .nav-link:focus-visible, .c-prefers-focus .navigation-bar .navbar-nav .nav-link:focus {
|
|
18440
18545
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
18441
18546
|
}
|
|
18547
|
+
|
|
18442
18548
|
.navigation-bar .navbar-nav .nav-link:disabled, .navigation-bar .navbar-nav .nav-link.disabled {
|
|
18443
18549
|
box-shadow: none;
|
|
18444
18550
|
}
|
|
@@ -18451,6 +18557,7 @@ label.custom-control-label {
|
|
|
18451
18557
|
.navigation-bar .navbar-brand.focus, .navigation-bar .navbar-brand:focus-visible, .c-prefers-focus .navigation-bar .navbar-brand:focus {
|
|
18452
18558
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
18453
18559
|
}
|
|
18560
|
+
|
|
18454
18561
|
.navigation-bar .navbar-brand:disabled, .navigation-bar .navbar-brand.disabled {
|
|
18455
18562
|
box-shadow: none;
|
|
18456
18563
|
}
|
|
@@ -18468,6 +18575,7 @@ label.custom-control-label {
|
|
|
18468
18575
|
.navigation-bar-light .navbar-nav .nav-link.focus, .navigation-bar-light .navbar-nav .nav-link:focus-visible, .c-prefers-focus .navigation-bar-light .navbar-nav .nav-link:focus {
|
|
18469
18576
|
color: #272833;
|
|
18470
18577
|
}
|
|
18578
|
+
|
|
18471
18579
|
.navigation-bar-light .navbar-nav .nav-link:active {
|
|
18472
18580
|
color: #272833;
|
|
18473
18581
|
}
|
|
@@ -18490,6 +18598,7 @@ label.custom-control-label {
|
|
|
18490
18598
|
.navigation-bar-light .navbar-brand.focus, .navigation-bar-light .navbar-brand:focus-visible, .c-prefers-focus .navigation-bar-light .navbar-brand:focus {
|
|
18491
18599
|
color: #272833;
|
|
18492
18600
|
}
|
|
18601
|
+
|
|
18493
18602
|
.navigation-bar-light .navbar-brand:active {
|
|
18494
18603
|
color: #272833;
|
|
18495
18604
|
}
|
|
@@ -18521,6 +18630,7 @@ label.custom-control-label {
|
|
|
18521
18630
|
.navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item.focus, .navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:focus-visible, .c-prefers-focus .navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:focus {
|
|
18522
18631
|
color: #272833;
|
|
18523
18632
|
}
|
|
18633
|
+
|
|
18524
18634
|
.navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
|
|
18525
18635
|
color: #272833;
|
|
18526
18636
|
}
|
|
@@ -18558,6 +18668,7 @@ label.custom-control-label {
|
|
|
18558
18668
|
.navigation-bar-secondary .navbar-nav .nav-link.focus, .navigation-bar-secondary .navbar-nav .nav-link:focus-visible, .c-prefers-focus .navigation-bar-secondary .navbar-nav .nav-link:focus {
|
|
18559
18669
|
color: #fff;
|
|
18560
18670
|
}
|
|
18671
|
+
|
|
18561
18672
|
.navigation-bar-secondary .navbar-nav .nav-link:active {
|
|
18562
18673
|
color: #fff;
|
|
18563
18674
|
}
|
|
@@ -18584,6 +18695,7 @@ label.custom-control-label {
|
|
|
18584
18695
|
.navigation-bar-secondary .navbar-brand.focus, .navigation-bar-secondary .navbar-brand:focus-visible, .c-prefers-focus .navigation-bar-secondary .navbar-brand:focus {
|
|
18585
18696
|
color: #fff;
|
|
18586
18697
|
}
|
|
18698
|
+
|
|
18587
18699
|
.navigation-bar-secondary .navbar-brand:active {
|
|
18588
18700
|
color: #fff;
|
|
18589
18701
|
}
|
|
@@ -18615,6 +18727,7 @@ label.custom-control-label {
|
|
|
18615
18727
|
.navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item.focus, .navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:focus-visible, .c-prefers-focus .navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:focus {
|
|
18616
18728
|
color: #fff;
|
|
18617
18729
|
}
|
|
18730
|
+
|
|
18618
18731
|
.navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
|
|
18619
18732
|
color: #fff;
|
|
18620
18733
|
}
|
|
@@ -18726,6 +18839,7 @@ label.custom-control-label {
|
|
|
18726
18839
|
right: 0;
|
|
18727
18840
|
top: 0;
|
|
18728
18841
|
}
|
|
18842
|
+
|
|
18729
18843
|
.page-link:active {
|
|
18730
18844
|
background-color: rgba(11, 95, 255, 0.06);
|
|
18731
18845
|
border-color: transparent;
|
|
@@ -18823,6 +18937,7 @@ label.custom-control-label {
|
|
|
18823
18937
|
.page-item.disabled .page-link.focus::after, .page-item.disabled .page-link:focus-visible::after, .c-prefers-focus .page-item.disabled .page-link:focus::after {
|
|
18824
18938
|
content: none;
|
|
18825
18939
|
}
|
|
18940
|
+
|
|
18826
18941
|
.page-item.disabled .page-link:active {
|
|
18827
18942
|
pointer-events: none;
|
|
18828
18943
|
}
|
|
@@ -18921,6 +19036,7 @@ label.custom-control-label {
|
|
|
18921
19036
|
right: 0;
|
|
18922
19037
|
top: 0;
|
|
18923
19038
|
}
|
|
19039
|
+
|
|
18924
19040
|
.pagination-items-per-page > a:active,
|
|
18925
19041
|
.pagination-items-per-page > button:active {
|
|
18926
19042
|
background-color: rgba(11, 95, 255, 0.06);
|
|
@@ -19013,6 +19129,7 @@ label.custom-control-label {
|
|
|
19013
19129
|
.c-prefers-focus .pagination-items-per-page.disabled > button:focus::after {
|
|
19014
19130
|
content: none;
|
|
19015
19131
|
}
|
|
19132
|
+
|
|
19016
19133
|
@media (max-width: 767.98px) {
|
|
19017
19134
|
.pagination-items-per-page + .pagination-results {
|
|
19018
19135
|
margin-left: auto;
|
|
@@ -19195,6 +19312,7 @@ label.custom-control-label {
|
|
|
19195
19312
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
19196
19313
|
outline: 0;
|
|
19197
19314
|
}
|
|
19315
|
+
|
|
19198
19316
|
.panel-header-link .collapse-icon {
|
|
19199
19317
|
padding-right: 2.28125rem;
|
|
19200
19318
|
}
|
|
@@ -19487,6 +19605,7 @@ label.custom-control-label {
|
|
|
19487
19605
|
.panel-unstyled .panel-header.panel-header-link.focus, .panel-unstyled .panel-header.panel-header-link:focus-visible, .c-prefers-focus .panel-unstyled .panel-header.panel-header-link:focus {
|
|
19488
19606
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
19489
19607
|
}
|
|
19608
|
+
|
|
19490
19609
|
.panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-closed,
|
|
19491
19610
|
.panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-open {
|
|
19492
19611
|
right: 0;
|
|
@@ -20309,6 +20428,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20309
20428
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
20310
20429
|
outline: 0;
|
|
20311
20430
|
}
|
|
20431
|
+
|
|
20312
20432
|
.sheet-tertiary-title {
|
|
20313
20433
|
color: #1c1c24;
|
|
20314
20434
|
display: block;
|
|
@@ -20557,6 +20677,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20557
20677
|
overflow-wrap: break-word;
|
|
20558
20678
|
word-wrap: break-word;
|
|
20559
20679
|
}
|
|
20680
|
+
|
|
20560
20681
|
.sidebar-footer {
|
|
20561
20682
|
padding-bottom: 1rem;
|
|
20562
20683
|
padding-left: 1rem;
|
|
@@ -20638,10 +20759,12 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20638
20759
|
margin-bottom: 0.25rem;
|
|
20639
20760
|
text-transform: uppercase;
|
|
20640
20761
|
}
|
|
20762
|
+
|
|
20641
20763
|
.sidebar-dd {
|
|
20642
20764
|
font-size: 0.875rem;
|
|
20643
20765
|
margin-bottom: 0.75rem;
|
|
20644
20766
|
}
|
|
20767
|
+
|
|
20645
20768
|
.sidebar-sm {
|
|
20646
20769
|
font-size: 0.875rem;
|
|
20647
20770
|
}
|
|
@@ -20683,6 +20806,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20683
20806
|
.sidebar-light .panel-unstyled .panel-header.panel-header-link.focus, .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus-visible, .c-prefers-focus .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
|
|
20684
20807
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
20685
20808
|
}
|
|
20809
|
+
|
|
20686
20810
|
.sidebar-light .component-navigation-bar {
|
|
20687
20811
|
background-color: #fff;
|
|
20688
20812
|
border-color: #cdced9;
|
|
@@ -20768,6 +20892,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20768
20892
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
20769
20893
|
outline: 0;
|
|
20770
20894
|
}
|
|
20895
|
+
|
|
20771
20896
|
.sidebar-dark .nav-nested .nav-link:active {
|
|
20772
20897
|
color: #fff;
|
|
20773
20898
|
}
|
|
@@ -20830,6 +20955,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20830
20955
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
20831
20956
|
outline: 0;
|
|
20832
20957
|
}
|
|
20958
|
+
|
|
20833
20959
|
.sidebar-dark-l2 .nav-nested .nav-link:active {
|
|
20834
20960
|
color: #fff;
|
|
20835
20961
|
}
|
|
@@ -21062,6 +21188,7 @@ caption {
|
|
|
21062
21188
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21063
21189
|
outline: 0;
|
|
21064
21190
|
}
|
|
21191
|
+
|
|
21065
21192
|
.table thead .autofit-col {
|
|
21066
21193
|
padding-left: 0.125rem;
|
|
21067
21194
|
padding-right: 0.125rem;
|
|
@@ -21163,6 +21290,7 @@ caption {
|
|
|
21163
21290
|
.table .component-drag.focus, .table .component-drag:focus-visible, .c-prefers-focus .table .component-drag:focus {
|
|
21164
21291
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
21165
21292
|
}
|
|
21293
|
+
|
|
21166
21294
|
.table .custom-control,
|
|
21167
21295
|
.table .form-check {
|
|
21168
21296
|
margin-bottom: 0;
|
|
@@ -21551,6 +21679,7 @@ td.table-focus {
|
|
|
21551
21679
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21552
21680
|
outline: 0;
|
|
21553
21681
|
}
|
|
21682
|
+
|
|
21554
21683
|
.table-link {
|
|
21555
21684
|
color: #272833;
|
|
21556
21685
|
border-radius: 1px;
|
|
@@ -21574,6 +21703,7 @@ td.table-focus {
|
|
|
21574
21703
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21575
21704
|
outline: 0;
|
|
21576
21705
|
}
|
|
21706
|
+
|
|
21577
21707
|
.table-action-link {
|
|
21578
21708
|
align-items: center;
|
|
21579
21709
|
border-radius: 0.25rem;
|
|
@@ -21606,6 +21736,7 @@ td.table-focus {
|
|
|
21606
21736
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21607
21737
|
outline: 0;
|
|
21608
21738
|
}
|
|
21739
|
+
|
|
21609
21740
|
.table-action-link:active {
|
|
21610
21741
|
background-color: rgba(0, 0, 0, 0.04);
|
|
21611
21742
|
}
|
|
@@ -21879,6 +22010,7 @@ td.table-focus {
|
|
|
21879
22010
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21880
22011
|
outline: 0;
|
|
21881
22012
|
}
|
|
22013
|
+
|
|
21882
22014
|
.table-list-link {
|
|
21883
22015
|
color: #272833;
|
|
21884
22016
|
border-radius: 1px;
|
|
@@ -21902,6 +22034,7 @@ td.table-focus {
|
|
|
21902
22034
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21903
22035
|
outline: 0;
|
|
21904
22036
|
}
|
|
22037
|
+
|
|
21905
22038
|
.table-list-action-link {
|
|
21906
22039
|
align-items: center;
|
|
21907
22040
|
display: inline-flex;
|
|
@@ -21933,6 +22066,7 @@ td.table-focus {
|
|
|
21933
22066
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21934
22067
|
outline: 0;
|
|
21935
22068
|
}
|
|
22069
|
+
|
|
21936
22070
|
.table-list-action-link:active {
|
|
21937
22071
|
background-color: rgba(0, 0, 0, 0.04);
|
|
21938
22072
|
}
|
|
@@ -22647,9 +22781,7 @@ td.table-focus {
|
|
|
22647
22781
|
.tbar-stacked .tbar-btn-monospaced.focus, .tbar-stacked .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-stacked .tbar-btn-monospaced:focus {
|
|
22648
22782
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
22649
22783
|
}
|
|
22650
|
-
|
|
22651
|
-
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
22652
|
-
}
|
|
22784
|
+
|
|
22653
22785
|
.tbar-stacked .tbar-btn-monospaced .c-inner {
|
|
22654
22786
|
margin-bottom: 0;
|
|
22655
22787
|
margin-left: 0;
|
|
@@ -22676,6 +22808,7 @@ td.table-focus {
|
|
|
22676
22808
|
.tbar-light .tbar-btn-monospaced.focus, .tbar-light .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-light .tbar-btn-monospaced:focus {
|
|
22677
22809
|
color: #272833;
|
|
22678
22810
|
}
|
|
22811
|
+
|
|
22679
22812
|
.tbar-light .tbar-btn-monospaced:active {
|
|
22680
22813
|
background-color: #f1f2f5;
|
|
22681
22814
|
color: #272833;
|
|
@@ -22712,6 +22845,7 @@ td.table-focus {
|
|
|
22712
22845
|
.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 {
|
|
22713
22846
|
color: #fff;
|
|
22714
22847
|
}
|
|
22848
|
+
|
|
22715
22849
|
.tbar-dark-l2 .tbar-btn-monospaced:active {
|
|
22716
22850
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22717
22851
|
color: #fff;
|
|
@@ -22747,6 +22881,7 @@ td.table-focus {
|
|
|
22747
22881
|
.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 {
|
|
22748
22882
|
color: #fff;
|
|
22749
22883
|
}
|
|
22884
|
+
|
|
22750
22885
|
.tbar-dark-d1 .tbar-btn-monospaced:active {
|
|
22751
22886
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22752
22887
|
color: #fff;
|
|
@@ -22755,6 +22890,16 @@ td.table-focus {
|
|
|
22755
22890
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22756
22891
|
color: #fff;
|
|
22757
22892
|
}
|
|
22893
|
+
.tbar-dark-d1 .tbar-btn-monospaced.active::after {
|
|
22894
|
+
background-color: #80acff;
|
|
22895
|
+
bottom: 0;
|
|
22896
|
+
content: "";
|
|
22897
|
+
display: block;
|
|
22898
|
+
left: 0;
|
|
22899
|
+
position: absolute;
|
|
22900
|
+
top: 0;
|
|
22901
|
+
width: 0.25rem;
|
|
22902
|
+
}
|
|
22758
22903
|
.tbar-dark-d1 .tbar-btn-monospaced:disabled, .tbar-dark-d1 .tbar-btn-monospaced.disabled {
|
|
22759
22904
|
color: inherit;
|
|
22760
22905
|
}
|
|
@@ -22762,6 +22907,16 @@ td.table-focus {
|
|
|
22762
22907
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22763
22908
|
color: #fff;
|
|
22764
22909
|
}
|
|
22910
|
+
.tbar-dark-d1 .tbar-btn-monospaced[aria-expanded=true]::after, .tbar-dark-d1 .tbar-btn-monospaced.show::after {
|
|
22911
|
+
background-color: #80acff;
|
|
22912
|
+
bottom: 0;
|
|
22913
|
+
content: "";
|
|
22914
|
+
display: block;
|
|
22915
|
+
left: 0;
|
|
22916
|
+
position: absolute;
|
|
22917
|
+
top: 0;
|
|
22918
|
+
width: 0.25rem;
|
|
22919
|
+
}
|
|
22765
22920
|
.tbar-dark-d1 .tbar-label {
|
|
22766
22921
|
border-width: 0.0625rem;
|
|
22767
22922
|
}
|
|
@@ -23693,9 +23848,7 @@ td.table-focus {
|
|
|
23693
23848
|
.treeview .btn-monospaced.focus, .treeview .btn-monospaced:focus-visible, .c-prefers-focus .treeview .btn-monospaced:focus {
|
|
23694
23849
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23695
23850
|
}
|
|
23696
|
-
|
|
23697
|
-
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23698
|
-
}
|
|
23851
|
+
|
|
23699
23852
|
.treeview .custom-control {
|
|
23700
23853
|
margin-left: 4px;
|
|
23701
23854
|
margin-right: 4px;
|
|
@@ -23719,6 +23872,7 @@ td.table-focus {
|
|
|
23719
23872
|
.treeview .component-action.focus, .treeview .component-action:focus-visible, .c-prefers-focus .treeview .component-action:focus {
|
|
23720
23873
|
color: #6b6c7e;
|
|
23721
23874
|
}
|
|
23875
|
+
|
|
23722
23876
|
.treeview .component-action:active {
|
|
23723
23877
|
background-color: transparent;
|
|
23724
23878
|
}
|
|
@@ -23852,6 +24006,7 @@ td.table-focus {
|
|
|
23852
24006
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23853
24007
|
outline: 0;
|
|
23854
24008
|
}
|
|
24009
|
+
|
|
23855
24010
|
.treeview-link:disabled, .treeview-link.disabled {
|
|
23856
24011
|
cursor: not-allowed;
|
|
23857
24012
|
}
|
|
@@ -23910,6 +24065,7 @@ td.table-focus {
|
|
|
23910
24065
|
.treeview-light .treeview-link.focus, .treeview-light .treeview-link:focus-visible, .c-prefers-focus .treeview-light .treeview-link:focus {
|
|
23911
24066
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23912
24067
|
}
|
|
24068
|
+
|
|
23913
24069
|
.treeview-light .treeview-link:active {
|
|
23914
24070
|
background-color: #f0f5ff;
|
|
23915
24071
|
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
@@ -23933,6 +24089,7 @@ td.table-focus {
|
|
|
23933
24089
|
.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 {
|
|
23934
24090
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23935
24091
|
}
|
|
24092
|
+
|
|
23936
24093
|
.treeview-light .treeview-link.treeview-no-hover:hover, .treeview-light .treeview-link.treeview-no-hover.hover {
|
|
23937
24094
|
background-color: transparent;
|
|
23938
24095
|
color: #6b6c7e;
|
|
@@ -23953,6 +24110,7 @@ td.table-focus {
|
|
|
23953
24110
|
.treeview-dark .treeview-link.focus, .treeview-dark .treeview-link:focus-visible, .c-prefers-focus .treeview-dark .treeview-link:focus {
|
|
23954
24111
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23955
24112
|
}
|
|
24113
|
+
|
|
23956
24114
|
.treeview-dark .treeview-link:active {
|
|
23957
24115
|
background-color: #393a4a;
|
|
23958
24116
|
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
@@ -23976,6 +24134,7 @@ td.table-focus {
|
|
|
23976
24134
|
.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 {
|
|
23977
24135
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23978
24136
|
}
|
|
24137
|
+
|
|
23979
24138
|
.treeview-dark .treeview-link.treeview-no-hover:hover, .treeview-dark .treeview-link.treeview-no-hover.hover {
|
|
23980
24139
|
background-color: transparent;
|
|
23981
24140
|
color: #a7a9bc;
|