@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.
- package/lib/css/atlas.css +224 -58
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +176 -74
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +423 -272
- 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 +8 -0
- package/src/scss/cadmin/components/_grid.scss +3 -1
- package/src/scss/cadmin/components/_multi-step-nav.scss +4 -2
- package/src/scss/cadmin/variables/_dropdowns.scss +18 -6
- package/src/scss/cadmin/variables/_globals.scss +4 -0
- package/src/scss/cadmin/variables/_multi-step-nav.scss +2 -2
- package/src/scss/components/_grid.scss +3 -1
- package/src/scss/components/_multi-step-nav.scss +4 -2
- package/src/scss/functions/_global-functions.scss +8 -2
- package/src/scss/mixins/_alerts.scss +104 -48
- package/src/scss/mixins/_badges.scss +75 -33
- package/src/scss/mixins/_buttons.scss +503 -250
- package/src/scss/mixins/_cards.scss +619 -302
- package/src/scss/mixins/_close.scss +42 -49
- package/src/scss/mixins/_custom-forms.scss +864 -606
- package/src/scss/mixins/_dropdown-menu.scss +476 -239
- package/src/scss/mixins/_forms.scss +4 -79
- package/src/scss/mixins/_links.scss +565 -308
- package/src/scss/mixins/_modals.scss +1 -26
- package/src/scss/mixins/_popovers.scss +1 -26
- package/src/scss/mixins/_sidebar.scss +3 -28
- package/src/scss/mixins/_slideout.scss +1 -26
- package/src/scss/mixins/_toggle-switch.scss +6 -31
- package/src/scss/variables/_dropdowns.scss +18 -6
- package/src/scss/variables/_globals.scss +8 -0
- package/src/scss/variables/_multi-step-nav.scss +2 -2
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;
|
|
@@ -6896,6 +6960,7 @@ input[type=button].btn-block {
|
|
|
6896
6960
|
width: auto;
|
|
6897
6961
|
}
|
|
6898
6962
|
.dropdown-item.autofit-row {
|
|
6963
|
+
align-items: center;
|
|
6899
6964
|
padding-left: calc(1rem - 0.25rem);
|
|
6900
6965
|
padding-right: calc(1rem - 0.25rem);
|
|
6901
6966
|
}
|
|
@@ -6904,6 +6969,7 @@ input[type=button].btn-block {
|
|
|
6904
6969
|
padding-right: 0.25rem;
|
|
6905
6970
|
}
|
|
6906
6971
|
.dropdown-item .autofit-row {
|
|
6972
|
+
align-items: center;
|
|
6907
6973
|
margin-left: -0.25rem;
|
|
6908
6974
|
margin-right: -0.25rem;
|
|
6909
6975
|
width: auto;
|
|
@@ -6922,6 +6988,17 @@ input[type=button].btn-block {
|
|
|
6922
6988
|
.dropdown-item .custom-control-label {
|
|
6923
6989
|
font-weight: 400;
|
|
6924
6990
|
}
|
|
6991
|
+
.dropdown-item .inline-item {
|
|
6992
|
+
line-height: 1;
|
|
6993
|
+
}
|
|
6994
|
+
.dropdown-item .inline-item .lexicon-icon {
|
|
6995
|
+
font-size: 1rem;
|
|
6996
|
+
margin-top: 0;
|
|
6997
|
+
}
|
|
6998
|
+
.dropdown-item .label {
|
|
6999
|
+
margin-bottom: 0;
|
|
7000
|
+
margin-top: 0.3125rem;
|
|
7001
|
+
}
|
|
6925
7002
|
.dropdown-item .form-check {
|
|
6926
7003
|
margin-bottom: 0;
|
|
6927
7004
|
}
|
|
@@ -7070,10 +7147,6 @@ input[type=button].btn-block {
|
|
|
7070
7147
|
margin-top: -0.3125rem;
|
|
7071
7148
|
width: auto;
|
|
7072
7149
|
}
|
|
7073
|
-
.dropdown-menu-select.dropdown-menu .dropdown-item.autofit-row {
|
|
7074
|
-
padding-left: 1.5rem;
|
|
7075
|
-
padding-right: 0.5rem;
|
|
7076
|
-
}
|
|
7077
7150
|
.dropdown-menu-select.dropdown-menu .dropdown-item-scroll {
|
|
7078
7151
|
font-size: 1rem;
|
|
7079
7152
|
height: 2rem;
|
|
@@ -7092,6 +7165,7 @@ input[type=button].btn-block {
|
|
|
7092
7165
|
background-image: none;
|
|
7093
7166
|
color: #272833;
|
|
7094
7167
|
}
|
|
7168
|
+
|
|
7095
7169
|
.dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active {
|
|
7096
7170
|
background-color: #f0f5ff;
|
|
7097
7171
|
background-image: none;
|
|
@@ -7150,12 +7224,14 @@ input[type=button].btn-block {
|
|
|
7150
7224
|
}
|
|
7151
7225
|
.dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-start .dropdown-item-indicator-start {
|
|
7152
7226
|
left: 0.5rem;
|
|
7153
|
-
top: 0.5rem;
|
|
7154
7227
|
}
|
|
7155
7228
|
.dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-end .dropdown-item-indicator-end {
|
|
7156
7229
|
right: 0.5rem;
|
|
7157
|
-
top: 0.5rem;
|
|
7158
7230
|
}
|
|
7231
|
+
.dropdown-menu-select.dropdown-menu .inline-scroller {
|
|
7232
|
+
max-height: 224px;
|
|
7233
|
+
}
|
|
7234
|
+
|
|
7159
7235
|
.dropdown-menu-select.dropdown-menu-height-lg .inline-scroller {
|
|
7160
7236
|
max-height: 432px;
|
|
7161
7237
|
}
|
|
@@ -7324,6 +7400,7 @@ input[type=button].btn-block {
|
|
|
7324
7400
|
width: 1rem;
|
|
7325
7401
|
}
|
|
7326
7402
|
.dropdown-item-indicator-start .lexicon-icon {
|
|
7403
|
+
font-size: 1rem;
|
|
7327
7404
|
margin-top: 0;
|
|
7328
7405
|
}
|
|
7329
7406
|
|
|
@@ -7342,6 +7419,7 @@ input[type=button].btn-block {
|
|
|
7342
7419
|
color: inherit;
|
|
7343
7420
|
text-decoration: inherit;
|
|
7344
7421
|
}
|
|
7422
|
+
|
|
7345
7423
|
.dropdown-item-indicator-text-start > .c-inner {
|
|
7346
7424
|
margin-left: -1.75rem;
|
|
7347
7425
|
}
|
|
@@ -7379,6 +7457,7 @@ input[type=button].btn-block {
|
|
|
7379
7457
|
width: 1rem;
|
|
7380
7458
|
}
|
|
7381
7459
|
.dropdown-item-indicator-end .lexicon-icon {
|
|
7460
|
+
font-size: 16px;
|
|
7382
7461
|
margin-top: 0;
|
|
7383
7462
|
}
|
|
7384
7463
|
|
|
@@ -7397,6 +7476,7 @@ input[type=button].btn-block {
|
|
|
7397
7476
|
color: inherit;
|
|
7398
7477
|
text-decoration: inherit;
|
|
7399
7478
|
}
|
|
7479
|
+
|
|
7400
7480
|
.dropdown-item-indicator-text-end > .c-inner {
|
|
7401
7481
|
margin-right: -1.75rem;
|
|
7402
7482
|
}
|
|
@@ -7410,6 +7490,7 @@ input[type=button].btn-block {
|
|
|
7410
7490
|
transform: none !important;
|
|
7411
7491
|
will-change: auto !important;
|
|
7412
7492
|
}
|
|
7493
|
+
|
|
7413
7494
|
.dropdown-menu-top-right {
|
|
7414
7495
|
bottom: 100% !important;
|
|
7415
7496
|
left: auto !important;
|
|
@@ -7420,6 +7501,7 @@ input[type=button].btn-block {
|
|
|
7420
7501
|
transform: none !important;
|
|
7421
7502
|
will-change: auto !important;
|
|
7422
7503
|
}
|
|
7504
|
+
|
|
7423
7505
|
.dropdown-menu-top-center {
|
|
7424
7506
|
bottom: 100% !important;
|
|
7425
7507
|
left: 50% !important;
|
|
@@ -7430,6 +7512,7 @@ input[type=button].btn-block {
|
|
|
7430
7512
|
transform: translateX(-50%) !important;
|
|
7431
7513
|
will-change: auto !important;
|
|
7432
7514
|
}
|
|
7515
|
+
|
|
7433
7516
|
.dropdown-menu-center {
|
|
7434
7517
|
bottom: auto !important;
|
|
7435
7518
|
left: 50% !important;
|
|
@@ -7438,6 +7521,7 @@ input[type=button].btn-block {
|
|
|
7438
7521
|
transform: translateX(-50%) !important;
|
|
7439
7522
|
will-change: auto !important;
|
|
7440
7523
|
}
|
|
7524
|
+
|
|
7441
7525
|
.dropdown-menu-left-side {
|
|
7442
7526
|
bottom: auto !important;
|
|
7443
7527
|
left: auto !important;
|
|
@@ -7448,6 +7532,7 @@ input[type=button].btn-block {
|
|
|
7448
7532
|
transform: none !important;
|
|
7449
7533
|
will-change: auto !important;
|
|
7450
7534
|
}
|
|
7535
|
+
|
|
7451
7536
|
.dropdown-menu-left-side-bottom {
|
|
7452
7537
|
bottom: 0 !important;
|
|
7453
7538
|
left: auto !important;
|
|
@@ -7458,6 +7543,7 @@ input[type=button].btn-block {
|
|
|
7458
7543
|
transform: none !important;
|
|
7459
7544
|
will-change: auto !important;
|
|
7460
7545
|
}
|
|
7546
|
+
|
|
7461
7547
|
.dropdown-menu-left-side-middle {
|
|
7462
7548
|
bottom: auto !important;
|
|
7463
7549
|
left: auto !important;
|
|
@@ -7468,6 +7554,7 @@ input[type=button].btn-block {
|
|
|
7468
7554
|
transform: translate(0, -50%) !important;
|
|
7469
7555
|
will-change: auto !important;
|
|
7470
7556
|
}
|
|
7557
|
+
|
|
7471
7558
|
.dropdown-menu-right-side {
|
|
7472
7559
|
bottom: auto !important;
|
|
7473
7560
|
left: 100% !important;
|
|
@@ -7478,6 +7565,7 @@ input[type=button].btn-block {
|
|
|
7478
7565
|
transform: none !important;
|
|
7479
7566
|
will-change: auto !important;
|
|
7480
7567
|
}
|
|
7568
|
+
|
|
7481
7569
|
.dropdown-menu-right-side-bottom {
|
|
7482
7570
|
bottom: 0 !important;
|
|
7483
7571
|
left: 100% !important;
|
|
@@ -7488,6 +7576,7 @@ input[type=button].btn-block {
|
|
|
7488
7576
|
transform: none !important;
|
|
7489
7577
|
will-change: auto !important;
|
|
7490
7578
|
}
|
|
7579
|
+
|
|
7491
7580
|
.dropdown-menu-right-side-middle {
|
|
7492
7581
|
bottom: auto !important;
|
|
7493
7582
|
left: 100% !important;
|
|
@@ -7498,6 +7587,7 @@ input[type=button].btn-block {
|
|
|
7498
7587
|
transform: translate(0, -50%) !important;
|
|
7499
7588
|
will-change: auto !important;
|
|
7500
7589
|
}
|
|
7590
|
+
|
|
7501
7591
|
.dropdown-full .dropdown-menu,
|
|
7502
7592
|
.dropdown-wide .dropdown-menu {
|
|
7503
7593
|
max-width: none;
|
|
@@ -7531,6 +7621,7 @@ input[type=button].btn-block {
|
|
|
7531
7621
|
.dropdown-menu-width-shrink {
|
|
7532
7622
|
min-width: 0;
|
|
7533
7623
|
}
|
|
7624
|
+
|
|
7534
7625
|
.dropdown-menu-width-full {
|
|
7535
7626
|
left: 12px !important;
|
|
7536
7627
|
right: 12px !important;
|
|
@@ -7571,6 +7662,7 @@ input[type=button].btn-block {
|
|
|
7571
7662
|
max-width: none;
|
|
7572
7663
|
width: 100%;
|
|
7573
7664
|
}
|
|
7665
|
+
|
|
7574
7666
|
.nav-item.dropdown-full {
|
|
7575
7667
|
position: static;
|
|
7576
7668
|
}
|
|
@@ -8659,6 +8751,7 @@ textarea.form-control-lg,
|
|
|
8659
8751
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8660
8752
|
outline: 0;
|
|
8661
8753
|
}
|
|
8754
|
+
|
|
8662
8755
|
.c-link.text-secondary {
|
|
8663
8756
|
color: #272833 !important;
|
|
8664
8757
|
}
|
|
@@ -8668,6 +8761,7 @@ textarea.form-control-lg,
|
|
|
8668
8761
|
.c-link.text-secondary.focus, .c-link.text-secondary:focus-visible, .c-prefers-focus .c-link.text-secondary:focus {
|
|
8669
8762
|
color: #000 !important;
|
|
8670
8763
|
}
|
|
8764
|
+
|
|
8671
8765
|
.c-link.text-tertiary {
|
|
8672
8766
|
color: #272833 !important;
|
|
8673
8767
|
}
|
|
@@ -8697,6 +8791,7 @@ textarea.form-control-lg,
|
|
|
8697
8791
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8698
8792
|
outline: 0;
|
|
8699
8793
|
}
|
|
8794
|
+
|
|
8700
8795
|
.single-link {
|
|
8701
8796
|
font-weight: 600;
|
|
8702
8797
|
}
|
|
@@ -8724,6 +8819,7 @@ textarea.form-control-lg,
|
|
|
8724
8819
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8725
8820
|
outline: 0;
|
|
8726
8821
|
}
|
|
8822
|
+
|
|
8727
8823
|
.link-secondary {
|
|
8728
8824
|
color: #6b6c7e;
|
|
8729
8825
|
border-radius: 1px;
|
|
@@ -8747,6 +8843,7 @@ textarea.form-control-lg,
|
|
|
8747
8843
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8748
8844
|
outline: 0;
|
|
8749
8845
|
}
|
|
8846
|
+
|
|
8750
8847
|
button.link-outline {
|
|
8751
8848
|
cursor: pointer;
|
|
8752
8849
|
}
|
|
@@ -8786,6 +8883,7 @@ button.link-outline {
|
|
|
8786
8883
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8787
8884
|
outline: 0;
|
|
8788
8885
|
}
|
|
8886
|
+
|
|
8789
8887
|
.link-outline:disabled, .link-outline.disabled {
|
|
8790
8888
|
box-shadow: none;
|
|
8791
8889
|
}
|
|
@@ -8815,6 +8913,7 @@ button.link-outline {
|
|
|
8815
8913
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8816
8914
|
color: #0b5fff;
|
|
8817
8915
|
}
|
|
8916
|
+
|
|
8818
8917
|
.link-outline-primary:active {
|
|
8819
8918
|
background-color: #e6edf8;
|
|
8820
8919
|
color: #0b5fff;
|
|
@@ -8847,6 +8946,7 @@ button.link-outline {
|
|
|
8847
8946
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8848
8947
|
color: #272833;
|
|
8849
8948
|
}
|
|
8949
|
+
|
|
8850
8950
|
.link-outline-secondary:active {
|
|
8851
8951
|
background-color: rgba(39, 40, 51, 0.06);
|
|
8852
8952
|
color: #272833;
|
|
@@ -8930,6 +9030,7 @@ button.link-outline {
|
|
|
8930
9030
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8931
9031
|
outline: 0;
|
|
8932
9032
|
}
|
|
9033
|
+
|
|
8933
9034
|
.component-subtitle {
|
|
8934
9035
|
color: #6b6c7e;
|
|
8935
9036
|
margin-bottom: 0;
|
|
@@ -8966,6 +9067,7 @@ button.link-outline {
|
|
|
8966
9067
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8967
9068
|
outline: 0;
|
|
8968
9069
|
}
|
|
9070
|
+
|
|
8969
9071
|
.component-action {
|
|
8970
9072
|
align-items: center;
|
|
8971
9073
|
background-color: transparent;
|
|
@@ -9002,6 +9104,7 @@ button.link-outline {
|
|
|
9002
9104
|
background-color: rgba(39, 40, 51, 0.03);
|
|
9003
9105
|
color: #272833;
|
|
9004
9106
|
}
|
|
9107
|
+
|
|
9005
9108
|
.component-action:active {
|
|
9006
9109
|
background-color: rgba(39, 40, 51, 0.06);
|
|
9007
9110
|
color: #272833;
|
|
@@ -9556,9 +9659,7 @@ button.link-outline {
|
|
|
9556
9659
|
box-shadow: 0 0 0 0.125rem #5791ff;
|
|
9557
9660
|
outline: 0;
|
|
9558
9661
|
}
|
|
9559
|
-
|
|
9560
|
-
box-shadow: 0 0 0 0.125rem #5791ff;
|
|
9561
|
-
}
|
|
9662
|
+
|
|
9562
9663
|
.clay-color-pointer .c-inner {
|
|
9563
9664
|
margin-bottom: 0;
|
|
9564
9665
|
margin-left: 0;
|
|
@@ -9578,6 +9679,7 @@ button.link-outline {
|
|
|
9578
9679
|
font-weight: 600;
|
|
9579
9680
|
max-width: calc(100% - 2rem);
|
|
9580
9681
|
}
|
|
9682
|
+
|
|
9581
9683
|
.clay-color-footer {
|
|
9582
9684
|
margin-bottom: 1rem;
|
|
9583
9685
|
}
|
|
@@ -10043,6 +10145,7 @@ label.custom-control-label {
|
|
|
10043
10145
|
border-color: #6b6c7e;
|
|
10044
10146
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
10045
10147
|
}
|
|
10148
|
+
|
|
10046
10149
|
.custom-control-input:active ~ .custom-control-label::before {
|
|
10047
10150
|
background-color: #fff;
|
|
10048
10151
|
border-color: #6b6c7e;
|
|
@@ -10057,11 +10160,6 @@ label.custom-control-label {
|
|
|
10057
10160
|
border-color: #e7e7ed;
|
|
10058
10161
|
box-shadow: none;
|
|
10059
10162
|
}
|
|
10060
|
-
.custom-control-input:checked ~ .custom-control-label::before {
|
|
10061
|
-
background-color: #0b5fff;
|
|
10062
|
-
border-color: #0b5fff;
|
|
10063
|
-
color: #fff;
|
|
10064
|
-
}
|
|
10065
10163
|
.custom-control-input[readonly] ~ .custom-control-label {
|
|
10066
10164
|
color: #272833;
|
|
10067
10165
|
}
|
|
@@ -10081,6 +10179,9 @@ label.custom-control-label {
|
|
|
10081
10179
|
background-color: #0b5fff;
|
|
10082
10180
|
border-color: #0b5fff;
|
|
10083
10181
|
}
|
|
10182
|
+
.custom-control-input:checked[disabled], .custom-control-input:checked:disabled {
|
|
10183
|
+
cursor: not-allowed;
|
|
10184
|
+
}
|
|
10084
10185
|
.custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
10085
10186
|
background-color: #f1f2f5;
|
|
10086
10187
|
box-shadow: none;
|
|
@@ -10089,6 +10190,7 @@ label.custom-control-label {
|
|
|
10089
10190
|
background-color: #fff;
|
|
10090
10191
|
border-color: #6b6c7e;
|
|
10091
10192
|
}
|
|
10193
|
+
|
|
10092
10194
|
.custom-checkbox .custom-control-input ~ .custom-control-label::before {
|
|
10093
10195
|
border-radius: 0.125rem;
|
|
10094
10196
|
}
|
|
@@ -10096,10 +10198,6 @@ label.custom-control-label {
|
|
|
10096
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");
|
|
10097
10199
|
background-size: 100%;
|
|
10098
10200
|
}
|
|
10099
|
-
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
|
|
10100
|
-
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");
|
|
10101
|
-
background-size: 100%;
|
|
10102
|
-
}
|
|
10103
10201
|
.custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
10104
10202
|
background-color: #b3cdff;
|
|
10105
10203
|
border-color: #b3cdff;
|
|
@@ -10142,6 +10240,7 @@ label.custom-control-label {
|
|
|
10142
10240
|
.custom-checkbox .custom-control-input:indeterminate[readonly][disabled] ~ .custom-control-label::after {
|
|
10143
10241
|
opacity: 0.4;
|
|
10144
10242
|
}
|
|
10243
|
+
|
|
10145
10244
|
.custom-radio .custom-control-input ~ .custom-control-label::before {
|
|
10146
10245
|
border-radius: 50%;
|
|
10147
10246
|
}
|
|
@@ -10152,14 +10251,11 @@ label.custom-control-label {
|
|
|
10152
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");
|
|
10153
10252
|
background-size: 50%;
|
|
10154
10253
|
}
|
|
10155
|
-
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
|
|
10156
|
-
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");
|
|
10157
|
-
background-size: 50%;
|
|
10158
|
-
}
|
|
10159
10254
|
.custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
10160
10255
|
background-color: #b3cdff;
|
|
10161
10256
|
border-color: #b3cdff;
|
|
10162
10257
|
}
|
|
10258
|
+
|
|
10163
10259
|
.custom-control-outside label {
|
|
10164
10260
|
display: block;
|
|
10165
10261
|
padding-left: calc( 1rem + 0.5rem );
|
|
@@ -10170,6 +10266,7 @@ label.custom-control-label {
|
|
|
10170
10266
|
.custom-control-outside .custom-control-input ~ .custom-control-label::before {
|
|
10171
10267
|
position: absolute;
|
|
10172
10268
|
}
|
|
10269
|
+
|
|
10173
10270
|
.custom-control-inline {
|
|
10174
10271
|
display: inline-flex;
|
|
10175
10272
|
}
|
|
@@ -10518,9 +10615,7 @@ label.custom-control-label {
|
|
|
10518
10615
|
.clay-time .btn.focus, .clay-time .btn:focus-visible, .c-prefers-focus .clay-time .btn:focus {
|
|
10519
10616
|
box-shadow: 0 0 0 1px #5791ff;
|
|
10520
10617
|
}
|
|
10521
|
-
|
|
10522
|
-
box-shadow: 0 0 0 1px #5791ff;
|
|
10523
|
-
}
|
|
10618
|
+
|
|
10524
10619
|
.clay-time .btn .c-inner {
|
|
10525
10620
|
margin-bottom: 0;
|
|
10526
10621
|
margin-left: 0;
|
|
@@ -10695,12 +10790,10 @@ label.custom-control-label {
|
|
|
10695
10790
|
background-color: #f1f2f5;
|
|
10696
10791
|
color: #272833;
|
|
10697
10792
|
}
|
|
10793
|
+
|
|
10698
10794
|
.date-picker-nav .nav-btn:active {
|
|
10699
10795
|
background-color: #f1f2f5;
|
|
10700
10796
|
}
|
|
10701
|
-
.date-picker-nav .nav-btn:active:focus-visible, .c-prefers-focus .date-picker-nav .nav-btn:active:focus {
|
|
10702
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
10703
|
-
}
|
|
10704
10797
|
.date-picker-nav .nav-btn.active {
|
|
10705
10798
|
background-color: #f1f2f5;
|
|
10706
10799
|
}
|
|
@@ -10973,13 +11066,11 @@ label.custom-control-label {
|
|
|
10973
11066
|
background-color: #f1f2f5;
|
|
10974
11067
|
color: #272833;
|
|
10975
11068
|
}
|
|
11069
|
+
|
|
10976
11070
|
.date-picker-date:active {
|
|
10977
11071
|
background-color: #0b5fff;
|
|
10978
11072
|
color: #fff;
|
|
10979
11073
|
}
|
|
10980
|
-
.date-picker-date:active:focus-visible, .c-prefers-focus .date-picker-date:active:focus {
|
|
10981
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
10982
|
-
}
|
|
10983
11074
|
.date-picker-date.active {
|
|
10984
11075
|
background-color: #0b5fff;
|
|
10985
11076
|
color: #fff;
|
|
@@ -12292,6 +12383,7 @@ label.custom-control-label {
|
|
|
12292
12383
|
color: #6b6c7e;
|
|
12293
12384
|
text-transform: uppercase;
|
|
12294
12385
|
}
|
|
12386
|
+
|
|
12295
12387
|
.list-group-title {
|
|
12296
12388
|
font-size: 0.875rem;
|
|
12297
12389
|
font-weight: 600;
|
|
@@ -12332,6 +12424,7 @@ label.custom-control-label {
|
|
|
12332
12424
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12333
12425
|
outline: 0;
|
|
12334
12426
|
}
|
|
12427
|
+
|
|
12335
12428
|
.list-group-subtitle {
|
|
12336
12429
|
color: #6b6c7e;
|
|
12337
12430
|
margin-bottom: 0;
|
|
@@ -12367,6 +12460,7 @@ label.custom-control-label {
|
|
|
12367
12460
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12368
12461
|
outline: 0;
|
|
12369
12462
|
}
|
|
12463
|
+
|
|
12370
12464
|
.list-group-text {
|
|
12371
12465
|
color: #6b6c7e;
|
|
12372
12466
|
margin-bottom: 0;
|
|
@@ -12402,6 +12496,7 @@ label.custom-control-label {
|
|
|
12402
12496
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12403
12497
|
outline: 0;
|
|
12404
12498
|
}
|
|
12499
|
+
|
|
12405
12500
|
.list-group-subtext {
|
|
12406
12501
|
color: #6b6c7e;
|
|
12407
12502
|
margin-bottom: 0;
|
|
@@ -12438,6 +12533,7 @@ label.custom-control-label {
|
|
|
12438
12533
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12439
12534
|
outline: 0;
|
|
12440
12535
|
}
|
|
12536
|
+
|
|
12441
12537
|
.show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
|
|
12442
12538
|
background-color: #f0f5ff;
|
|
12443
12539
|
}
|
|
@@ -13407,7 +13503,7 @@ label.custom-control-label {
|
|
|
13407
13503
|
cursor: not-allowed;
|
|
13408
13504
|
opacity: 1;
|
|
13409
13505
|
}
|
|
13410
|
-
.multi-step-item.disabled .multi-step-icon.focus, .multi-step-item.disabled .multi-step-icon:focus-visible {
|
|
13506
|
+
.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 {
|
|
13411
13507
|
box-shadow: none;
|
|
13412
13508
|
}
|
|
13413
13509
|
|
|
@@ -13427,6 +13523,7 @@ label.custom-control-label {
|
|
|
13427
13523
|
overflow-wrap: break-word;
|
|
13428
13524
|
word-wrap: break-word;
|
|
13429
13525
|
}
|
|
13526
|
+
|
|
13430
13527
|
.multi-step-item-expand {
|
|
13431
13528
|
flex-grow: 1;
|
|
13432
13529
|
width: 75px;
|
|
@@ -13504,10 +13601,8 @@ label.custom-control-label {
|
|
|
13504
13601
|
color: #6b6c7e;
|
|
13505
13602
|
text-decoration: none;
|
|
13506
13603
|
}
|
|
13507
|
-
.multi-step-icon.focus, .multi-step-icon:focus-visible {
|
|
13508
|
-
background-color: #e7e7ed;
|
|
13604
|
+
.multi-step-icon.focus, .multi-step-icon:focus-visible, .c-prefers-focus .multi-step-icon:focus {
|
|
13509
13605
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13510
|
-
color: #6b6c7e;
|
|
13511
13606
|
outline: 0;
|
|
13512
13607
|
text-decoration: none;
|
|
13513
13608
|
}
|
|
@@ -13666,6 +13761,7 @@ label.custom-control-label {
|
|
|
13666
13761
|
text-decoration: none;
|
|
13667
13762
|
z-index: 1;
|
|
13668
13763
|
}
|
|
13764
|
+
|
|
13669
13765
|
.nav-link:disabled, .nav-link.disabled {
|
|
13670
13766
|
color: #a7a9bc;
|
|
13671
13767
|
cursor: not-allowed;
|
|
@@ -13686,9 +13782,7 @@ label.custom-control-label {
|
|
|
13686
13782
|
.nav-link.btn-unstyled.focus, .nav-link.btn-unstyled:focus-visible, .c-prefers-focus .nav-link.btn-unstyled:focus {
|
|
13687
13783
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13688
13784
|
}
|
|
13689
|
-
|
|
13690
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13691
|
-
}
|
|
13785
|
+
|
|
13692
13786
|
.nav-link.btn-unstyled:disabled, .nav-link.btn-unstyled.disabled {
|
|
13693
13787
|
opacity: 1;
|
|
13694
13788
|
}
|
|
@@ -13711,6 +13805,7 @@ label.custom-control-label {
|
|
|
13711
13805
|
.nav-btn.focus, .nav-btn:focus-visible, .c-prefers-focus .nav-btn:focus {
|
|
13712
13806
|
z-index: 1;
|
|
13713
13807
|
}
|
|
13808
|
+
|
|
13714
13809
|
.nav-btn:disabled, .nav-btn.disabled {
|
|
13715
13810
|
opacity: 1;
|
|
13716
13811
|
}
|
|
@@ -13992,6 +14087,7 @@ label.custom-control-label {
|
|
|
13992
14087
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13993
14088
|
outline: 0;
|
|
13994
14089
|
}
|
|
14090
|
+
|
|
13995
14091
|
.nav-tabs .nav-link:active {
|
|
13996
14092
|
background-color: #fff;
|
|
13997
14093
|
border-color: #cdced9 #cdced9 #fff;
|
|
@@ -14141,6 +14237,7 @@ label.custom-control-label {
|
|
|
14141
14237
|
right: 0;
|
|
14142
14238
|
top: 0;
|
|
14143
14239
|
}
|
|
14240
|
+
|
|
14144
14241
|
.menubar-primary .nav-link:active {
|
|
14145
14242
|
color: #272833;
|
|
14146
14243
|
}
|
|
@@ -14183,6 +14280,7 @@ label.custom-control-label {
|
|
|
14183
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 {
|
|
14184
14281
|
display: none;
|
|
14185
14282
|
}
|
|
14283
|
+
|
|
14186
14284
|
.menubar-primary .nav-link.collapse-icon {
|
|
14187
14285
|
font-size: 0.75rem;
|
|
14188
14286
|
font-weight: 600;
|
|
@@ -14334,6 +14432,7 @@ label.custom-control-label {
|
|
|
14334
14432
|
right: 0;
|
|
14335
14433
|
top: 0;
|
|
14336
14434
|
}
|
|
14435
|
+
|
|
14337
14436
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:active {
|
|
14338
14437
|
color: rgba(0, 0, 0, 0.9);
|
|
14339
14438
|
}
|
|
@@ -14420,6 +14519,7 @@ label.custom-control-label {
|
|
|
14420
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 {
|
|
14421
14520
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
14422
14521
|
}
|
|
14522
|
+
|
|
14423
14523
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
14424
14524
|
font-weight: 600;
|
|
14425
14525
|
background-color: rgba(11, 95, 255, 0.06);
|
|
@@ -14578,6 +14678,7 @@ label.custom-control-label {
|
|
|
14578
14678
|
right: 0;
|
|
14579
14679
|
top: 0;
|
|
14580
14680
|
}
|
|
14681
|
+
|
|
14581
14682
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:active {
|
|
14582
14683
|
color: rgba(0, 0, 0, 0.9);
|
|
14583
14684
|
}
|
|
@@ -14664,6 +14765,7 @@ label.custom-control-label {
|
|
|
14664
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 {
|
|
14665
14766
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
14666
14767
|
}
|
|
14768
|
+
|
|
14667
14769
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
14668
14770
|
font-weight: 600;
|
|
14669
14771
|
background-color: rgba(11, 95, 255, 0.06);
|
|
@@ -14716,7 +14818,7 @@ label.custom-control-label {
|
|
|
14716
14818
|
padding: 0.5rem 1rem;
|
|
14717
14819
|
position: relative;
|
|
14718
14820
|
}
|
|
14719
|
-
.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,
|
|
14720
14822
|
.navbar .container-fluid {
|
|
14721
14823
|
align-items: inherit;
|
|
14722
14824
|
background-color: inherit;
|
|
@@ -16642,6 +16744,7 @@ label.custom-control-label {
|
|
|
16642
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 {
|
|
16643
16745
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
16644
16746
|
}
|
|
16747
|
+
|
|
16645
16748
|
.application-bar .navbar-nav .nav-link:disabled, .application-bar .navbar-nav .nav-link.disabled {
|
|
16646
16749
|
box-shadow: none;
|
|
16647
16750
|
}
|
|
@@ -16662,6 +16765,7 @@ label.custom-control-label {
|
|
|
16662
16765
|
.application-bar .navbar-brand.focus, .application-bar .navbar-brand:focus-visible, .c-prefers-focus .application-bar .navbar-brand:focus {
|
|
16663
16766
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
16664
16767
|
}
|
|
16768
|
+
|
|
16665
16769
|
.application-bar .navbar-brand:disabled, .application-bar .navbar-brand.disabled {
|
|
16666
16770
|
box-shadow: none;
|
|
16667
16771
|
}
|
|
@@ -16688,6 +16792,7 @@ label.custom-control-label {
|
|
|
16688
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 {
|
|
16689
16793
|
background-color: rgba(255, 255, 255, 0.03);
|
|
16690
16794
|
}
|
|
16795
|
+
|
|
16691
16796
|
.application-bar-dark .navbar-nav .nav-link:active {
|
|
16692
16797
|
color: #fff;
|
|
16693
16798
|
background-color: rgba(255, 255, 255, 0.06);
|
|
@@ -16714,6 +16819,7 @@ label.custom-control-label {
|
|
|
16714
16819
|
.application-bar-dark .navbar-brand.focus, .application-bar-dark .navbar-brand:focus-visible, .c-prefers-focus .application-bar-dark .navbar-brand:focus {
|
|
16715
16820
|
background-color: rgba(255, 255, 255, 0.03);
|
|
16716
16821
|
}
|
|
16822
|
+
|
|
16717
16823
|
.application-bar-dark .navbar-brand:active {
|
|
16718
16824
|
color: #fff;
|
|
16719
16825
|
background-color: rgba(255, 255, 255, 0.06);
|
|
@@ -17829,6 +17935,7 @@ label.custom-control-label {
|
|
|
17829
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 {
|
|
17830
17936
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
17831
17937
|
}
|
|
17938
|
+
|
|
17832
17939
|
.management-bar .navbar-nav .nav-link:disabled, .management-bar .navbar-nav .nav-link.disabled {
|
|
17833
17940
|
box-shadow: none;
|
|
17834
17941
|
}
|
|
@@ -17849,6 +17956,7 @@ label.custom-control-label {
|
|
|
17849
17956
|
.management-bar .navbar-brand.focus, .management-bar .navbar-brand:focus-visible, .c-prefers-focus .management-bar .navbar-brand:focus {
|
|
17850
17957
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
17851
17958
|
}
|
|
17959
|
+
|
|
17852
17960
|
.management-bar .navbar-brand:disabled, .management-bar .navbar-brand.disabled {
|
|
17853
17961
|
box-shadow: none;
|
|
17854
17962
|
}
|
|
@@ -17872,6 +17980,7 @@ label.custom-control-label {
|
|
|
17872
17980
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17873
17981
|
color: #272833;
|
|
17874
17982
|
}
|
|
17983
|
+
|
|
17875
17984
|
.management-bar-light .navbar-nav .nav-link:active {
|
|
17876
17985
|
color: #272833;
|
|
17877
17986
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -17899,6 +18008,7 @@ label.custom-control-label {
|
|
|
17899
18008
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17900
18009
|
color: #272833;
|
|
17901
18010
|
}
|
|
18011
|
+
|
|
17902
18012
|
.management-bar-light .navbar-brand:active {
|
|
17903
18013
|
color: #272833;
|
|
17904
18014
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -17941,6 +18051,7 @@ label.custom-control-label {
|
|
|
17941
18051
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17942
18052
|
color: #272833;
|
|
17943
18053
|
}
|
|
18054
|
+
|
|
17944
18055
|
.management-bar-primary .navbar-nav .nav-link:active {
|
|
17945
18056
|
color: #272833;
|
|
17946
18057
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -17969,6 +18080,7 @@ label.custom-control-label {
|
|
|
17969
18080
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17970
18081
|
color: #272833;
|
|
17971
18082
|
}
|
|
18083
|
+
|
|
17972
18084
|
.management-bar-primary .navbar-brand:active {
|
|
17973
18085
|
color: #272833;
|
|
17974
18086
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -18432,6 +18544,7 @@ label.custom-control-label {
|
|
|
18432
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 {
|
|
18433
18545
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
18434
18546
|
}
|
|
18547
|
+
|
|
18435
18548
|
.navigation-bar .navbar-nav .nav-link:disabled, .navigation-bar .navbar-nav .nav-link.disabled {
|
|
18436
18549
|
box-shadow: none;
|
|
18437
18550
|
}
|
|
@@ -18444,6 +18557,7 @@ label.custom-control-label {
|
|
|
18444
18557
|
.navigation-bar .navbar-brand.focus, .navigation-bar .navbar-brand:focus-visible, .c-prefers-focus .navigation-bar .navbar-brand:focus {
|
|
18445
18558
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
18446
18559
|
}
|
|
18560
|
+
|
|
18447
18561
|
.navigation-bar .navbar-brand:disabled, .navigation-bar .navbar-brand.disabled {
|
|
18448
18562
|
box-shadow: none;
|
|
18449
18563
|
}
|
|
@@ -18461,6 +18575,7 @@ label.custom-control-label {
|
|
|
18461
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 {
|
|
18462
18576
|
color: #272833;
|
|
18463
18577
|
}
|
|
18578
|
+
|
|
18464
18579
|
.navigation-bar-light .navbar-nav .nav-link:active {
|
|
18465
18580
|
color: #272833;
|
|
18466
18581
|
}
|
|
@@ -18483,6 +18598,7 @@ label.custom-control-label {
|
|
|
18483
18598
|
.navigation-bar-light .navbar-brand.focus, .navigation-bar-light .navbar-brand:focus-visible, .c-prefers-focus .navigation-bar-light .navbar-brand:focus {
|
|
18484
18599
|
color: #272833;
|
|
18485
18600
|
}
|
|
18601
|
+
|
|
18486
18602
|
.navigation-bar-light .navbar-brand:active {
|
|
18487
18603
|
color: #272833;
|
|
18488
18604
|
}
|
|
@@ -18514,6 +18630,7 @@ label.custom-control-label {
|
|
|
18514
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 {
|
|
18515
18631
|
color: #272833;
|
|
18516
18632
|
}
|
|
18633
|
+
|
|
18517
18634
|
.navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
|
|
18518
18635
|
color: #272833;
|
|
18519
18636
|
}
|
|
@@ -18551,6 +18668,7 @@ label.custom-control-label {
|
|
|
18551
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 {
|
|
18552
18669
|
color: #fff;
|
|
18553
18670
|
}
|
|
18671
|
+
|
|
18554
18672
|
.navigation-bar-secondary .navbar-nav .nav-link:active {
|
|
18555
18673
|
color: #fff;
|
|
18556
18674
|
}
|
|
@@ -18577,6 +18695,7 @@ label.custom-control-label {
|
|
|
18577
18695
|
.navigation-bar-secondary .navbar-brand.focus, .navigation-bar-secondary .navbar-brand:focus-visible, .c-prefers-focus .navigation-bar-secondary .navbar-brand:focus {
|
|
18578
18696
|
color: #fff;
|
|
18579
18697
|
}
|
|
18698
|
+
|
|
18580
18699
|
.navigation-bar-secondary .navbar-brand:active {
|
|
18581
18700
|
color: #fff;
|
|
18582
18701
|
}
|
|
@@ -18608,6 +18727,7 @@ label.custom-control-label {
|
|
|
18608
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 {
|
|
18609
18728
|
color: #fff;
|
|
18610
18729
|
}
|
|
18730
|
+
|
|
18611
18731
|
.navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
|
|
18612
18732
|
color: #fff;
|
|
18613
18733
|
}
|
|
@@ -18719,6 +18839,7 @@ label.custom-control-label {
|
|
|
18719
18839
|
right: 0;
|
|
18720
18840
|
top: 0;
|
|
18721
18841
|
}
|
|
18842
|
+
|
|
18722
18843
|
.page-link:active {
|
|
18723
18844
|
background-color: rgba(11, 95, 255, 0.06);
|
|
18724
18845
|
border-color: transparent;
|
|
@@ -18816,6 +18937,7 @@ label.custom-control-label {
|
|
|
18816
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 {
|
|
18817
18938
|
content: none;
|
|
18818
18939
|
}
|
|
18940
|
+
|
|
18819
18941
|
.page-item.disabled .page-link:active {
|
|
18820
18942
|
pointer-events: none;
|
|
18821
18943
|
}
|
|
@@ -18914,6 +19036,7 @@ label.custom-control-label {
|
|
|
18914
19036
|
right: 0;
|
|
18915
19037
|
top: 0;
|
|
18916
19038
|
}
|
|
19039
|
+
|
|
18917
19040
|
.pagination-items-per-page > a:active,
|
|
18918
19041
|
.pagination-items-per-page > button:active {
|
|
18919
19042
|
background-color: rgba(11, 95, 255, 0.06);
|
|
@@ -19006,6 +19129,7 @@ label.custom-control-label {
|
|
|
19006
19129
|
.c-prefers-focus .pagination-items-per-page.disabled > button:focus::after {
|
|
19007
19130
|
content: none;
|
|
19008
19131
|
}
|
|
19132
|
+
|
|
19009
19133
|
@media (max-width: 767.98px) {
|
|
19010
19134
|
.pagination-items-per-page + .pagination-results {
|
|
19011
19135
|
margin-left: auto;
|
|
@@ -19188,6 +19312,7 @@ label.custom-control-label {
|
|
|
19188
19312
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
19189
19313
|
outline: 0;
|
|
19190
19314
|
}
|
|
19315
|
+
|
|
19191
19316
|
.panel-header-link .collapse-icon {
|
|
19192
19317
|
padding-right: 2.28125rem;
|
|
19193
19318
|
}
|
|
@@ -19480,6 +19605,7 @@ label.custom-control-label {
|
|
|
19480
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 {
|
|
19481
19606
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
19482
19607
|
}
|
|
19608
|
+
|
|
19483
19609
|
.panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-closed,
|
|
19484
19610
|
.panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-open {
|
|
19485
19611
|
right: 0;
|
|
@@ -20302,6 +20428,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20302
20428
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
20303
20429
|
outline: 0;
|
|
20304
20430
|
}
|
|
20431
|
+
|
|
20305
20432
|
.sheet-tertiary-title {
|
|
20306
20433
|
color: #1c1c24;
|
|
20307
20434
|
display: block;
|
|
@@ -20550,6 +20677,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20550
20677
|
overflow-wrap: break-word;
|
|
20551
20678
|
word-wrap: break-word;
|
|
20552
20679
|
}
|
|
20680
|
+
|
|
20553
20681
|
.sidebar-footer {
|
|
20554
20682
|
padding-bottom: 1rem;
|
|
20555
20683
|
padding-left: 1rem;
|
|
@@ -20631,10 +20759,12 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20631
20759
|
margin-bottom: 0.25rem;
|
|
20632
20760
|
text-transform: uppercase;
|
|
20633
20761
|
}
|
|
20762
|
+
|
|
20634
20763
|
.sidebar-dd {
|
|
20635
20764
|
font-size: 0.875rem;
|
|
20636
20765
|
margin-bottom: 0.75rem;
|
|
20637
20766
|
}
|
|
20767
|
+
|
|
20638
20768
|
.sidebar-sm {
|
|
20639
20769
|
font-size: 0.875rem;
|
|
20640
20770
|
}
|
|
@@ -20676,6 +20806,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20676
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 {
|
|
20677
20807
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
20678
20808
|
}
|
|
20809
|
+
|
|
20679
20810
|
.sidebar-light .component-navigation-bar {
|
|
20680
20811
|
background-color: #fff;
|
|
20681
20812
|
border-color: #cdced9;
|
|
@@ -20761,6 +20892,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20761
20892
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
20762
20893
|
outline: 0;
|
|
20763
20894
|
}
|
|
20895
|
+
|
|
20764
20896
|
.sidebar-dark .nav-nested .nav-link:active {
|
|
20765
20897
|
color: #fff;
|
|
20766
20898
|
}
|
|
@@ -20823,6 +20955,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20823
20955
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
20824
20956
|
outline: 0;
|
|
20825
20957
|
}
|
|
20958
|
+
|
|
20826
20959
|
.sidebar-dark-l2 .nav-nested .nav-link:active {
|
|
20827
20960
|
color: #fff;
|
|
20828
20961
|
}
|
|
@@ -21055,6 +21188,7 @@ caption {
|
|
|
21055
21188
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21056
21189
|
outline: 0;
|
|
21057
21190
|
}
|
|
21191
|
+
|
|
21058
21192
|
.table thead .autofit-col {
|
|
21059
21193
|
padding-left: 0.125rem;
|
|
21060
21194
|
padding-right: 0.125rem;
|
|
@@ -21156,6 +21290,7 @@ caption {
|
|
|
21156
21290
|
.table .component-drag.focus, .table .component-drag:focus-visible, .c-prefers-focus .table .component-drag:focus {
|
|
21157
21291
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
21158
21292
|
}
|
|
21293
|
+
|
|
21159
21294
|
.table .custom-control,
|
|
21160
21295
|
.table .form-check {
|
|
21161
21296
|
margin-bottom: 0;
|
|
@@ -21544,6 +21679,7 @@ td.table-focus {
|
|
|
21544
21679
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21545
21680
|
outline: 0;
|
|
21546
21681
|
}
|
|
21682
|
+
|
|
21547
21683
|
.table-link {
|
|
21548
21684
|
color: #272833;
|
|
21549
21685
|
border-radius: 1px;
|
|
@@ -21567,6 +21703,7 @@ td.table-focus {
|
|
|
21567
21703
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21568
21704
|
outline: 0;
|
|
21569
21705
|
}
|
|
21706
|
+
|
|
21570
21707
|
.table-action-link {
|
|
21571
21708
|
align-items: center;
|
|
21572
21709
|
border-radius: 0.25rem;
|
|
@@ -21599,6 +21736,7 @@ td.table-focus {
|
|
|
21599
21736
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21600
21737
|
outline: 0;
|
|
21601
21738
|
}
|
|
21739
|
+
|
|
21602
21740
|
.table-action-link:active {
|
|
21603
21741
|
background-color: rgba(0, 0, 0, 0.04);
|
|
21604
21742
|
}
|
|
@@ -21872,6 +22010,7 @@ td.table-focus {
|
|
|
21872
22010
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21873
22011
|
outline: 0;
|
|
21874
22012
|
}
|
|
22013
|
+
|
|
21875
22014
|
.table-list-link {
|
|
21876
22015
|
color: #272833;
|
|
21877
22016
|
border-radius: 1px;
|
|
@@ -21895,6 +22034,7 @@ td.table-focus {
|
|
|
21895
22034
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21896
22035
|
outline: 0;
|
|
21897
22036
|
}
|
|
22037
|
+
|
|
21898
22038
|
.table-list-action-link {
|
|
21899
22039
|
align-items: center;
|
|
21900
22040
|
display: inline-flex;
|
|
@@ -21926,6 +22066,7 @@ td.table-focus {
|
|
|
21926
22066
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21927
22067
|
outline: 0;
|
|
21928
22068
|
}
|
|
22069
|
+
|
|
21929
22070
|
.table-list-action-link:active {
|
|
21930
22071
|
background-color: rgba(0, 0, 0, 0.04);
|
|
21931
22072
|
}
|
|
@@ -22640,9 +22781,7 @@ td.table-focus {
|
|
|
22640
22781
|
.tbar-stacked .tbar-btn-monospaced.focus, .tbar-stacked .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-stacked .tbar-btn-monospaced:focus {
|
|
22641
22782
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
22642
22783
|
}
|
|
22643
|
-
|
|
22644
|
-
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
22645
|
-
}
|
|
22784
|
+
|
|
22646
22785
|
.tbar-stacked .tbar-btn-monospaced .c-inner {
|
|
22647
22786
|
margin-bottom: 0;
|
|
22648
22787
|
margin-left: 0;
|
|
@@ -22669,6 +22808,7 @@ td.table-focus {
|
|
|
22669
22808
|
.tbar-light .tbar-btn-monospaced.focus, .tbar-light .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-light .tbar-btn-monospaced:focus {
|
|
22670
22809
|
color: #272833;
|
|
22671
22810
|
}
|
|
22811
|
+
|
|
22672
22812
|
.tbar-light .tbar-btn-monospaced:active {
|
|
22673
22813
|
background-color: #f1f2f5;
|
|
22674
22814
|
color: #272833;
|
|
@@ -22705,6 +22845,7 @@ td.table-focus {
|
|
|
22705
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 {
|
|
22706
22846
|
color: #fff;
|
|
22707
22847
|
}
|
|
22848
|
+
|
|
22708
22849
|
.tbar-dark-l2 .tbar-btn-monospaced:active {
|
|
22709
22850
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22710
22851
|
color: #fff;
|
|
@@ -22740,6 +22881,7 @@ td.table-focus {
|
|
|
22740
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 {
|
|
22741
22882
|
color: #fff;
|
|
22742
22883
|
}
|
|
22884
|
+
|
|
22743
22885
|
.tbar-dark-d1 .tbar-btn-monospaced:active {
|
|
22744
22886
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22745
22887
|
color: #fff;
|
|
@@ -22748,6 +22890,16 @@ td.table-focus {
|
|
|
22748
22890
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22749
22891
|
color: #fff;
|
|
22750
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
|
+
}
|
|
22751
22903
|
.tbar-dark-d1 .tbar-btn-monospaced:disabled, .tbar-dark-d1 .tbar-btn-monospaced.disabled {
|
|
22752
22904
|
color: inherit;
|
|
22753
22905
|
}
|
|
@@ -22755,6 +22907,16 @@ td.table-focus {
|
|
|
22755
22907
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22756
22908
|
color: #fff;
|
|
22757
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
|
+
}
|
|
22758
22920
|
.tbar-dark-d1 .tbar-label {
|
|
22759
22921
|
border-width: 0.0625rem;
|
|
22760
22922
|
}
|
|
@@ -23686,9 +23848,7 @@ td.table-focus {
|
|
|
23686
23848
|
.treeview .btn-monospaced.focus, .treeview .btn-monospaced:focus-visible, .c-prefers-focus .treeview .btn-monospaced:focus {
|
|
23687
23849
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23688
23850
|
}
|
|
23689
|
-
|
|
23690
|
-
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23691
|
-
}
|
|
23851
|
+
|
|
23692
23852
|
.treeview .custom-control {
|
|
23693
23853
|
margin-left: 4px;
|
|
23694
23854
|
margin-right: 4px;
|
|
@@ -23712,6 +23872,7 @@ td.table-focus {
|
|
|
23712
23872
|
.treeview .component-action.focus, .treeview .component-action:focus-visible, .c-prefers-focus .treeview .component-action:focus {
|
|
23713
23873
|
color: #6b6c7e;
|
|
23714
23874
|
}
|
|
23875
|
+
|
|
23715
23876
|
.treeview .component-action:active {
|
|
23716
23877
|
background-color: transparent;
|
|
23717
23878
|
}
|
|
@@ -23845,6 +24006,7 @@ td.table-focus {
|
|
|
23845
24006
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23846
24007
|
outline: 0;
|
|
23847
24008
|
}
|
|
24009
|
+
|
|
23848
24010
|
.treeview-link:disabled, .treeview-link.disabled {
|
|
23849
24011
|
cursor: not-allowed;
|
|
23850
24012
|
}
|
|
@@ -23903,6 +24065,7 @@ td.table-focus {
|
|
|
23903
24065
|
.treeview-light .treeview-link.focus, .treeview-light .treeview-link:focus-visible, .c-prefers-focus .treeview-light .treeview-link:focus {
|
|
23904
24066
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23905
24067
|
}
|
|
24068
|
+
|
|
23906
24069
|
.treeview-light .treeview-link:active {
|
|
23907
24070
|
background-color: #f0f5ff;
|
|
23908
24071
|
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
@@ -23926,6 +24089,7 @@ td.table-focus {
|
|
|
23926
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 {
|
|
23927
24090
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23928
24091
|
}
|
|
24092
|
+
|
|
23929
24093
|
.treeview-light .treeview-link.treeview-no-hover:hover, .treeview-light .treeview-link.treeview-no-hover.hover {
|
|
23930
24094
|
background-color: transparent;
|
|
23931
24095
|
color: #6b6c7e;
|
|
@@ -23946,6 +24110,7 @@ td.table-focus {
|
|
|
23946
24110
|
.treeview-dark .treeview-link.focus, .treeview-dark .treeview-link:focus-visible, .c-prefers-focus .treeview-dark .treeview-link:focus {
|
|
23947
24111
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23948
24112
|
}
|
|
24113
|
+
|
|
23949
24114
|
.treeview-dark .treeview-link:active {
|
|
23950
24115
|
background-color: #393a4a;
|
|
23951
24116
|
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
@@ -23969,6 +24134,7 @@ td.table-focus {
|
|
|
23969
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 {
|
|
23970
24135
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23971
24136
|
}
|
|
24137
|
+
|
|
23972
24138
|
.treeview-dark .treeview-link.treeview-no-hover:hover, .treeview-dark .treeview-link.treeview-no-hover.hover {
|
|
23973
24139
|
background-color: transparent;
|
|
23974
24140
|
color: #a7a9bc;
|