@clayui/css 3.127.0 → 3.130.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 +254 -72
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +205 -94
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +238 -74
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/send.svg +9 -0
- package/lib/images/icons/speed.svg +10 -0
- package/lib/images/icons/voice.svg +9 -0
- package/package.json +2 -2
- package/src/images/icons/send.svg +9 -0
- package/src/images/icons/speed.svg +10 -0
- package/src/images/icons/voice.svg +9 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_forms.scss +1 -0
- package/src/scss/atlas/variables/_globals.scss +2 -0
- package/src/scss/cadmin/components/_dropdowns.scss +10 -0
- package/src/scss/cadmin/components/_forms.scss +16 -14
- package/src/scss/cadmin/components/_grid.scss +3 -1
- package/src/scss/cadmin/components/_input-groups.scss +12 -1
- package/src/scss/cadmin/components/_type.scss +5 -1
- package/src/scss/cadmin/components/_utilities-functional-important.scss +11 -0
- package/src/scss/cadmin/variables/_custom-forms.scss +1 -1
- package/src/scss/cadmin/variables/_dropdowns.scss +3 -0
- package/src/scss/cadmin/variables/_forms.scss +15 -0
- package/src/scss/cadmin/variables/_globals.scss +2 -0
- package/src/scss/cadmin/variables/_utilities.scss +16 -0
- package/src/scss/components/_dropdowns.scss +10 -0
- package/src/scss/components/_forms.scss +16 -14
- package/src/scss/components/_grid.scss +3 -1
- package/src/scss/components/_input-groups.scss +12 -1
- package/src/scss/components/_type.scss +5 -1
- package/src/scss/components/_utilities-functional-important.scss +8 -0
- package/src/scss/functions/_lx-icons-generated.scss +6 -0
- 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/_forms.scss +0 -13
- package/src/scss/mixins/_links.scss +564 -282
- package/src/scss/variables/_custom-forms.scss +1 -1
- package/src/scss/variables/_dropdowns.scss +3 -0
- package/src/scss/variables/_forms.scss +10 -0
- package/src/scss/variables/_globals.scss +2 -0
- package/src/scss/variables/_utilities.scss +16 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.130.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,
|
|
@@ -388,7 +389,7 @@ mark.clay-dark,
|
|
|
388
389
|
background-color: #393a4a;
|
|
389
390
|
color: #fff;
|
|
390
391
|
}
|
|
391
|
-
.list-unstyled {
|
|
392
|
+
.dropdown-section-grid, .list-unstyled {
|
|
392
393
|
list-style: none;
|
|
393
394
|
padding-left: 0;
|
|
394
395
|
}
|
|
@@ -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;
|
|
@@ -6976,6 +7040,14 @@ input[type=button].btn-block {
|
|
|
6976
7040
|
color: #272833;
|
|
6977
7041
|
}
|
|
6978
7042
|
|
|
7043
|
+
.dropdown-section-grid {
|
|
7044
|
+
display: grid;
|
|
7045
|
+
gap: 0.5rem 0.75rem;
|
|
7046
|
+
grid-template-columns: repeat(9, 1fr);
|
|
7047
|
+
margin-bottom: 0;
|
|
7048
|
+
padding: 0.375rem 1rem;
|
|
7049
|
+
}
|
|
7050
|
+
|
|
6979
7051
|
.dropdown-footer {
|
|
6980
7052
|
box-shadow: -1px -2px 3px -3px rgba(0, 0, 0, 0.5);
|
|
6981
7053
|
padding: 0.5rem 1rem 0;
|
|
@@ -7101,6 +7173,7 @@ input[type=button].btn-block {
|
|
|
7101
7173
|
background-image: none;
|
|
7102
7174
|
color: #272833;
|
|
7103
7175
|
}
|
|
7176
|
+
|
|
7104
7177
|
.dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active {
|
|
7105
7178
|
background-color: #f0f5ff;
|
|
7106
7179
|
background-image: none;
|
|
@@ -7163,6 +7236,10 @@ input[type=button].btn-block {
|
|
|
7163
7236
|
.dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-end .dropdown-item-indicator-end {
|
|
7164
7237
|
right: 0.5rem;
|
|
7165
7238
|
}
|
|
7239
|
+
.dropdown-menu-select.dropdown-menu .inline-scroller {
|
|
7240
|
+
max-height: 224px;
|
|
7241
|
+
}
|
|
7242
|
+
|
|
7166
7243
|
.dropdown-menu-select.dropdown-menu-height-lg .inline-scroller {
|
|
7167
7244
|
max-height: 432px;
|
|
7168
7245
|
}
|
|
@@ -7350,6 +7427,7 @@ input[type=button].btn-block {
|
|
|
7350
7427
|
color: inherit;
|
|
7351
7428
|
text-decoration: inherit;
|
|
7352
7429
|
}
|
|
7430
|
+
|
|
7353
7431
|
.dropdown-item-indicator-text-start > .c-inner {
|
|
7354
7432
|
margin-left: -1.75rem;
|
|
7355
7433
|
}
|
|
@@ -7406,6 +7484,7 @@ input[type=button].btn-block {
|
|
|
7406
7484
|
color: inherit;
|
|
7407
7485
|
text-decoration: inherit;
|
|
7408
7486
|
}
|
|
7487
|
+
|
|
7409
7488
|
.dropdown-item-indicator-text-end > .c-inner {
|
|
7410
7489
|
margin-right: -1.75rem;
|
|
7411
7490
|
}
|
|
@@ -7419,6 +7498,7 @@ input[type=button].btn-block {
|
|
|
7419
7498
|
transform: none !important;
|
|
7420
7499
|
will-change: auto !important;
|
|
7421
7500
|
}
|
|
7501
|
+
|
|
7422
7502
|
.dropdown-menu-top-right {
|
|
7423
7503
|
bottom: 100% !important;
|
|
7424
7504
|
left: auto !important;
|
|
@@ -7429,6 +7509,7 @@ input[type=button].btn-block {
|
|
|
7429
7509
|
transform: none !important;
|
|
7430
7510
|
will-change: auto !important;
|
|
7431
7511
|
}
|
|
7512
|
+
|
|
7432
7513
|
.dropdown-menu-top-center {
|
|
7433
7514
|
bottom: 100% !important;
|
|
7434
7515
|
left: 50% !important;
|
|
@@ -7439,6 +7520,7 @@ input[type=button].btn-block {
|
|
|
7439
7520
|
transform: translateX(-50%) !important;
|
|
7440
7521
|
will-change: auto !important;
|
|
7441
7522
|
}
|
|
7523
|
+
|
|
7442
7524
|
.dropdown-menu-center {
|
|
7443
7525
|
bottom: auto !important;
|
|
7444
7526
|
left: 50% !important;
|
|
@@ -7447,6 +7529,7 @@ input[type=button].btn-block {
|
|
|
7447
7529
|
transform: translateX(-50%) !important;
|
|
7448
7530
|
will-change: auto !important;
|
|
7449
7531
|
}
|
|
7532
|
+
|
|
7450
7533
|
.dropdown-menu-left-side {
|
|
7451
7534
|
bottom: auto !important;
|
|
7452
7535
|
left: auto !important;
|
|
@@ -7457,6 +7540,7 @@ input[type=button].btn-block {
|
|
|
7457
7540
|
transform: none !important;
|
|
7458
7541
|
will-change: auto !important;
|
|
7459
7542
|
}
|
|
7543
|
+
|
|
7460
7544
|
.dropdown-menu-left-side-bottom {
|
|
7461
7545
|
bottom: 0 !important;
|
|
7462
7546
|
left: auto !important;
|
|
@@ -7467,6 +7551,7 @@ input[type=button].btn-block {
|
|
|
7467
7551
|
transform: none !important;
|
|
7468
7552
|
will-change: auto !important;
|
|
7469
7553
|
}
|
|
7554
|
+
|
|
7470
7555
|
.dropdown-menu-left-side-middle {
|
|
7471
7556
|
bottom: auto !important;
|
|
7472
7557
|
left: auto !important;
|
|
@@ -7477,6 +7562,7 @@ input[type=button].btn-block {
|
|
|
7477
7562
|
transform: translate(0, -50%) !important;
|
|
7478
7563
|
will-change: auto !important;
|
|
7479
7564
|
}
|
|
7565
|
+
|
|
7480
7566
|
.dropdown-menu-right-side {
|
|
7481
7567
|
bottom: auto !important;
|
|
7482
7568
|
left: 100% !important;
|
|
@@ -7487,6 +7573,7 @@ input[type=button].btn-block {
|
|
|
7487
7573
|
transform: none !important;
|
|
7488
7574
|
will-change: auto !important;
|
|
7489
7575
|
}
|
|
7576
|
+
|
|
7490
7577
|
.dropdown-menu-right-side-bottom {
|
|
7491
7578
|
bottom: 0 !important;
|
|
7492
7579
|
left: 100% !important;
|
|
@@ -7497,6 +7584,7 @@ input[type=button].btn-block {
|
|
|
7497
7584
|
transform: none !important;
|
|
7498
7585
|
will-change: auto !important;
|
|
7499
7586
|
}
|
|
7587
|
+
|
|
7500
7588
|
.dropdown-menu-right-side-middle {
|
|
7501
7589
|
bottom: auto !important;
|
|
7502
7590
|
left: 100% !important;
|
|
@@ -7507,6 +7595,7 @@ input[type=button].btn-block {
|
|
|
7507
7595
|
transform: translate(0, -50%) !important;
|
|
7508
7596
|
will-change: auto !important;
|
|
7509
7597
|
}
|
|
7598
|
+
|
|
7510
7599
|
.dropdown-full .dropdown-menu,
|
|
7511
7600
|
.dropdown-wide .dropdown-menu {
|
|
7512
7601
|
max-width: none;
|
|
@@ -7540,6 +7629,7 @@ input[type=button].btn-block {
|
|
|
7540
7629
|
.dropdown-menu-width-shrink {
|
|
7541
7630
|
min-width: 0;
|
|
7542
7631
|
}
|
|
7632
|
+
|
|
7543
7633
|
.dropdown-menu-width-full {
|
|
7544
7634
|
left: 12px !important;
|
|
7545
7635
|
right: 12px !important;
|
|
@@ -7580,6 +7670,7 @@ input[type=button].btn-block {
|
|
|
7580
7670
|
max-width: none;
|
|
7581
7671
|
width: 100%;
|
|
7582
7672
|
}
|
|
7673
|
+
|
|
7583
7674
|
.nav-item.dropdown-full {
|
|
7584
7675
|
position: static;
|
|
7585
7676
|
}
|
|
@@ -8112,7 +8203,6 @@ select.form-control {
|
|
|
8112
8203
|
background-size: 1.5em 1.5em;
|
|
8113
8204
|
cursor: pointer;
|
|
8114
8205
|
padding-right: 2em;
|
|
8115
|
-
color: #272833;
|
|
8116
8206
|
}
|
|
8117
8207
|
select.form-control.focus, select.form-control:focus-visible, .c-prefers-focus select.form-control:focus {
|
|
8118
8208
|
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%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%236b6c7e'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%236b6c7e'/%3E%3C/svg%3E");
|
|
@@ -8164,7 +8254,6 @@ select.form-control[size] {
|
|
|
8164
8254
|
padding-left: 0.5rem;
|
|
8165
8255
|
padding-right: 0.5rem;
|
|
8166
8256
|
scrollbar-width: thin;
|
|
8167
|
-
color: #272833;
|
|
8168
8257
|
}
|
|
8169
8258
|
select.form-control[size].focus, select.form-control[size]:focus-visible, .c-prefers-focus select.form-control[size]:focus {
|
|
8170
8259
|
background-image: none;
|
|
@@ -8200,7 +8289,6 @@ select.form-control[multiple] {
|
|
|
8200
8289
|
padding-left: 0.5rem;
|
|
8201
8290
|
padding-right: 0.5rem;
|
|
8202
8291
|
scrollbar-width: thin;
|
|
8203
|
-
color: #272833;
|
|
8204
8292
|
}
|
|
8205
8293
|
select.form-control[multiple].focus, select.form-control[multiple]:focus-visible, .c-prefers-focus select.form-control[multiple]:focus {
|
|
8206
8294
|
background-image: none;
|
|
@@ -8229,8 +8317,14 @@ select.form-control[multiple] option:checked {
|
|
|
8229
8317
|
}
|
|
8230
8318
|
}
|
|
8231
8319
|
|
|
8320
|
+
.form-control-shrink {
|
|
8321
|
+
max-width: 100%;
|
|
8322
|
+
white-space: nowrap;
|
|
8323
|
+
width: min-content;
|
|
8324
|
+
}
|
|
8232
8325
|
.form-control-select-secondary {
|
|
8233
8326
|
background-color: #fff;
|
|
8327
|
+
border-color: #9b92a5;
|
|
8234
8328
|
color: #6b6c7e;
|
|
8235
8329
|
}
|
|
8236
8330
|
.form-control-select-secondary:hover, .form-control-select-secondary.hover {
|
|
@@ -8668,6 +8762,7 @@ textarea.form-control-lg,
|
|
|
8668
8762
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8669
8763
|
outline: 0;
|
|
8670
8764
|
}
|
|
8765
|
+
|
|
8671
8766
|
.c-link.text-secondary {
|
|
8672
8767
|
color: #272833 !important;
|
|
8673
8768
|
}
|
|
@@ -8677,6 +8772,7 @@ textarea.form-control-lg,
|
|
|
8677
8772
|
.c-link.text-secondary.focus, .c-link.text-secondary:focus-visible, .c-prefers-focus .c-link.text-secondary:focus {
|
|
8678
8773
|
color: #000 !important;
|
|
8679
8774
|
}
|
|
8775
|
+
|
|
8680
8776
|
.c-link.text-tertiary {
|
|
8681
8777
|
color: #272833 !important;
|
|
8682
8778
|
}
|
|
@@ -8706,6 +8802,7 @@ textarea.form-control-lg,
|
|
|
8706
8802
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8707
8803
|
outline: 0;
|
|
8708
8804
|
}
|
|
8805
|
+
|
|
8709
8806
|
.single-link {
|
|
8710
8807
|
font-weight: 600;
|
|
8711
8808
|
}
|
|
@@ -8733,6 +8830,7 @@ textarea.form-control-lg,
|
|
|
8733
8830
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8734
8831
|
outline: 0;
|
|
8735
8832
|
}
|
|
8833
|
+
|
|
8736
8834
|
.link-secondary {
|
|
8737
8835
|
color: #6b6c7e;
|
|
8738
8836
|
border-radius: 1px;
|
|
@@ -8756,6 +8854,7 @@ textarea.form-control-lg,
|
|
|
8756
8854
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8757
8855
|
outline: 0;
|
|
8758
8856
|
}
|
|
8857
|
+
|
|
8759
8858
|
button.link-outline {
|
|
8760
8859
|
cursor: pointer;
|
|
8761
8860
|
}
|
|
@@ -8795,6 +8894,7 @@ button.link-outline {
|
|
|
8795
8894
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8796
8895
|
outline: 0;
|
|
8797
8896
|
}
|
|
8897
|
+
|
|
8798
8898
|
.link-outline:disabled, .link-outline.disabled {
|
|
8799
8899
|
box-shadow: none;
|
|
8800
8900
|
}
|
|
@@ -8824,6 +8924,7 @@ button.link-outline {
|
|
|
8824
8924
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8825
8925
|
color: #0b5fff;
|
|
8826
8926
|
}
|
|
8927
|
+
|
|
8827
8928
|
.link-outline-primary:active {
|
|
8828
8929
|
background-color: #e6edf8;
|
|
8829
8930
|
color: #0b5fff;
|
|
@@ -8856,6 +8957,7 @@ button.link-outline {
|
|
|
8856
8957
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8857
8958
|
color: #272833;
|
|
8858
8959
|
}
|
|
8960
|
+
|
|
8859
8961
|
.link-outline-secondary:active {
|
|
8860
8962
|
background-color: rgba(39, 40, 51, 0.06);
|
|
8861
8963
|
color: #272833;
|
|
@@ -8939,6 +9041,7 @@ button.link-outline {
|
|
|
8939
9041
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8940
9042
|
outline: 0;
|
|
8941
9043
|
}
|
|
9044
|
+
|
|
8942
9045
|
.component-subtitle {
|
|
8943
9046
|
color: #6b6c7e;
|
|
8944
9047
|
margin-bottom: 0;
|
|
@@ -8975,6 +9078,7 @@ button.link-outline {
|
|
|
8975
9078
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
8976
9079
|
outline: 0;
|
|
8977
9080
|
}
|
|
9081
|
+
|
|
8978
9082
|
.component-action {
|
|
8979
9083
|
align-items: center;
|
|
8980
9084
|
background-color: transparent;
|
|
@@ -9011,6 +9115,7 @@ button.link-outline {
|
|
|
9011
9115
|
background-color: rgba(39, 40, 51, 0.03);
|
|
9012
9116
|
color: #272833;
|
|
9013
9117
|
}
|
|
9118
|
+
|
|
9014
9119
|
.component-action:active {
|
|
9015
9120
|
background-color: rgba(39, 40, 51, 0.06);
|
|
9016
9121
|
color: #272833;
|
|
@@ -9565,9 +9670,7 @@ button.link-outline {
|
|
|
9565
9670
|
box-shadow: 0 0 0 0.125rem #5791ff;
|
|
9566
9671
|
outline: 0;
|
|
9567
9672
|
}
|
|
9568
|
-
|
|
9569
|
-
box-shadow: 0 0 0 0.125rem #5791ff;
|
|
9570
|
-
}
|
|
9673
|
+
|
|
9571
9674
|
.clay-color-pointer .c-inner {
|
|
9572
9675
|
margin-bottom: 0;
|
|
9573
9676
|
margin-left: 0;
|
|
@@ -9587,6 +9690,7 @@ button.link-outline {
|
|
|
9587
9690
|
font-weight: 600;
|
|
9588
9691
|
max-width: calc(100% - 2rem);
|
|
9589
9692
|
}
|
|
9693
|
+
|
|
9590
9694
|
.clay-color-footer {
|
|
9591
9695
|
margin-bottom: 1rem;
|
|
9592
9696
|
}
|
|
@@ -10052,6 +10156,7 @@ label.custom-control-label {
|
|
|
10052
10156
|
border-color: #6b6c7e;
|
|
10053
10157
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
10054
10158
|
}
|
|
10159
|
+
|
|
10055
10160
|
.custom-control-input:active ~ .custom-control-label::before {
|
|
10056
10161
|
background-color: #fff;
|
|
10057
10162
|
border-color: #6b6c7e;
|
|
@@ -10066,11 +10171,6 @@ label.custom-control-label {
|
|
|
10066
10171
|
border-color: #e7e7ed;
|
|
10067
10172
|
box-shadow: none;
|
|
10068
10173
|
}
|
|
10069
|
-
.custom-control-input:checked ~ .custom-control-label::before {
|
|
10070
|
-
background-color: #0b5fff;
|
|
10071
|
-
border-color: #0b5fff;
|
|
10072
|
-
color: #fff;
|
|
10073
|
-
}
|
|
10074
10174
|
.custom-control-input[readonly] ~ .custom-control-label {
|
|
10075
10175
|
color: #272833;
|
|
10076
10176
|
}
|
|
@@ -10090,6 +10190,9 @@ label.custom-control-label {
|
|
|
10090
10190
|
background-color: #0b5fff;
|
|
10091
10191
|
border-color: #0b5fff;
|
|
10092
10192
|
}
|
|
10193
|
+
.custom-control-input:checked[disabled], .custom-control-input:checked:disabled {
|
|
10194
|
+
cursor: not-allowed;
|
|
10195
|
+
}
|
|
10093
10196
|
.custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
10094
10197
|
background-color: #f1f2f5;
|
|
10095
10198
|
box-shadow: none;
|
|
@@ -10098,6 +10201,7 @@ label.custom-control-label {
|
|
|
10098
10201
|
background-color: #fff;
|
|
10099
10202
|
border-color: #6b6c7e;
|
|
10100
10203
|
}
|
|
10204
|
+
|
|
10101
10205
|
.custom-checkbox .custom-control-input ~ .custom-control-label::before {
|
|
10102
10206
|
border-radius: 0.125rem;
|
|
10103
10207
|
}
|
|
@@ -10105,10 +10209,6 @@ label.custom-control-label {
|
|
|
10105
10209
|
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
10210
|
background-size: 100%;
|
|
10107
10211
|
}
|
|
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
10212
|
.custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
10113
10213
|
background-color: #b3cdff;
|
|
10114
10214
|
border-color: #b3cdff;
|
|
@@ -10151,6 +10251,7 @@ label.custom-control-label {
|
|
|
10151
10251
|
.custom-checkbox .custom-control-input:indeterminate[readonly][disabled] ~ .custom-control-label::after {
|
|
10152
10252
|
opacity: 0.4;
|
|
10153
10253
|
}
|
|
10254
|
+
|
|
10154
10255
|
.custom-radio .custom-control-input ~ .custom-control-label::before {
|
|
10155
10256
|
border-radius: 50%;
|
|
10156
10257
|
}
|
|
@@ -10161,16 +10262,13 @@ label.custom-control-label {
|
|
|
10161
10262
|
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
10263
|
background-size: 50%;
|
|
10163
10264
|
}
|
|
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
10265
|
.custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::before, .custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
10169
10266
|
background-color: #b3cdff;
|
|
10170
10267
|
border-color: #b3cdff;
|
|
10171
10268
|
}
|
|
10269
|
+
|
|
10172
10270
|
.custom-control-outside label {
|
|
10173
|
-
display: block;
|
|
10271
|
+
display: inline-block;
|
|
10174
10272
|
padding-left: calc( 1rem + 0.5rem );
|
|
10175
10273
|
}
|
|
10176
10274
|
.custom-control-outside .custom-control-label-text {
|
|
@@ -10179,6 +10277,7 @@ label.custom-control-label {
|
|
|
10179
10277
|
.custom-control-outside .custom-control-input ~ .custom-control-label::before {
|
|
10180
10278
|
position: absolute;
|
|
10181
10279
|
}
|
|
10280
|
+
|
|
10182
10281
|
.custom-control-inline {
|
|
10183
10282
|
display: inline-flex;
|
|
10184
10283
|
}
|
|
@@ -10527,9 +10626,7 @@ label.custom-control-label {
|
|
|
10527
10626
|
.clay-time .btn.focus, .clay-time .btn:focus-visible, .c-prefers-focus .clay-time .btn:focus {
|
|
10528
10627
|
box-shadow: 0 0 0 1px #5791ff;
|
|
10529
10628
|
}
|
|
10530
|
-
|
|
10531
|
-
box-shadow: 0 0 0 1px #5791ff;
|
|
10532
|
-
}
|
|
10629
|
+
|
|
10533
10630
|
.clay-time .btn .c-inner {
|
|
10534
10631
|
margin-bottom: 0;
|
|
10535
10632
|
margin-left: 0;
|
|
@@ -10704,12 +10801,10 @@ label.custom-control-label {
|
|
|
10704
10801
|
background-color: #f1f2f5;
|
|
10705
10802
|
color: #272833;
|
|
10706
10803
|
}
|
|
10804
|
+
|
|
10707
10805
|
.date-picker-nav .nav-btn:active {
|
|
10708
10806
|
background-color: #f1f2f5;
|
|
10709
10807
|
}
|
|
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
10808
|
.date-picker-nav .nav-btn.active {
|
|
10714
10809
|
background-color: #f1f2f5;
|
|
10715
10810
|
}
|
|
@@ -10751,7 +10846,6 @@ label.custom-control-label {
|
|
|
10751
10846
|
.date-picker-nav select.form-control {
|
|
10752
10847
|
font-size: 0.75rem;
|
|
10753
10848
|
height: 1.5rem;
|
|
10754
|
-
color: #272833;
|
|
10755
10849
|
}
|
|
10756
10850
|
}
|
|
10757
10851
|
.date-picker-nav select.form-control:hover, .date-picker-nav select.form-control.hover {
|
|
@@ -10781,7 +10875,6 @@ label.custom-control-label {
|
|
|
10781
10875
|
.date-picker-nav .form-control-select {
|
|
10782
10876
|
font-size: 0.75rem;
|
|
10783
10877
|
height: 1.5rem;
|
|
10784
|
-
color: #272833;
|
|
10785
10878
|
}
|
|
10786
10879
|
}
|
|
10787
10880
|
.date-picker-nav .form-control-select:hover, .date-picker-nav .form-control-select.hover {
|
|
@@ -10982,13 +11075,11 @@ label.custom-control-label {
|
|
|
10982
11075
|
background-color: #f1f2f5;
|
|
10983
11076
|
color: #272833;
|
|
10984
11077
|
}
|
|
11078
|
+
|
|
10985
11079
|
.date-picker-date:active {
|
|
10986
11080
|
background-color: #0b5fff;
|
|
10987
11081
|
color: #fff;
|
|
10988
11082
|
}
|
|
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
11083
|
.date-picker-date.active {
|
|
10993
11084
|
background-color: #0b5fff;
|
|
10994
11085
|
color: #fff;
|
|
@@ -11317,15 +11408,12 @@ label.custom-control-label {
|
|
|
11317
11408
|
}
|
|
11318
11409
|
.has-error select.form-control {
|
|
11319
11410
|
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%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%23f48989'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%23f48989'/%3E%3C/svg%3E");
|
|
11320
|
-
color: #272833;
|
|
11321
11411
|
}
|
|
11322
11412
|
.has-error select.form-control[size] {
|
|
11323
11413
|
background-image: none;
|
|
11324
|
-
color: #272833;
|
|
11325
11414
|
}
|
|
11326
11415
|
.has-error select.form-control[multiple] {
|
|
11327
11416
|
background-image: none;
|
|
11328
|
-
color: #272833;
|
|
11329
11417
|
}
|
|
11330
11418
|
.has-error .input-group-item.focus {
|
|
11331
11419
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
@@ -11376,15 +11464,12 @@ label.custom-control-label {
|
|
|
11376
11464
|
}
|
|
11377
11465
|
.has-warning select.form-control {
|
|
11378
11466
|
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%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%23ff8f39'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%23ff8f39'/%3E%3C/svg%3E");
|
|
11379
|
-
color: #272833;
|
|
11380
11467
|
}
|
|
11381
11468
|
.has-warning select.form-control[size] {
|
|
11382
11469
|
background-image: none;
|
|
11383
|
-
color: #272833;
|
|
11384
11470
|
}
|
|
11385
11471
|
.has-warning select.form-control[multiple] {
|
|
11386
11472
|
background-image: none;
|
|
11387
|
-
color: #272833;
|
|
11388
11473
|
}
|
|
11389
11474
|
.has-warning .input-group-item.focus {
|
|
11390
11475
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
@@ -11435,15 +11520,12 @@ label.custom-control-label {
|
|
|
11435
11520
|
}
|
|
11436
11521
|
.has-success select.form-control {
|
|
11437
11522
|
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%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%235aca75'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%235aca75'/%3E%3C/svg%3E");
|
|
11438
|
-
color: #272833;
|
|
11439
11523
|
}
|
|
11440
11524
|
.has-success select.form-control[size] {
|
|
11441
11525
|
background-image: none;
|
|
11442
|
-
color: #272833;
|
|
11443
11526
|
}
|
|
11444
11527
|
.has-success select.form-control[multiple] {
|
|
11445
11528
|
background-image: none;
|
|
11446
|
-
color: #272833;
|
|
11447
11529
|
}
|
|
11448
11530
|
.has-success .input-group-item.focus {
|
|
11449
11531
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
@@ -12008,7 +12090,8 @@ label.custom-control-label {
|
|
|
12008
12090
|
.input-group .input-group-inset-item .btn .c-inner .lexicon-icon {
|
|
12009
12091
|
margin-top: 0;
|
|
12010
12092
|
}
|
|
12011
|
-
.input-group .input-group-inset-item .btn-monospaced
|
|
12093
|
+
.input-group .input-group-inset-item .btn-monospaced,
|
|
12094
|
+
.input-group .input-group-inset-item .input-group-inset-icon {
|
|
12012
12095
|
font-size: 1rem;
|
|
12013
12096
|
height: 2rem;
|
|
12014
12097
|
margin-bottom: -0.0625rem;
|
|
@@ -12022,6 +12105,14 @@ label.custom-control-label {
|
|
|
12022
12105
|
.input-group .input-group-inset-item .form-file .btn {
|
|
12023
12106
|
height: 100%;
|
|
12024
12107
|
}
|
|
12108
|
+
.input-group .input-group-inset-icon {
|
|
12109
|
+
align-items: center;
|
|
12110
|
+
display: flex;
|
|
12111
|
+
justify-content: center;
|
|
12112
|
+
}
|
|
12113
|
+
.input-group .input-group-inset-icon .lexicon-icon {
|
|
12114
|
+
margin-top: 0;
|
|
12115
|
+
}
|
|
12025
12116
|
.input-group .input-group-item .input-group-inset-before.form-control {
|
|
12026
12117
|
border-bottom-left-radius: 0;
|
|
12027
12118
|
border-top-left-radius: 0;
|
|
@@ -12301,6 +12392,7 @@ label.custom-control-label {
|
|
|
12301
12392
|
color: #6b6c7e;
|
|
12302
12393
|
text-transform: uppercase;
|
|
12303
12394
|
}
|
|
12395
|
+
|
|
12304
12396
|
.list-group-title {
|
|
12305
12397
|
font-size: 0.875rem;
|
|
12306
12398
|
font-weight: 600;
|
|
@@ -12341,6 +12433,7 @@ label.custom-control-label {
|
|
|
12341
12433
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12342
12434
|
outline: 0;
|
|
12343
12435
|
}
|
|
12436
|
+
|
|
12344
12437
|
.list-group-subtitle {
|
|
12345
12438
|
color: #6b6c7e;
|
|
12346
12439
|
margin-bottom: 0;
|
|
@@ -12376,6 +12469,7 @@ label.custom-control-label {
|
|
|
12376
12469
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12377
12470
|
outline: 0;
|
|
12378
12471
|
}
|
|
12472
|
+
|
|
12379
12473
|
.list-group-text {
|
|
12380
12474
|
color: #6b6c7e;
|
|
12381
12475
|
margin-bottom: 0;
|
|
@@ -12411,6 +12505,7 @@ label.custom-control-label {
|
|
|
12411
12505
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12412
12506
|
outline: 0;
|
|
12413
12507
|
}
|
|
12508
|
+
|
|
12414
12509
|
.list-group-subtext {
|
|
12415
12510
|
color: #6b6c7e;
|
|
12416
12511
|
margin-bottom: 0;
|
|
@@ -12447,6 +12542,7 @@ label.custom-control-label {
|
|
|
12447
12542
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
12448
12543
|
outline: 0;
|
|
12449
12544
|
}
|
|
12545
|
+
|
|
12450
12546
|
.show-dropdown-action-on-active .list-group-item.active .dropdown-action .dropdown-menu {
|
|
12451
12547
|
background-color: #f0f5ff;
|
|
12452
12548
|
}
|
|
@@ -13436,6 +13532,7 @@ label.custom-control-label {
|
|
|
13436
13532
|
overflow-wrap: break-word;
|
|
13437
13533
|
word-wrap: break-word;
|
|
13438
13534
|
}
|
|
13535
|
+
|
|
13439
13536
|
.multi-step-item-expand {
|
|
13440
13537
|
flex-grow: 1;
|
|
13441
13538
|
width: 75px;
|
|
@@ -13673,6 +13770,7 @@ label.custom-control-label {
|
|
|
13673
13770
|
text-decoration: none;
|
|
13674
13771
|
z-index: 1;
|
|
13675
13772
|
}
|
|
13773
|
+
|
|
13676
13774
|
.nav-link:disabled, .nav-link.disabled {
|
|
13677
13775
|
color: #a7a9bc;
|
|
13678
13776
|
cursor: not-allowed;
|
|
@@ -13693,9 +13791,7 @@ label.custom-control-label {
|
|
|
13693
13791
|
.nav-link.btn-unstyled.focus, .nav-link.btn-unstyled:focus-visible, .c-prefers-focus .nav-link.btn-unstyled:focus {
|
|
13694
13792
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13695
13793
|
}
|
|
13696
|
-
|
|
13697
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
13698
|
-
}
|
|
13794
|
+
|
|
13699
13795
|
.nav-link.btn-unstyled:disabled, .nav-link.btn-unstyled.disabled {
|
|
13700
13796
|
opacity: 1;
|
|
13701
13797
|
}
|
|
@@ -13718,6 +13814,7 @@ label.custom-control-label {
|
|
|
13718
13814
|
.nav-btn.focus, .nav-btn:focus-visible, .c-prefers-focus .nav-btn:focus {
|
|
13719
13815
|
z-index: 1;
|
|
13720
13816
|
}
|
|
13817
|
+
|
|
13721
13818
|
.nav-btn:disabled, .nav-btn.disabled {
|
|
13722
13819
|
opacity: 1;
|
|
13723
13820
|
}
|
|
@@ -13999,6 +14096,7 @@ label.custom-control-label {
|
|
|
13999
14096
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
14000
14097
|
outline: 0;
|
|
14001
14098
|
}
|
|
14099
|
+
|
|
14002
14100
|
.nav-tabs .nav-link:active {
|
|
14003
14101
|
background-color: #fff;
|
|
14004
14102
|
border-color: #cdced9 #cdced9 #fff;
|
|
@@ -14148,6 +14246,7 @@ label.custom-control-label {
|
|
|
14148
14246
|
right: 0;
|
|
14149
14247
|
top: 0;
|
|
14150
14248
|
}
|
|
14249
|
+
|
|
14151
14250
|
.menubar-primary .nav-link:active {
|
|
14152
14251
|
color: #272833;
|
|
14153
14252
|
}
|
|
@@ -14190,6 +14289,7 @@ label.custom-control-label {
|
|
|
14190
14289
|
.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
14290
|
display: none;
|
|
14192
14291
|
}
|
|
14292
|
+
|
|
14193
14293
|
.menubar-primary .nav-link.collapse-icon {
|
|
14194
14294
|
font-size: 0.75rem;
|
|
14195
14295
|
font-weight: 600;
|
|
@@ -14341,6 +14441,7 @@ label.custom-control-label {
|
|
|
14341
14441
|
right: 0;
|
|
14342
14442
|
top: 0;
|
|
14343
14443
|
}
|
|
14444
|
+
|
|
14344
14445
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:active {
|
|
14345
14446
|
color: rgba(0, 0, 0, 0.9);
|
|
14346
14447
|
}
|
|
@@ -14427,6 +14528,7 @@ label.custom-control-label {
|
|
|
14427
14528
|
.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
14529
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
14429
14530
|
}
|
|
14531
|
+
|
|
14430
14532
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
14431
14533
|
font-weight: 600;
|
|
14432
14534
|
background-color: rgba(11, 95, 255, 0.06);
|
|
@@ -14585,6 +14687,7 @@ label.custom-control-label {
|
|
|
14585
14687
|
right: 0;
|
|
14586
14688
|
top: 0;
|
|
14587
14689
|
}
|
|
14690
|
+
|
|
14588
14691
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:active {
|
|
14589
14692
|
color: rgba(0, 0, 0, 0.9);
|
|
14590
14693
|
}
|
|
@@ -14671,6 +14774,7 @@ label.custom-control-label {
|
|
|
14671
14774
|
.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
14775
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
14673
14776
|
}
|
|
14777
|
+
|
|
14674
14778
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
14675
14779
|
font-weight: 600;
|
|
14676
14780
|
background-color: rgba(11, 95, 255, 0.06);
|
|
@@ -14723,7 +14827,7 @@ label.custom-control-label {
|
|
|
14723
14827
|
padding: 0.5rem 1rem;
|
|
14724
14828
|
position: relative;
|
|
14725
14829
|
}
|
|
14726
|
-
.navbar > .container-xl, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar .container,
|
|
14830
|
+
.navbar > .container-xxxl, .navbar > .container-xxl, .navbar > .container-xl, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar .container,
|
|
14727
14831
|
.navbar .container-fluid {
|
|
14728
14832
|
align-items: inherit;
|
|
14729
14833
|
background-color: inherit;
|
|
@@ -16649,6 +16753,7 @@ label.custom-control-label {
|
|
|
16649
16753
|
.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
16754
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
16651
16755
|
}
|
|
16756
|
+
|
|
16652
16757
|
.application-bar .navbar-nav .nav-link:disabled, .application-bar .navbar-nav .nav-link.disabled {
|
|
16653
16758
|
box-shadow: none;
|
|
16654
16759
|
}
|
|
@@ -16669,6 +16774,7 @@ label.custom-control-label {
|
|
|
16669
16774
|
.application-bar .navbar-brand.focus, .application-bar .navbar-brand:focus-visible, .c-prefers-focus .application-bar .navbar-brand:focus {
|
|
16670
16775
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
16671
16776
|
}
|
|
16777
|
+
|
|
16672
16778
|
.application-bar .navbar-brand:disabled, .application-bar .navbar-brand.disabled {
|
|
16673
16779
|
box-shadow: none;
|
|
16674
16780
|
}
|
|
@@ -16695,6 +16801,7 @@ label.custom-control-label {
|
|
|
16695
16801
|
.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
16802
|
background-color: rgba(255, 255, 255, 0.03);
|
|
16697
16803
|
}
|
|
16804
|
+
|
|
16698
16805
|
.application-bar-dark .navbar-nav .nav-link:active {
|
|
16699
16806
|
color: #fff;
|
|
16700
16807
|
background-color: rgba(255, 255, 255, 0.06);
|
|
@@ -16721,6 +16828,7 @@ label.custom-control-label {
|
|
|
16721
16828
|
.application-bar-dark .navbar-brand.focus, .application-bar-dark .navbar-brand:focus-visible, .c-prefers-focus .application-bar-dark .navbar-brand:focus {
|
|
16722
16829
|
background-color: rgba(255, 255, 255, 0.03);
|
|
16723
16830
|
}
|
|
16831
|
+
|
|
16724
16832
|
.application-bar-dark .navbar-brand:active {
|
|
16725
16833
|
color: #fff;
|
|
16726
16834
|
background-color: rgba(255, 255, 255, 0.06);
|
|
@@ -17836,6 +17944,7 @@ label.custom-control-label {
|
|
|
17836
17944
|
.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
17945
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
17838
17946
|
}
|
|
17947
|
+
|
|
17839
17948
|
.management-bar .navbar-nav .nav-link:disabled, .management-bar .navbar-nav .nav-link.disabled {
|
|
17840
17949
|
box-shadow: none;
|
|
17841
17950
|
}
|
|
@@ -17856,6 +17965,7 @@ label.custom-control-label {
|
|
|
17856
17965
|
.management-bar .navbar-brand.focus, .management-bar .navbar-brand:focus-visible, .c-prefers-focus .management-bar .navbar-brand:focus {
|
|
17857
17966
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
17858
17967
|
}
|
|
17968
|
+
|
|
17859
17969
|
.management-bar .navbar-brand:disabled, .management-bar .navbar-brand.disabled {
|
|
17860
17970
|
box-shadow: none;
|
|
17861
17971
|
}
|
|
@@ -17879,6 +17989,7 @@ label.custom-control-label {
|
|
|
17879
17989
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17880
17990
|
color: #272833;
|
|
17881
17991
|
}
|
|
17992
|
+
|
|
17882
17993
|
.management-bar-light .navbar-nav .nav-link:active {
|
|
17883
17994
|
color: #272833;
|
|
17884
17995
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -17906,6 +18017,7 @@ label.custom-control-label {
|
|
|
17906
18017
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17907
18018
|
color: #272833;
|
|
17908
18019
|
}
|
|
18020
|
+
|
|
17909
18021
|
.management-bar-light .navbar-brand:active {
|
|
17910
18022
|
color: #272833;
|
|
17911
18023
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -17948,6 +18060,7 @@ label.custom-control-label {
|
|
|
17948
18060
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17949
18061
|
color: #272833;
|
|
17950
18062
|
}
|
|
18063
|
+
|
|
17951
18064
|
.management-bar-primary .navbar-nav .nav-link:active {
|
|
17952
18065
|
color: #272833;
|
|
17953
18066
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -17976,6 +18089,7 @@ label.custom-control-label {
|
|
|
17976
18089
|
background-color: rgba(39, 40, 51, 0.03);
|
|
17977
18090
|
color: #272833;
|
|
17978
18091
|
}
|
|
18092
|
+
|
|
17979
18093
|
.management-bar-primary .navbar-brand:active {
|
|
17980
18094
|
color: #272833;
|
|
17981
18095
|
background-color: rgba(39, 40, 51, 0.06);
|
|
@@ -18439,6 +18553,7 @@ label.custom-control-label {
|
|
|
18439
18553
|
.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
18554
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
18441
18555
|
}
|
|
18556
|
+
|
|
18442
18557
|
.navigation-bar .navbar-nav .nav-link:disabled, .navigation-bar .navbar-nav .nav-link.disabled {
|
|
18443
18558
|
box-shadow: none;
|
|
18444
18559
|
}
|
|
@@ -18451,6 +18566,7 @@ label.custom-control-label {
|
|
|
18451
18566
|
.navigation-bar .navbar-brand.focus, .navigation-bar .navbar-brand:focus-visible, .c-prefers-focus .navigation-bar .navbar-brand:focus {
|
|
18452
18567
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
18453
18568
|
}
|
|
18569
|
+
|
|
18454
18570
|
.navigation-bar .navbar-brand:disabled, .navigation-bar .navbar-brand.disabled {
|
|
18455
18571
|
box-shadow: none;
|
|
18456
18572
|
}
|
|
@@ -18468,6 +18584,7 @@ label.custom-control-label {
|
|
|
18468
18584
|
.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
18585
|
color: #272833;
|
|
18470
18586
|
}
|
|
18587
|
+
|
|
18471
18588
|
.navigation-bar-light .navbar-nav .nav-link:active {
|
|
18472
18589
|
color: #272833;
|
|
18473
18590
|
}
|
|
@@ -18490,6 +18607,7 @@ label.custom-control-label {
|
|
|
18490
18607
|
.navigation-bar-light .navbar-brand.focus, .navigation-bar-light .navbar-brand:focus-visible, .c-prefers-focus .navigation-bar-light .navbar-brand:focus {
|
|
18491
18608
|
color: #272833;
|
|
18492
18609
|
}
|
|
18610
|
+
|
|
18493
18611
|
.navigation-bar-light .navbar-brand:active {
|
|
18494
18612
|
color: #272833;
|
|
18495
18613
|
}
|
|
@@ -18521,6 +18639,7 @@ label.custom-control-label {
|
|
|
18521
18639
|
.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
18640
|
color: #272833;
|
|
18523
18641
|
}
|
|
18642
|
+
|
|
18524
18643
|
.navigation-bar-light.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
|
|
18525
18644
|
color: #272833;
|
|
18526
18645
|
}
|
|
@@ -18558,6 +18677,7 @@ label.custom-control-label {
|
|
|
18558
18677
|
.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
18678
|
color: #fff;
|
|
18560
18679
|
}
|
|
18680
|
+
|
|
18561
18681
|
.navigation-bar-secondary .navbar-nav .nav-link:active {
|
|
18562
18682
|
color: #fff;
|
|
18563
18683
|
}
|
|
@@ -18584,6 +18704,7 @@ label.custom-control-label {
|
|
|
18584
18704
|
.navigation-bar-secondary .navbar-brand.focus, .navigation-bar-secondary .navbar-brand:focus-visible, .c-prefers-focus .navigation-bar-secondary .navbar-brand:focus {
|
|
18585
18705
|
color: #fff;
|
|
18586
18706
|
}
|
|
18707
|
+
|
|
18587
18708
|
.navigation-bar-secondary .navbar-brand:active {
|
|
18588
18709
|
color: #fff;
|
|
18589
18710
|
}
|
|
@@ -18615,6 +18736,7 @@ label.custom-control-label {
|
|
|
18615
18736
|
.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
18737
|
color: #fff;
|
|
18617
18738
|
}
|
|
18739
|
+
|
|
18618
18740
|
.navigation-bar-secondary.navbar-expand-md .navbar-collapse .navbar-nav .dropdown-item:active {
|
|
18619
18741
|
color: #fff;
|
|
18620
18742
|
}
|
|
@@ -18726,6 +18848,7 @@ label.custom-control-label {
|
|
|
18726
18848
|
right: 0;
|
|
18727
18849
|
top: 0;
|
|
18728
18850
|
}
|
|
18851
|
+
|
|
18729
18852
|
.page-link:active {
|
|
18730
18853
|
background-color: rgba(11, 95, 255, 0.06);
|
|
18731
18854
|
border-color: transparent;
|
|
@@ -18823,6 +18946,7 @@ label.custom-control-label {
|
|
|
18823
18946
|
.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
18947
|
content: none;
|
|
18825
18948
|
}
|
|
18949
|
+
|
|
18826
18950
|
.page-item.disabled .page-link:active {
|
|
18827
18951
|
pointer-events: none;
|
|
18828
18952
|
}
|
|
@@ -18921,6 +19045,7 @@ label.custom-control-label {
|
|
|
18921
19045
|
right: 0;
|
|
18922
19046
|
top: 0;
|
|
18923
19047
|
}
|
|
19048
|
+
|
|
18924
19049
|
.pagination-items-per-page > a:active,
|
|
18925
19050
|
.pagination-items-per-page > button:active {
|
|
18926
19051
|
background-color: rgba(11, 95, 255, 0.06);
|
|
@@ -19013,6 +19138,7 @@ label.custom-control-label {
|
|
|
19013
19138
|
.c-prefers-focus .pagination-items-per-page.disabled > button:focus::after {
|
|
19014
19139
|
content: none;
|
|
19015
19140
|
}
|
|
19141
|
+
|
|
19016
19142
|
@media (max-width: 767.98px) {
|
|
19017
19143
|
.pagination-items-per-page + .pagination-results {
|
|
19018
19144
|
margin-left: auto;
|
|
@@ -19195,6 +19321,7 @@ label.custom-control-label {
|
|
|
19195
19321
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
19196
19322
|
outline: 0;
|
|
19197
19323
|
}
|
|
19324
|
+
|
|
19198
19325
|
.panel-header-link .collapse-icon {
|
|
19199
19326
|
padding-right: 2.28125rem;
|
|
19200
19327
|
}
|
|
@@ -19487,6 +19614,7 @@ label.custom-control-label {
|
|
|
19487
19614
|
.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
19615
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
19489
19616
|
}
|
|
19617
|
+
|
|
19490
19618
|
.panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-closed,
|
|
19491
19619
|
.panel-unstyled .panel-header:not(.collapse-icon-middle) .collapse-icon-open {
|
|
19492
19620
|
right: 0;
|
|
@@ -20309,6 +20437,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20309
20437
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
20310
20438
|
outline: 0;
|
|
20311
20439
|
}
|
|
20440
|
+
|
|
20312
20441
|
.sheet-tertiary-title {
|
|
20313
20442
|
color: #1c1c24;
|
|
20314
20443
|
display: block;
|
|
@@ -20557,6 +20686,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20557
20686
|
overflow-wrap: break-word;
|
|
20558
20687
|
word-wrap: break-word;
|
|
20559
20688
|
}
|
|
20689
|
+
|
|
20560
20690
|
.sidebar-footer {
|
|
20561
20691
|
padding-bottom: 1rem;
|
|
20562
20692
|
padding-left: 1rem;
|
|
@@ -20638,10 +20768,12 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20638
20768
|
margin-bottom: 0.25rem;
|
|
20639
20769
|
text-transform: uppercase;
|
|
20640
20770
|
}
|
|
20771
|
+
|
|
20641
20772
|
.sidebar-dd {
|
|
20642
20773
|
font-size: 0.875rem;
|
|
20643
20774
|
margin-bottom: 0.75rem;
|
|
20644
20775
|
}
|
|
20776
|
+
|
|
20645
20777
|
.sidebar-sm {
|
|
20646
20778
|
font-size: 0.875rem;
|
|
20647
20779
|
}
|
|
@@ -20683,6 +20815,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20683
20815
|
.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
20816
|
box-shadow: 0 0 0 0.25rem #fff, 0 0 0 0.375rem #5791ff;
|
|
20685
20817
|
}
|
|
20818
|
+
|
|
20686
20819
|
.sidebar-light .component-navigation-bar {
|
|
20687
20820
|
background-color: #fff;
|
|
20688
20821
|
border-color: #cdced9;
|
|
@@ -20768,6 +20901,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20768
20901
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
20769
20902
|
outline: 0;
|
|
20770
20903
|
}
|
|
20904
|
+
|
|
20771
20905
|
.sidebar-dark .nav-nested .nav-link:active {
|
|
20772
20906
|
color: #fff;
|
|
20773
20907
|
}
|
|
@@ -20830,6 +20964,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20830
20964
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
20831
20965
|
outline: 0;
|
|
20832
20966
|
}
|
|
20967
|
+
|
|
20833
20968
|
.sidebar-dark-l2 .nav-nested .nav-link:active {
|
|
20834
20969
|
color: #fff;
|
|
20835
20970
|
}
|
|
@@ -21062,6 +21197,7 @@ caption {
|
|
|
21062
21197
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21063
21198
|
outline: 0;
|
|
21064
21199
|
}
|
|
21200
|
+
|
|
21065
21201
|
.table thead .autofit-col {
|
|
21066
21202
|
padding-left: 0.125rem;
|
|
21067
21203
|
padding-right: 0.125rem;
|
|
@@ -21163,6 +21299,7 @@ caption {
|
|
|
21163
21299
|
.table .component-drag.focus, .table .component-drag:focus-visible, .c-prefers-focus .table .component-drag:focus {
|
|
21164
21300
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
21165
21301
|
}
|
|
21302
|
+
|
|
21166
21303
|
.table .custom-control,
|
|
21167
21304
|
.table .form-check {
|
|
21168
21305
|
margin-bottom: 0;
|
|
@@ -21551,6 +21688,7 @@ td.table-focus {
|
|
|
21551
21688
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21552
21689
|
outline: 0;
|
|
21553
21690
|
}
|
|
21691
|
+
|
|
21554
21692
|
.table-link {
|
|
21555
21693
|
color: #272833;
|
|
21556
21694
|
border-radius: 1px;
|
|
@@ -21574,6 +21712,7 @@ td.table-focus {
|
|
|
21574
21712
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21575
21713
|
outline: 0;
|
|
21576
21714
|
}
|
|
21715
|
+
|
|
21577
21716
|
.table-action-link {
|
|
21578
21717
|
align-items: center;
|
|
21579
21718
|
border-radius: 0.25rem;
|
|
@@ -21606,6 +21745,7 @@ td.table-focus {
|
|
|
21606
21745
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21607
21746
|
outline: 0;
|
|
21608
21747
|
}
|
|
21748
|
+
|
|
21609
21749
|
.table-action-link:active {
|
|
21610
21750
|
background-color: rgba(0, 0, 0, 0.04);
|
|
21611
21751
|
}
|
|
@@ -21879,6 +22019,7 @@ td.table-focus {
|
|
|
21879
22019
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21880
22020
|
outline: 0;
|
|
21881
22021
|
}
|
|
22022
|
+
|
|
21882
22023
|
.table-list-link {
|
|
21883
22024
|
color: #272833;
|
|
21884
22025
|
border-radius: 1px;
|
|
@@ -21902,6 +22043,7 @@ td.table-focus {
|
|
|
21902
22043
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21903
22044
|
outline: 0;
|
|
21904
22045
|
}
|
|
22046
|
+
|
|
21905
22047
|
.table-list-action-link {
|
|
21906
22048
|
align-items: center;
|
|
21907
22049
|
display: inline-flex;
|
|
@@ -21933,6 +22075,7 @@ td.table-focus {
|
|
|
21933
22075
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
21934
22076
|
outline: 0;
|
|
21935
22077
|
}
|
|
22078
|
+
|
|
21936
22079
|
.table-list-action-link:active {
|
|
21937
22080
|
background-color: rgba(0, 0, 0, 0.04);
|
|
21938
22081
|
}
|
|
@@ -22647,9 +22790,7 @@ td.table-focus {
|
|
|
22647
22790
|
.tbar-stacked .tbar-btn-monospaced.focus, .tbar-stacked .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-stacked .tbar-btn-monospaced:focus {
|
|
22648
22791
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
22649
22792
|
}
|
|
22650
|
-
|
|
22651
|
-
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
22652
|
-
}
|
|
22793
|
+
|
|
22653
22794
|
.tbar-stacked .tbar-btn-monospaced .c-inner {
|
|
22654
22795
|
margin-bottom: 0;
|
|
22655
22796
|
margin-left: 0;
|
|
@@ -22676,6 +22817,7 @@ td.table-focus {
|
|
|
22676
22817
|
.tbar-light .tbar-btn-monospaced.focus, .tbar-light .tbar-btn-monospaced:focus-visible, .c-prefers-focus .tbar-light .tbar-btn-monospaced:focus {
|
|
22677
22818
|
color: #272833;
|
|
22678
22819
|
}
|
|
22820
|
+
|
|
22679
22821
|
.tbar-light .tbar-btn-monospaced:active {
|
|
22680
22822
|
background-color: #f1f2f5;
|
|
22681
22823
|
color: #272833;
|
|
@@ -22712,6 +22854,7 @@ td.table-focus {
|
|
|
22712
22854
|
.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
22855
|
color: #fff;
|
|
22714
22856
|
}
|
|
22857
|
+
|
|
22715
22858
|
.tbar-dark-l2 .tbar-btn-monospaced:active {
|
|
22716
22859
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22717
22860
|
color: #fff;
|
|
@@ -22747,6 +22890,7 @@ td.table-focus {
|
|
|
22747
22890
|
.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
22891
|
color: #fff;
|
|
22749
22892
|
}
|
|
22893
|
+
|
|
22750
22894
|
.tbar-dark-d1 .tbar-btn-monospaced:active {
|
|
22751
22895
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22752
22896
|
color: #fff;
|
|
@@ -22755,6 +22899,16 @@ td.table-focus {
|
|
|
22755
22899
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22756
22900
|
color: #fff;
|
|
22757
22901
|
}
|
|
22902
|
+
.tbar-dark-d1 .tbar-btn-monospaced.active::after {
|
|
22903
|
+
background-color: #80acff;
|
|
22904
|
+
bottom: 0;
|
|
22905
|
+
content: "";
|
|
22906
|
+
display: block;
|
|
22907
|
+
left: 0;
|
|
22908
|
+
position: absolute;
|
|
22909
|
+
top: 0;
|
|
22910
|
+
width: 0.25rem;
|
|
22911
|
+
}
|
|
22758
22912
|
.tbar-dark-d1 .tbar-btn-monospaced:disabled, .tbar-dark-d1 .tbar-btn-monospaced.disabled {
|
|
22759
22913
|
color: inherit;
|
|
22760
22914
|
}
|
|
@@ -22762,6 +22916,16 @@ td.table-focus {
|
|
|
22762
22916
|
background-color: rgba(255, 255, 255, 0.06);
|
|
22763
22917
|
color: #fff;
|
|
22764
22918
|
}
|
|
22919
|
+
.tbar-dark-d1 .tbar-btn-monospaced[aria-expanded=true]::after, .tbar-dark-d1 .tbar-btn-monospaced.show::after {
|
|
22920
|
+
background-color: #80acff;
|
|
22921
|
+
bottom: 0;
|
|
22922
|
+
content: "";
|
|
22923
|
+
display: block;
|
|
22924
|
+
left: 0;
|
|
22925
|
+
position: absolute;
|
|
22926
|
+
top: 0;
|
|
22927
|
+
width: 0.25rem;
|
|
22928
|
+
}
|
|
22765
22929
|
.tbar-dark-d1 .tbar-label {
|
|
22766
22930
|
border-width: 0.0625rem;
|
|
22767
22931
|
}
|
|
@@ -23693,9 +23857,7 @@ td.table-focus {
|
|
|
23693
23857
|
.treeview .btn-monospaced.focus, .treeview .btn-monospaced:focus-visible, .c-prefers-focus .treeview .btn-monospaced:focus {
|
|
23694
23858
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23695
23859
|
}
|
|
23696
|
-
|
|
23697
|
-
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23698
|
-
}
|
|
23860
|
+
|
|
23699
23861
|
.treeview .custom-control {
|
|
23700
23862
|
margin-left: 4px;
|
|
23701
23863
|
margin-right: 4px;
|
|
@@ -23719,6 +23881,7 @@ td.table-focus {
|
|
|
23719
23881
|
.treeview .component-action.focus, .treeview .component-action:focus-visible, .c-prefers-focus .treeview .component-action:focus {
|
|
23720
23882
|
color: #6b6c7e;
|
|
23721
23883
|
}
|
|
23884
|
+
|
|
23722
23885
|
.treeview .component-action:active {
|
|
23723
23886
|
background-color: transparent;
|
|
23724
23887
|
}
|
|
@@ -23852,6 +24015,7 @@ td.table-focus {
|
|
|
23852
24015
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23853
24016
|
outline: 0;
|
|
23854
24017
|
}
|
|
24018
|
+
|
|
23855
24019
|
.treeview-link:disabled, .treeview-link.disabled {
|
|
23856
24020
|
cursor: not-allowed;
|
|
23857
24021
|
}
|
|
@@ -23910,6 +24074,7 @@ td.table-focus {
|
|
|
23910
24074
|
.treeview-light .treeview-link.focus, .treeview-light .treeview-link:focus-visible, .c-prefers-focus .treeview-light .treeview-link:focus {
|
|
23911
24075
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23912
24076
|
}
|
|
24077
|
+
|
|
23913
24078
|
.treeview-light .treeview-link:active {
|
|
23914
24079
|
background-color: #f0f5ff;
|
|
23915
24080
|
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
@@ -23933,6 +24098,7 @@ td.table-focus {
|
|
|
23933
24098
|
.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
24099
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23935
24100
|
}
|
|
24101
|
+
|
|
23936
24102
|
.treeview-light .treeview-link.treeview-no-hover:hover, .treeview-light .treeview-link.treeview-no-hover.hover {
|
|
23937
24103
|
background-color: transparent;
|
|
23938
24104
|
color: #6b6c7e;
|
|
@@ -23953,6 +24119,7 @@ td.table-focus {
|
|
|
23953
24119
|
.treeview-dark .treeview-link.focus, .treeview-dark .treeview-link:focus-visible, .c-prefers-focus .treeview-dark .treeview-link:focus {
|
|
23954
24120
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23955
24121
|
}
|
|
24122
|
+
|
|
23956
24123
|
.treeview-dark .treeview-link:active {
|
|
23957
24124
|
background-color: #393a4a;
|
|
23958
24125
|
box-shadow: inset 0 0 0 1px #0b5fff;
|
|
@@ -23976,6 +24143,7 @@ td.table-focus {
|
|
|
23976
24143
|
.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
24144
|
box-shadow: inset 0 0 0 0.125rem #5791ff, inset 0 0 0 0.25rem #fff;
|
|
23978
24145
|
}
|
|
24146
|
+
|
|
23979
24147
|
.treeview-dark .treeview-link.treeview-no-hover:hover, .treeview-dark .treeview-link.treeview-no-hover.hover {
|
|
23980
24148
|
background-color: transparent;
|
|
23981
24149
|
color: #a7a9bc;
|
|
@@ -34675,13 +34843,27 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
34675
34843
|
scroll-behavior: auto;
|
|
34676
34844
|
transition: none;
|
|
34677
34845
|
}
|
|
34846
|
+
.c-prefers-reduced-motion .loading-animation-squares::before {
|
|
34847
|
+
background-color: transparent;
|
|
34848
|
+
display: block;
|
|
34849
|
+
font-size: inherit;
|
|
34850
|
+
opacity: inherit;
|
|
34851
|
+
transform: none;
|
|
34852
|
+
}
|
|
34853
|
+
.c-prefers-reduced-motion .loading-animation-squares::after {
|
|
34854
|
+
font-size: inherit;
|
|
34855
|
+
left: auto;
|
|
34856
|
+
position: relative;
|
|
34857
|
+
top: auto;
|
|
34858
|
+
transform: none;
|
|
34859
|
+
}
|
|
34678
34860
|
|
|
34679
34861
|
@keyframes loading-animation-circle {
|
|
34680
34862
|
100% {
|
|
34681
34863
|
transform: rotate(360deg);
|
|
34682
34864
|
}
|
|
34683
34865
|
}
|
|
34684
|
-
.loading-animation {
|
|
34866
|
+
.loading-animation, .c-prefers-reduced-motion .loading-animation-squares {
|
|
34685
34867
|
display: block;
|
|
34686
34868
|
height: 1em;
|
|
34687
34869
|
margin-left: auto;
|
|
@@ -34692,7 +34874,7 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
34692
34874
|
vertical-align: middle;
|
|
34693
34875
|
width: 1em;
|
|
34694
34876
|
}
|
|
34695
|
-
.loading-animation::before {
|
|
34877
|
+
.loading-animation::before, .c-prefers-reduced-motion .loading-animation-squares::before {
|
|
34696
34878
|
animation: loading-animation-circle 1s linear infinite;
|
|
34697
34879
|
border-radius: 50%;
|
|
34698
34880
|
box-shadow: -0.03125em -0.375em 0 0 currentColor;
|
|
@@ -34706,15 +34888,15 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
34706
34888
|
width: 0.25em;
|
|
34707
34889
|
}
|
|
34708
34890
|
@media (prefers-reduced-motion: reduce) {
|
|
34709
|
-
.loading-animation::before {
|
|
34891
|
+
.loading-animation::before, .c-prefers-reduced-motion .loading-animation-squares::before {
|
|
34710
34892
|
animation: none;
|
|
34711
34893
|
}
|
|
34712
34894
|
}
|
|
34713
|
-
.c-prefers-reduced-motion .loading-animation::before {
|
|
34895
|
+
.c-prefers-reduced-motion .loading-animation::before, .c-prefers-reduced-motion .loading-animation-squares::before {
|
|
34714
34896
|
animation: none;
|
|
34715
34897
|
}
|
|
34716
34898
|
|
|
34717
|
-
.loading-animation::after {
|
|
34899
|
+
.loading-animation::after, .c-prefers-reduced-motion .loading-animation-squares::after {
|
|
34718
34900
|
animation: loading-animation-circle 1s linear infinite;
|
|
34719
34901
|
background-color: currentColor;
|
|
34720
34902
|
border-radius: 50%;
|
|
@@ -34728,11 +34910,11 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
34728
34910
|
width: 1em;
|
|
34729
34911
|
}
|
|
34730
34912
|
@media (prefers-reduced-motion: reduce) {
|
|
34731
|
-
.loading-animation::after {
|
|
34913
|
+
.loading-animation::after, .c-prefers-reduced-motion .loading-animation-squares::after {
|
|
34732
34914
|
animation: none;
|
|
34733
34915
|
}
|
|
34734
34916
|
}
|
|
34735
|
-
.c-prefers-reduced-motion .loading-animation::after {
|
|
34917
|
+
.c-prefers-reduced-motion .loading-animation::after, .c-prefers-reduced-motion .loading-animation-squares::after {
|
|
34736
34918
|
animation: none;
|
|
34737
34919
|
}
|
|
34738
34920
|
|