@clayui/css 3.38.0 → 3.41.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/index.js +7 -2
- package/lib/css/atlas.css +819 -966
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +668 -814
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +1013 -881
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/geolocation.svg +1 -1
- package/lib/images/icons/heading.svg +9 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/maps.svg +10 -0
- package/lib/images/icons/order-ascending.svg +11 -0
- package/lib/images/icons/order-descending.svg +11 -0
- package/package.json +5 -3
- package/src/images/icons/geolocation.svg +1 -1
- package/src/images/icons/heading.svg +9 -0
- package/src/images/icons/maps.svg +10 -0
- package/src/images/icons/order-ascending.svg +11 -0
- package/src/images/icons/order-descending.svg +11 -0
- package/src/scss/_mixins.scss +1 -0
- package/src/scss/atlas/variables/_alerts.scss +10 -0
- package/src/scss/atlas/variables/_breadcrumbs.scss +4 -2
- package/src/scss/atlas/variables/_cards.scss +2 -2
- package/src/scss/atlas/variables/_custom-forms.scss +190 -14
- package/src/scss/atlas/variables/_dropdowns.scss +188 -17
- package/src/scss/atlas/variables/_forms.scss +33 -1
- package/src/scss/atlas/variables/_globals.scss +14 -1
- package/src/scss/atlas/variables/_labels.scss +171 -71
- package/src/scss/atlas/variables/_navs.scss +20 -8
- package/src/scss/atlas/variables/_pagination.scss +2 -2
- package/src/scss/atlas/variables/_sheets.scss +4 -2
- package/src/scss/atlas/variables/_stickers.scss +167 -3
- package/src/scss/atlas/variables/_tables.scss +58 -28
- package/src/scss/cadmin/components/_alerts.scss +1 -17
- package/src/scss/cadmin/components/_cards.scss +14 -16
- package/src/scss/cadmin/components/_custom-forms.scss +15 -165
- package/src/scss/cadmin/components/_dropdowns.scss +66 -205
- package/src/scss/cadmin/components/_form-validation.scss +10 -237
- package/src/scss/cadmin/components/_forms.scss +1 -1
- package/src/scss/cadmin/components/_grid.scss +20 -20
- package/src/scss/cadmin/components/_icons.scss +1 -6
- package/src/scss/cadmin/components/_images.scss +1 -1
- package/src/scss/cadmin/components/_input-groups.scss +17 -14
- package/src/scss/cadmin/components/_labels.scss +33 -101
- package/src/scss/cadmin/components/_list-group.scss +4 -4
- package/src/scss/cadmin/components/_modals.scss +1 -1
- package/src/scss/cadmin/components/_multi-step-nav.scss +2 -2
- package/src/scss/cadmin/components/_navbar.scss +2 -2
- package/src/scss/cadmin/components/_popovers.scss +34 -30
- package/src/scss/cadmin/components/_reboot.scss +1 -8
- package/src/scss/cadmin/components/_sidebar.scss +1 -1
- package/src/scss/cadmin/components/_stickers.scss +39 -94
- package/src/scss/cadmin/components/_toggle-switch.scss +20 -358
- package/src/scss/cadmin/components/_tooltip.scss +16 -14
- package/src/scss/cadmin/components/_type.scss +9 -1
- package/src/scss/cadmin/variables/_alerts.scss +38 -14
- package/src/scss/cadmin/variables/_breadcrumbs.scss +10 -6
- package/src/scss/cadmin/variables/_cards.scss +96 -28
- package/src/scss/cadmin/variables/_custom-forms.scss +262 -20
- package/src/scss/cadmin/variables/_dropdowns.scss +449 -137
- package/src/scss/cadmin/variables/_forms.scss +356 -5
- package/src/scss/cadmin/variables/_globals.scss +15 -1
- package/src/scss/cadmin/variables/_icons.scss +15 -2
- package/src/scss/cadmin/variables/_labels.scss +288 -101
- package/src/scss/cadmin/variables/_links.scss +9 -7
- package/src/scss/cadmin/variables/_menubar.scss +4 -4
- package/src/scss/cadmin/variables/_multi-step-nav.scss +2 -2
- package/src/scss/cadmin/variables/_navbar.scss +2 -2
- package/src/scss/cadmin/variables/_navs.scss +2 -2
- package/src/scss/cadmin/variables/_stickers.scss +258 -45
- package/src/scss/cadmin/variables/_tables.scss +1 -1
- package/src/scss/cadmin/variables/_timelines.scss +1 -1
- package/src/scss/cadmin/variables/_toggle-switch.scss +404 -1
- package/src/scss/cadmin/variables/_type.scss +3 -0
- package/src/scss/components/_alerts.scss +5 -17
- package/src/scss/components/_cards.scss +7 -7
- package/src/scss/components/_carousel.scss +2 -2
- package/src/scss/components/_custom-forms.scss +20 -164
- package/src/scss/components/_dropdowns.scss +52 -209
- package/src/scss/components/_form-validation.scss +8 -237
- package/src/scss/components/_forms.scss +66 -9
- package/src/scss/components/_grid.scss +15 -17
- package/src/scss/components/_icons.scss +4 -9
- package/src/scss/components/_images.scss +1 -1
- package/src/scss/components/_input-groups.scss +17 -14
- package/src/scss/components/_jumbotron.scss +1 -1
- package/src/scss/components/_labels.scss +29 -99
- package/src/scss/components/_list-group.scss +4 -4
- package/src/scss/components/_modals.scss +1 -1
- package/src/scss/components/_multi-step-nav.scss +2 -2
- package/src/scss/components/_navbar.scss +2 -2
- package/src/scss/components/_popovers.scss +30 -30
- package/src/scss/components/_reboot.scss +3 -39
- package/src/scss/components/_side-navigation.scss +2 -2
- package/src/scss/components/_sidebar.scss +1 -1
- package/src/scss/components/_stickers.scss +36 -94
- package/src/scss/components/_toggle-switch.scss +36 -351
- package/src/scss/components/_tooltip.scss +14 -14
- package/src/scss/components/_type.scss +9 -1
- package/src/scss/components/_utilities-functional-important.scss +4 -3
- package/src/scss/functions/_global-functions.scss +26 -6
- package/src/scss/functions/_lx-icons-generated.scss +125 -117
- package/src/scss/functions/_polyfills.scss +17 -0
- package/src/scss/functions/_type-conversion-functions.scss +5 -4
- package/src/scss/mixins/_alerts.scss +25 -0
- package/src/scss/mixins/_aspect-ratio.scss +1 -1
- package/src/scss/mixins/_buttons.scss +256 -15
- package/src/scss/mixins/_cards.scss +610 -114
- package/src/scss/mixins/_custom-forms.scss +668 -0
- package/src/scss/mixins/_dropdown-menu.scss +168 -48
- package/src/scss/mixins/_forms.scss +427 -12
- package/src/scss/mixins/_globals.scss +244 -234
- package/src/scss/mixins/_grid.scss +13 -15
- package/src/scss/mixins/_labels.scss +331 -97
- package/src/scss/mixins/_links.scss +453 -33
- package/src/scss/mixins/_navbar.scss +10 -10
- package/src/scss/mixins/_rfs.scss +14 -9
- package/src/scss/mixins/_stickers.scss +168 -17
- package/src/scss/mixins/_toggle-switch.scss +1076 -14
- package/src/scss/variables/_alerts.scss +38 -14
- package/src/scss/variables/_breadcrumbs.scss +8 -4
- package/src/scss/variables/_cards.scss +46 -8
- package/src/scss/variables/_custom-forms.scss +253 -18
- package/src/scss/variables/_dropdowns.scss +583 -132
- package/src/scss/variables/_forms.scss +304 -2
- package/src/scss/variables/_globals.scss +54 -1
- package/src/scss/variables/_icons.scss +60 -9
- package/src/scss/variables/_labels.scss +303 -107
- package/src/scss/variables/_links.scss +15 -13
- package/src/scss/variables/_menubar.scss +4 -4
- package/src/scss/variables/_multi-step-nav.scss +2 -2
- package/src/scss/variables/_navbar.scss +2 -2
- package/src/scss/variables/_navs.scss +37 -17
- package/src/scss/variables/_pagination.scss +15 -13
- package/src/scss/variables/_sheets.scss +4 -2
- package/src/scss/variables/_stickers.scss +327 -50
- package/src/scss/variables/_tables.scss +25 -9
- package/src/scss/variables/_timelines.scss +1 -1
- package/src/scss/variables/_toggle-switch.scss +404 -5
- package/src/scss/variables/_type.scss +3 -0
package/lib/css/cadmin.css
CHANGED
|
@@ -57,6 +57,7 @@ html:not(#__):not(#___) .cadmin {
|
|
|
57
57
|
padding: 0;
|
|
58
58
|
text-align: left;
|
|
59
59
|
text-decoration: none;
|
|
60
|
+
text-decoration-color: currentcolor;
|
|
60
61
|
text-indent: 0;
|
|
61
62
|
text-shadow: none;
|
|
62
63
|
text-transform: none;
|
|
@@ -168,6 +169,7 @@ html:not(#__):not(#___) .cadmin var {
|
|
|
168
169
|
padding: 0;
|
|
169
170
|
text-align: inherit;
|
|
170
171
|
text-decoration: inherit;
|
|
172
|
+
text-decoration-color: inherit;
|
|
171
173
|
text-indent: inherit;
|
|
172
174
|
text-shadow: inherit;
|
|
173
175
|
text-transform: inherit;
|
|
@@ -724,7 +726,7 @@ html:not(#__):not(#___) .cadmin .collapse-icon .collapse-icon-open {
|
|
|
724
726
|
height: 1em;
|
|
725
727
|
position: absolute;
|
|
726
728
|
right: 15px;
|
|
727
|
-
top: calc(10px + 1px + (((0.9375em * 1.5) - 1em)
|
|
729
|
+
top: calc(10px + 1px + (((0.9375em * 1.5) - 1em) * 0.5));
|
|
728
730
|
width: 1em;
|
|
729
731
|
}
|
|
730
732
|
html:not(#__):not(#___) .cadmin .collapse-icon .collapse-icon-closed .lexicon-icon,
|
|
@@ -754,7 +756,7 @@ html:not(#__):not(#___) .cadmin .aspect-ratio {
|
|
|
754
756
|
display: block;
|
|
755
757
|
overflow: hidden;
|
|
756
758
|
position: relative;
|
|
757
|
-
padding-bottom: 100
|
|
759
|
+
padding-bottom: calc(1 / 1 * 100%);
|
|
758
760
|
}
|
|
759
761
|
html:not(#__):not(#___) .cadmin .aspect-ratio-item {
|
|
760
762
|
left: 0;
|
|
@@ -849,16 +851,16 @@ html:not(#__):not(#___) .cadmin .sticker-img, html:not(#__):not(#___) .cadmin .a
|
|
|
849
851
|
transform: translate(-50%, -50%);
|
|
850
852
|
}
|
|
851
853
|
html:not(#__):not(#___) .cadmin .aspect-ratio-3-to-2 {
|
|
852
|
-
padding-bottom:
|
|
854
|
+
padding-bottom: calc(2 / 3 * 100%);
|
|
853
855
|
}
|
|
854
856
|
html:not(#__):not(#___) .cadmin .aspect-ratio-4-to-3 {
|
|
855
|
-
padding-bottom:
|
|
857
|
+
padding-bottom: calc(3 / 4 * 100%);
|
|
856
858
|
}
|
|
857
859
|
html:not(#__):not(#___) .cadmin .aspect-ratio-8-to-5 {
|
|
858
|
-
padding-bottom:
|
|
860
|
+
padding-bottom: calc(5 / 8 * 100%);
|
|
859
861
|
}
|
|
860
862
|
html:not(#__):not(#___) .cadmin .aspect-ratio-16-to-9 {
|
|
861
|
-
padding-bottom:
|
|
863
|
+
padding-bottom: calc(9 / 16 * 100%);
|
|
862
864
|
}
|
|
863
865
|
html:not(#__):not(#___) .cadmin .aspect-ratio-bg-contain {
|
|
864
866
|
background-position: center;
|
|
@@ -1705,28 +1707,28 @@ html:not(#__):not(#___) .cadmin .col {
|
|
|
1705
1707
|
max-width: 100%;
|
|
1706
1708
|
}
|
|
1707
1709
|
html:not(#__):not(#___) .cadmin .row-cols-1 > * {
|
|
1708
|
-
flex: 0 0 100
|
|
1709
|
-
max-width: 100
|
|
1710
|
+
flex: 0 0 calc(100% / 1);
|
|
1711
|
+
max-width: calc(100% / 1);
|
|
1710
1712
|
}
|
|
1711
1713
|
html:not(#__):not(#___) .cadmin .row-cols-2 > * {
|
|
1712
|
-
flex: 0 0
|
|
1713
|
-
max-width:
|
|
1714
|
+
flex: 0 0 calc(100% / 2);
|
|
1715
|
+
max-width: calc(100% / 2);
|
|
1714
1716
|
}
|
|
1715
1717
|
html:not(#__):not(#___) .cadmin .row-cols-3 > * {
|
|
1716
|
-
flex: 0 0
|
|
1717
|
-
max-width:
|
|
1718
|
+
flex: 0 0 calc(100% / 3);
|
|
1719
|
+
max-width: calc(100% / 3);
|
|
1718
1720
|
}
|
|
1719
1721
|
html:not(#__):not(#___) .cadmin .row-cols-4 > * {
|
|
1720
|
-
flex: 0 0
|
|
1721
|
-
max-width:
|
|
1722
|
+
flex: 0 0 calc(100% / 4);
|
|
1723
|
+
max-width: calc(100% / 4);
|
|
1722
1724
|
}
|
|
1723
1725
|
html:not(#__):not(#___) .cadmin .row-cols-5 > * {
|
|
1724
|
-
flex: 0 0
|
|
1725
|
-
max-width:
|
|
1726
|
+
flex: 0 0 calc(100% / 5);
|
|
1727
|
+
max-width: calc(100% / 5);
|
|
1726
1728
|
}
|
|
1727
1729
|
html:not(#__):not(#___) .cadmin .row-cols-6 > * {
|
|
1728
|
-
flex: 0 0
|
|
1729
|
-
max-width:
|
|
1730
|
+
flex: 0 0 calc(100% / 6);
|
|
1731
|
+
max-width: calc(100% / 6);
|
|
1730
1732
|
}
|
|
1731
1733
|
html:not(#__):not(#___) .cadmin .col-auto {
|
|
1732
1734
|
flex: 0 0 auto;
|
|
@@ -1734,52 +1736,76 @@ html:not(#__):not(#___) .cadmin .col-auto {
|
|
|
1734
1736
|
width: auto;
|
|
1735
1737
|
}
|
|
1736
1738
|
html:not(#__):not(#___) .cadmin .col-1 {
|
|
1737
|
-
flex: 0 0
|
|
1738
|
-
max-width:
|
|
1739
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
1740
|
+
max-width: calc(
|
|
1741
|
+
1 / 12 * 100%
|
|
1742
|
+
);
|
|
1739
1743
|
}
|
|
1740
1744
|
html:not(#__):not(#___) .cadmin .col-2 {
|
|
1741
|
-
flex: 0 0
|
|
1742
|
-
max-width:
|
|
1745
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
1746
|
+
max-width: calc(
|
|
1747
|
+
2 / 12 * 100%
|
|
1748
|
+
);
|
|
1743
1749
|
}
|
|
1744
1750
|
html:not(#__):not(#___) .cadmin .col-3 {
|
|
1745
|
-
flex: 0 0
|
|
1746
|
-
max-width:
|
|
1751
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
1752
|
+
max-width: calc(
|
|
1753
|
+
3 / 12 * 100%
|
|
1754
|
+
);
|
|
1747
1755
|
}
|
|
1748
1756
|
html:not(#__):not(#___) .cadmin .col-4 {
|
|
1749
|
-
flex: 0 0
|
|
1750
|
-
max-width:
|
|
1757
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
1758
|
+
max-width: calc(
|
|
1759
|
+
4 / 12 * 100%
|
|
1760
|
+
);
|
|
1751
1761
|
}
|
|
1752
1762
|
html:not(#__):not(#___) .cadmin .col-5 {
|
|
1753
|
-
flex: 0 0
|
|
1754
|
-
max-width:
|
|
1763
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
1764
|
+
max-width: calc(
|
|
1765
|
+
5 / 12 * 100%
|
|
1766
|
+
);
|
|
1755
1767
|
}
|
|
1756
1768
|
html:not(#__):not(#___) .cadmin .col-6 {
|
|
1757
|
-
flex: 0 0
|
|
1758
|
-
max-width:
|
|
1769
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
1770
|
+
max-width: calc(
|
|
1771
|
+
6 / 12 * 100%
|
|
1772
|
+
);
|
|
1759
1773
|
}
|
|
1760
1774
|
html:not(#__):not(#___) .cadmin .col-7 {
|
|
1761
|
-
flex: 0 0
|
|
1762
|
-
max-width:
|
|
1775
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
1776
|
+
max-width: calc(
|
|
1777
|
+
7 / 12 * 100%
|
|
1778
|
+
);
|
|
1763
1779
|
}
|
|
1764
1780
|
html:not(#__):not(#___) .cadmin .col-8 {
|
|
1765
|
-
flex: 0 0
|
|
1766
|
-
max-width:
|
|
1781
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
1782
|
+
max-width: calc(
|
|
1783
|
+
8 / 12 * 100%
|
|
1784
|
+
);
|
|
1767
1785
|
}
|
|
1768
1786
|
html:not(#__):not(#___) .cadmin .col-9 {
|
|
1769
|
-
flex: 0 0
|
|
1770
|
-
max-width:
|
|
1787
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
1788
|
+
max-width: calc(
|
|
1789
|
+
9 / 12 * 100%
|
|
1790
|
+
);
|
|
1771
1791
|
}
|
|
1772
1792
|
html:not(#__):not(#___) .cadmin .col-10 {
|
|
1773
|
-
flex: 0 0
|
|
1774
|
-
max-width:
|
|
1793
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
1794
|
+
max-width: calc(
|
|
1795
|
+
10 / 12 * 100%
|
|
1796
|
+
);
|
|
1775
1797
|
}
|
|
1776
1798
|
html:not(#__):not(#___) .cadmin .col-11 {
|
|
1777
|
-
flex: 0 0
|
|
1778
|
-
max-width:
|
|
1799
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
1800
|
+
max-width: calc(
|
|
1801
|
+
11 / 12 * 100%
|
|
1802
|
+
);
|
|
1779
1803
|
}
|
|
1780
1804
|
html:not(#__):not(#___) .cadmin .col-12 {
|
|
1781
|
-
flex: 0 0 100
|
|
1782
|
-
max-width:
|
|
1805
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
1806
|
+
max-width: calc(
|
|
1807
|
+
12 / 12 * 100%
|
|
1808
|
+
);
|
|
1783
1809
|
}
|
|
1784
1810
|
html:not(#__):not(#___) .cadmin .order-first {
|
|
1785
1811
|
order: -1;
|
|
@@ -1827,37 +1853,59 @@ html:not(#__):not(#___) .cadmin .order-12 {
|
|
|
1827
1853
|
order: 12;
|
|
1828
1854
|
}
|
|
1829
1855
|
html:not(#__):not(#___) .cadmin .offset-1 {
|
|
1830
|
-
margin-left:
|
|
1856
|
+
margin-left: calc(
|
|
1857
|
+
1 / 12 * 100%
|
|
1858
|
+
);
|
|
1831
1859
|
}
|
|
1832
1860
|
html:not(#__):not(#___) .cadmin .offset-2 {
|
|
1833
|
-
margin-left:
|
|
1861
|
+
margin-left: calc(
|
|
1862
|
+
2 / 12 * 100%
|
|
1863
|
+
);
|
|
1834
1864
|
}
|
|
1835
1865
|
html:not(#__):not(#___) .cadmin .offset-3 {
|
|
1836
|
-
margin-left:
|
|
1866
|
+
margin-left: calc(
|
|
1867
|
+
3 / 12 * 100%
|
|
1868
|
+
);
|
|
1837
1869
|
}
|
|
1838
1870
|
html:not(#__):not(#___) .cadmin .offset-4 {
|
|
1839
|
-
margin-left:
|
|
1871
|
+
margin-left: calc(
|
|
1872
|
+
4 / 12 * 100%
|
|
1873
|
+
);
|
|
1840
1874
|
}
|
|
1841
1875
|
html:not(#__):not(#___) .cadmin .offset-5 {
|
|
1842
|
-
margin-left:
|
|
1876
|
+
margin-left: calc(
|
|
1877
|
+
5 / 12 * 100%
|
|
1878
|
+
);
|
|
1843
1879
|
}
|
|
1844
1880
|
html:not(#__):not(#___) .cadmin .offset-6 {
|
|
1845
|
-
margin-left:
|
|
1881
|
+
margin-left: calc(
|
|
1882
|
+
6 / 12 * 100%
|
|
1883
|
+
);
|
|
1846
1884
|
}
|
|
1847
1885
|
html:not(#__):not(#___) .cadmin .offset-7 {
|
|
1848
|
-
margin-left:
|
|
1886
|
+
margin-left: calc(
|
|
1887
|
+
7 / 12 * 100%
|
|
1888
|
+
);
|
|
1849
1889
|
}
|
|
1850
1890
|
html:not(#__):not(#___) .cadmin .offset-8 {
|
|
1851
|
-
margin-left:
|
|
1891
|
+
margin-left: calc(
|
|
1892
|
+
8 / 12 * 100%
|
|
1893
|
+
);
|
|
1852
1894
|
}
|
|
1853
1895
|
html:not(#__):not(#___) .cadmin .offset-9 {
|
|
1854
|
-
margin-left:
|
|
1896
|
+
margin-left: calc(
|
|
1897
|
+
9 / 12 * 100%
|
|
1898
|
+
);
|
|
1855
1899
|
}
|
|
1856
1900
|
html:not(#__):not(#___) .cadmin .offset-10 {
|
|
1857
|
-
margin-left:
|
|
1901
|
+
margin-left: calc(
|
|
1902
|
+
10 / 12 * 100%
|
|
1903
|
+
);
|
|
1858
1904
|
}
|
|
1859
1905
|
html:not(#__):not(#___) .cadmin .offset-11 {
|
|
1860
|
-
margin-left:
|
|
1906
|
+
margin-left: calc(
|
|
1907
|
+
11 / 12 * 100%
|
|
1908
|
+
);
|
|
1861
1909
|
}
|
|
1862
1910
|
@media (min-width: 576px) {
|
|
1863
1911
|
html:not(#__):not(#___) .cadmin .col-sm {
|
|
@@ -1866,28 +1914,28 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
1866
1914
|
max-width: 100%;
|
|
1867
1915
|
}
|
|
1868
1916
|
html:not(#__):not(#___) .cadmin .row-cols-sm-1 > * {
|
|
1869
|
-
flex: 0 0 100
|
|
1870
|
-
max-width: 100
|
|
1917
|
+
flex: 0 0 calc(100% / 1);
|
|
1918
|
+
max-width: calc(100% / 1);
|
|
1871
1919
|
}
|
|
1872
1920
|
html:not(#__):not(#___) .cadmin .row-cols-sm-2 > * {
|
|
1873
|
-
flex: 0 0
|
|
1874
|
-
max-width:
|
|
1921
|
+
flex: 0 0 calc(100% / 2);
|
|
1922
|
+
max-width: calc(100% / 2);
|
|
1875
1923
|
}
|
|
1876
1924
|
html:not(#__):not(#___) .cadmin .row-cols-sm-3 > * {
|
|
1877
|
-
flex: 0 0
|
|
1878
|
-
max-width:
|
|
1925
|
+
flex: 0 0 calc(100% / 3);
|
|
1926
|
+
max-width: calc(100% / 3);
|
|
1879
1927
|
}
|
|
1880
1928
|
html:not(#__):not(#___) .cadmin .row-cols-sm-4 > * {
|
|
1881
|
-
flex: 0 0
|
|
1882
|
-
max-width:
|
|
1929
|
+
flex: 0 0 calc(100% / 4);
|
|
1930
|
+
max-width: calc(100% / 4);
|
|
1883
1931
|
}
|
|
1884
1932
|
html:not(#__):not(#___) .cadmin .row-cols-sm-5 > * {
|
|
1885
|
-
flex: 0 0
|
|
1886
|
-
max-width:
|
|
1933
|
+
flex: 0 0 calc(100% / 5);
|
|
1934
|
+
max-width: calc(100% / 5);
|
|
1887
1935
|
}
|
|
1888
1936
|
html:not(#__):not(#___) .cadmin .row-cols-sm-6 > * {
|
|
1889
|
-
flex: 0 0
|
|
1890
|
-
max-width:
|
|
1937
|
+
flex: 0 0 calc(100% / 6);
|
|
1938
|
+
max-width: calc(100% / 6);
|
|
1891
1939
|
}
|
|
1892
1940
|
html:not(#__):not(#___) .cadmin .col-sm-auto {
|
|
1893
1941
|
flex: 0 0 auto;
|
|
@@ -1895,52 +1943,76 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
1895
1943
|
width: auto;
|
|
1896
1944
|
}
|
|
1897
1945
|
html:not(#__):not(#___) .cadmin .col-sm-1 {
|
|
1898
|
-
flex: 0 0
|
|
1899
|
-
max-width:
|
|
1946
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
1947
|
+
max-width: calc(
|
|
1948
|
+
1 / 12 * 100%
|
|
1949
|
+
);
|
|
1900
1950
|
}
|
|
1901
1951
|
html:not(#__):not(#___) .cadmin .col-sm-2 {
|
|
1902
|
-
flex: 0 0
|
|
1903
|
-
max-width:
|
|
1952
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
1953
|
+
max-width: calc(
|
|
1954
|
+
2 / 12 * 100%
|
|
1955
|
+
);
|
|
1904
1956
|
}
|
|
1905
1957
|
html:not(#__):not(#___) .cadmin .col-sm-3 {
|
|
1906
|
-
flex: 0 0
|
|
1907
|
-
max-width:
|
|
1958
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
1959
|
+
max-width: calc(
|
|
1960
|
+
3 / 12 * 100%
|
|
1961
|
+
);
|
|
1908
1962
|
}
|
|
1909
1963
|
html:not(#__):not(#___) .cadmin .col-sm-4 {
|
|
1910
|
-
flex: 0 0
|
|
1911
|
-
max-width:
|
|
1964
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
1965
|
+
max-width: calc(
|
|
1966
|
+
4 / 12 * 100%
|
|
1967
|
+
);
|
|
1912
1968
|
}
|
|
1913
1969
|
html:not(#__):not(#___) .cadmin .col-sm-5 {
|
|
1914
|
-
flex: 0 0
|
|
1915
|
-
max-width:
|
|
1970
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
1971
|
+
max-width: calc(
|
|
1972
|
+
5 / 12 * 100%
|
|
1973
|
+
);
|
|
1916
1974
|
}
|
|
1917
1975
|
html:not(#__):not(#___) .cadmin .col-sm-6 {
|
|
1918
|
-
flex: 0 0
|
|
1919
|
-
max-width:
|
|
1976
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
1977
|
+
max-width: calc(
|
|
1978
|
+
6 / 12 * 100%
|
|
1979
|
+
);
|
|
1920
1980
|
}
|
|
1921
1981
|
html:not(#__):not(#___) .cadmin .col-sm-7 {
|
|
1922
|
-
flex: 0 0
|
|
1923
|
-
max-width:
|
|
1982
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
1983
|
+
max-width: calc(
|
|
1984
|
+
7 / 12 * 100%
|
|
1985
|
+
);
|
|
1924
1986
|
}
|
|
1925
1987
|
html:not(#__):not(#___) .cadmin .col-sm-8 {
|
|
1926
|
-
flex: 0 0
|
|
1927
|
-
max-width:
|
|
1988
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
1989
|
+
max-width: calc(
|
|
1990
|
+
8 / 12 * 100%
|
|
1991
|
+
);
|
|
1928
1992
|
}
|
|
1929
1993
|
html:not(#__):not(#___) .cadmin .col-sm-9 {
|
|
1930
|
-
flex: 0 0
|
|
1931
|
-
max-width:
|
|
1994
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
1995
|
+
max-width: calc(
|
|
1996
|
+
9 / 12 * 100%
|
|
1997
|
+
);
|
|
1932
1998
|
}
|
|
1933
1999
|
html:not(#__):not(#___) .cadmin .col-sm-10 {
|
|
1934
|
-
flex: 0 0
|
|
1935
|
-
max-width:
|
|
2000
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
2001
|
+
max-width: calc(
|
|
2002
|
+
10 / 12 * 100%
|
|
2003
|
+
);
|
|
1936
2004
|
}
|
|
1937
2005
|
html:not(#__):not(#___) .cadmin .col-sm-11 {
|
|
1938
|
-
flex: 0 0
|
|
1939
|
-
max-width:
|
|
2006
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
2007
|
+
max-width: calc(
|
|
2008
|
+
11 / 12 * 100%
|
|
2009
|
+
);
|
|
1940
2010
|
}
|
|
1941
2011
|
html:not(#__):not(#___) .cadmin .col-sm-12 {
|
|
1942
|
-
flex: 0 0 100
|
|
1943
|
-
max-width:
|
|
2012
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
2013
|
+
max-width: calc(
|
|
2014
|
+
12 / 12 * 100%
|
|
2015
|
+
);
|
|
1944
2016
|
}
|
|
1945
2017
|
html:not(#__):not(#___) .cadmin .order-sm-first {
|
|
1946
2018
|
order: -1;
|
|
@@ -1988,40 +2060,64 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
1988
2060
|
order: 12;
|
|
1989
2061
|
}
|
|
1990
2062
|
html:not(#__):not(#___) .cadmin .offset-sm-0 {
|
|
1991
|
-
margin-left:
|
|
2063
|
+
margin-left: calc(
|
|
2064
|
+
0 / 12 * 100%
|
|
2065
|
+
);
|
|
1992
2066
|
}
|
|
1993
2067
|
html:not(#__):not(#___) .cadmin .offset-sm-1 {
|
|
1994
|
-
margin-left:
|
|
2068
|
+
margin-left: calc(
|
|
2069
|
+
1 / 12 * 100%
|
|
2070
|
+
);
|
|
1995
2071
|
}
|
|
1996
2072
|
html:not(#__):not(#___) .cadmin .offset-sm-2 {
|
|
1997
|
-
margin-left:
|
|
2073
|
+
margin-left: calc(
|
|
2074
|
+
2 / 12 * 100%
|
|
2075
|
+
);
|
|
1998
2076
|
}
|
|
1999
2077
|
html:not(#__):not(#___) .cadmin .offset-sm-3 {
|
|
2000
|
-
margin-left:
|
|
2078
|
+
margin-left: calc(
|
|
2079
|
+
3 / 12 * 100%
|
|
2080
|
+
);
|
|
2001
2081
|
}
|
|
2002
2082
|
html:not(#__):not(#___) .cadmin .offset-sm-4 {
|
|
2003
|
-
margin-left:
|
|
2083
|
+
margin-left: calc(
|
|
2084
|
+
4 / 12 * 100%
|
|
2085
|
+
);
|
|
2004
2086
|
}
|
|
2005
2087
|
html:not(#__):not(#___) .cadmin .offset-sm-5 {
|
|
2006
|
-
margin-left:
|
|
2088
|
+
margin-left: calc(
|
|
2089
|
+
5 / 12 * 100%
|
|
2090
|
+
);
|
|
2007
2091
|
}
|
|
2008
2092
|
html:not(#__):not(#___) .cadmin .offset-sm-6 {
|
|
2009
|
-
margin-left:
|
|
2093
|
+
margin-left: calc(
|
|
2094
|
+
6 / 12 * 100%
|
|
2095
|
+
);
|
|
2010
2096
|
}
|
|
2011
2097
|
html:not(#__):not(#___) .cadmin .offset-sm-7 {
|
|
2012
|
-
margin-left:
|
|
2098
|
+
margin-left: calc(
|
|
2099
|
+
7 / 12 * 100%
|
|
2100
|
+
);
|
|
2013
2101
|
}
|
|
2014
2102
|
html:not(#__):not(#___) .cadmin .offset-sm-8 {
|
|
2015
|
-
margin-left:
|
|
2103
|
+
margin-left: calc(
|
|
2104
|
+
8 / 12 * 100%
|
|
2105
|
+
);
|
|
2016
2106
|
}
|
|
2017
2107
|
html:not(#__):not(#___) .cadmin .offset-sm-9 {
|
|
2018
|
-
margin-left:
|
|
2108
|
+
margin-left: calc(
|
|
2109
|
+
9 / 12 * 100%
|
|
2110
|
+
);
|
|
2019
2111
|
}
|
|
2020
2112
|
html:not(#__):not(#___) .cadmin .offset-sm-10 {
|
|
2021
|
-
margin-left:
|
|
2113
|
+
margin-left: calc(
|
|
2114
|
+
10 / 12 * 100%
|
|
2115
|
+
);
|
|
2022
2116
|
}
|
|
2023
2117
|
html:not(#__):not(#___) .cadmin .offset-sm-11 {
|
|
2024
|
-
margin-left:
|
|
2118
|
+
margin-left: calc(
|
|
2119
|
+
11 / 12 * 100%
|
|
2120
|
+
);
|
|
2025
2121
|
}
|
|
2026
2122
|
}
|
|
2027
2123
|
@media (min-width: 768px) {
|
|
@@ -2031,28 +2127,28 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
2031
2127
|
max-width: 100%;
|
|
2032
2128
|
}
|
|
2033
2129
|
html:not(#__):not(#___) .cadmin .row-cols-md-1 > * {
|
|
2034
|
-
flex: 0 0 100
|
|
2035
|
-
max-width: 100
|
|
2130
|
+
flex: 0 0 calc(100% / 1);
|
|
2131
|
+
max-width: calc(100% / 1);
|
|
2036
2132
|
}
|
|
2037
2133
|
html:not(#__):not(#___) .cadmin .row-cols-md-2 > * {
|
|
2038
|
-
flex: 0 0
|
|
2039
|
-
max-width:
|
|
2134
|
+
flex: 0 0 calc(100% / 2);
|
|
2135
|
+
max-width: calc(100% / 2);
|
|
2040
2136
|
}
|
|
2041
2137
|
html:not(#__):not(#___) .cadmin .row-cols-md-3 > * {
|
|
2042
|
-
flex: 0 0
|
|
2043
|
-
max-width:
|
|
2138
|
+
flex: 0 0 calc(100% / 3);
|
|
2139
|
+
max-width: calc(100% / 3);
|
|
2044
2140
|
}
|
|
2045
2141
|
html:not(#__):not(#___) .cadmin .row-cols-md-4 > * {
|
|
2046
|
-
flex: 0 0
|
|
2047
|
-
max-width:
|
|
2142
|
+
flex: 0 0 calc(100% / 4);
|
|
2143
|
+
max-width: calc(100% / 4);
|
|
2048
2144
|
}
|
|
2049
2145
|
html:not(#__):not(#___) .cadmin .row-cols-md-5 > * {
|
|
2050
|
-
flex: 0 0
|
|
2051
|
-
max-width:
|
|
2146
|
+
flex: 0 0 calc(100% / 5);
|
|
2147
|
+
max-width: calc(100% / 5);
|
|
2052
2148
|
}
|
|
2053
2149
|
html:not(#__):not(#___) .cadmin .row-cols-md-6 > * {
|
|
2054
|
-
flex: 0 0
|
|
2055
|
-
max-width:
|
|
2150
|
+
flex: 0 0 calc(100% / 6);
|
|
2151
|
+
max-width: calc(100% / 6);
|
|
2056
2152
|
}
|
|
2057
2153
|
html:not(#__):not(#___) .cadmin .col-md-auto {
|
|
2058
2154
|
flex: 0 0 auto;
|
|
@@ -2060,52 +2156,76 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
2060
2156
|
width: auto;
|
|
2061
2157
|
}
|
|
2062
2158
|
html:not(#__):not(#___) .cadmin .col-md-1 {
|
|
2063
|
-
flex: 0 0
|
|
2064
|
-
max-width:
|
|
2159
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
2160
|
+
max-width: calc(
|
|
2161
|
+
1 / 12 * 100%
|
|
2162
|
+
);
|
|
2065
2163
|
}
|
|
2066
2164
|
html:not(#__):not(#___) .cadmin .col-md-2 {
|
|
2067
|
-
flex: 0 0
|
|
2068
|
-
max-width:
|
|
2165
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
2166
|
+
max-width: calc(
|
|
2167
|
+
2 / 12 * 100%
|
|
2168
|
+
);
|
|
2069
2169
|
}
|
|
2070
2170
|
html:not(#__):not(#___) .cadmin .col-md-3 {
|
|
2071
|
-
flex: 0 0
|
|
2072
|
-
max-width:
|
|
2171
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
2172
|
+
max-width: calc(
|
|
2173
|
+
3 / 12 * 100%
|
|
2174
|
+
);
|
|
2073
2175
|
}
|
|
2074
2176
|
html:not(#__):not(#___) .cadmin .col-md-4 {
|
|
2075
|
-
flex: 0 0
|
|
2076
|
-
max-width:
|
|
2177
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
2178
|
+
max-width: calc(
|
|
2179
|
+
4 / 12 * 100%
|
|
2180
|
+
);
|
|
2077
2181
|
}
|
|
2078
2182
|
html:not(#__):not(#___) .cadmin .col-md-5 {
|
|
2079
|
-
flex: 0 0
|
|
2080
|
-
max-width:
|
|
2183
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
2184
|
+
max-width: calc(
|
|
2185
|
+
5 / 12 * 100%
|
|
2186
|
+
);
|
|
2081
2187
|
}
|
|
2082
2188
|
html:not(#__):not(#___) .cadmin .col-md-6 {
|
|
2083
|
-
flex: 0 0
|
|
2084
|
-
max-width:
|
|
2189
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
2190
|
+
max-width: calc(
|
|
2191
|
+
6 / 12 * 100%
|
|
2192
|
+
);
|
|
2085
2193
|
}
|
|
2086
2194
|
html:not(#__):not(#___) .cadmin .col-md-7 {
|
|
2087
|
-
flex: 0 0
|
|
2088
|
-
max-width:
|
|
2195
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
2196
|
+
max-width: calc(
|
|
2197
|
+
7 / 12 * 100%
|
|
2198
|
+
);
|
|
2089
2199
|
}
|
|
2090
2200
|
html:not(#__):not(#___) .cadmin .col-md-8 {
|
|
2091
|
-
flex: 0 0
|
|
2092
|
-
max-width:
|
|
2201
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
2202
|
+
max-width: calc(
|
|
2203
|
+
8 / 12 * 100%
|
|
2204
|
+
);
|
|
2093
2205
|
}
|
|
2094
2206
|
html:not(#__):not(#___) .cadmin .col-md-9 {
|
|
2095
|
-
flex: 0 0
|
|
2096
|
-
max-width:
|
|
2207
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
2208
|
+
max-width: calc(
|
|
2209
|
+
9 / 12 * 100%
|
|
2210
|
+
);
|
|
2097
2211
|
}
|
|
2098
2212
|
html:not(#__):not(#___) .cadmin .col-md-10 {
|
|
2099
|
-
flex: 0 0
|
|
2100
|
-
max-width:
|
|
2213
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
2214
|
+
max-width: calc(
|
|
2215
|
+
10 / 12 * 100%
|
|
2216
|
+
);
|
|
2101
2217
|
}
|
|
2102
2218
|
html:not(#__):not(#___) .cadmin .col-md-11 {
|
|
2103
|
-
flex: 0 0
|
|
2104
|
-
max-width:
|
|
2219
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
2220
|
+
max-width: calc(
|
|
2221
|
+
11 / 12 * 100%
|
|
2222
|
+
);
|
|
2105
2223
|
}
|
|
2106
2224
|
html:not(#__):not(#___) .cadmin .col-md-12 {
|
|
2107
|
-
flex: 0 0 100
|
|
2108
|
-
max-width:
|
|
2225
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
2226
|
+
max-width: calc(
|
|
2227
|
+
12 / 12 * 100%
|
|
2228
|
+
);
|
|
2109
2229
|
}
|
|
2110
2230
|
html:not(#__):not(#___) .cadmin .order-md-first {
|
|
2111
2231
|
order: -1;
|
|
@@ -2153,40 +2273,64 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
2153
2273
|
order: 12;
|
|
2154
2274
|
}
|
|
2155
2275
|
html:not(#__):not(#___) .cadmin .offset-md-0 {
|
|
2156
|
-
margin-left:
|
|
2276
|
+
margin-left: calc(
|
|
2277
|
+
0 / 12 * 100%
|
|
2278
|
+
);
|
|
2157
2279
|
}
|
|
2158
2280
|
html:not(#__):not(#___) .cadmin .offset-md-1 {
|
|
2159
|
-
margin-left:
|
|
2281
|
+
margin-left: calc(
|
|
2282
|
+
1 / 12 * 100%
|
|
2283
|
+
);
|
|
2160
2284
|
}
|
|
2161
2285
|
html:not(#__):not(#___) .cadmin .offset-md-2 {
|
|
2162
|
-
margin-left:
|
|
2286
|
+
margin-left: calc(
|
|
2287
|
+
2 / 12 * 100%
|
|
2288
|
+
);
|
|
2163
2289
|
}
|
|
2164
2290
|
html:not(#__):not(#___) .cadmin .offset-md-3 {
|
|
2165
|
-
margin-left:
|
|
2291
|
+
margin-left: calc(
|
|
2292
|
+
3 / 12 * 100%
|
|
2293
|
+
);
|
|
2166
2294
|
}
|
|
2167
2295
|
html:not(#__):not(#___) .cadmin .offset-md-4 {
|
|
2168
|
-
margin-left:
|
|
2296
|
+
margin-left: calc(
|
|
2297
|
+
4 / 12 * 100%
|
|
2298
|
+
);
|
|
2169
2299
|
}
|
|
2170
2300
|
html:not(#__):not(#___) .cadmin .offset-md-5 {
|
|
2171
|
-
margin-left:
|
|
2301
|
+
margin-left: calc(
|
|
2302
|
+
5 / 12 * 100%
|
|
2303
|
+
);
|
|
2172
2304
|
}
|
|
2173
2305
|
html:not(#__):not(#___) .cadmin .offset-md-6 {
|
|
2174
|
-
margin-left:
|
|
2306
|
+
margin-left: calc(
|
|
2307
|
+
6 / 12 * 100%
|
|
2308
|
+
);
|
|
2175
2309
|
}
|
|
2176
2310
|
html:not(#__):not(#___) .cadmin .offset-md-7 {
|
|
2177
|
-
margin-left:
|
|
2311
|
+
margin-left: calc(
|
|
2312
|
+
7 / 12 * 100%
|
|
2313
|
+
);
|
|
2178
2314
|
}
|
|
2179
2315
|
html:not(#__):not(#___) .cadmin .offset-md-8 {
|
|
2180
|
-
margin-left:
|
|
2316
|
+
margin-left: calc(
|
|
2317
|
+
8 / 12 * 100%
|
|
2318
|
+
);
|
|
2181
2319
|
}
|
|
2182
2320
|
html:not(#__):not(#___) .cadmin .offset-md-9 {
|
|
2183
|
-
margin-left:
|
|
2321
|
+
margin-left: calc(
|
|
2322
|
+
9 / 12 * 100%
|
|
2323
|
+
);
|
|
2184
2324
|
}
|
|
2185
2325
|
html:not(#__):not(#___) .cadmin .offset-md-10 {
|
|
2186
|
-
margin-left:
|
|
2326
|
+
margin-left: calc(
|
|
2327
|
+
10 / 12 * 100%
|
|
2328
|
+
);
|
|
2187
2329
|
}
|
|
2188
2330
|
html:not(#__):not(#___) .cadmin .offset-md-11 {
|
|
2189
|
-
margin-left:
|
|
2331
|
+
margin-left: calc(
|
|
2332
|
+
11 / 12 * 100%
|
|
2333
|
+
);
|
|
2190
2334
|
}
|
|
2191
2335
|
}
|
|
2192
2336
|
@media (min-width: 992px) {
|
|
@@ -2196,28 +2340,28 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
2196
2340
|
max-width: 100%;
|
|
2197
2341
|
}
|
|
2198
2342
|
html:not(#__):not(#___) .cadmin .row-cols-lg-1 > * {
|
|
2199
|
-
flex: 0 0 100
|
|
2200
|
-
max-width: 100
|
|
2343
|
+
flex: 0 0 calc(100% / 1);
|
|
2344
|
+
max-width: calc(100% / 1);
|
|
2201
2345
|
}
|
|
2202
2346
|
html:not(#__):not(#___) .cadmin .row-cols-lg-2 > * {
|
|
2203
|
-
flex: 0 0
|
|
2204
|
-
max-width:
|
|
2347
|
+
flex: 0 0 calc(100% / 2);
|
|
2348
|
+
max-width: calc(100% / 2);
|
|
2205
2349
|
}
|
|
2206
2350
|
html:not(#__):not(#___) .cadmin .row-cols-lg-3 > * {
|
|
2207
|
-
flex: 0 0
|
|
2208
|
-
max-width:
|
|
2351
|
+
flex: 0 0 calc(100% / 3);
|
|
2352
|
+
max-width: calc(100% / 3);
|
|
2209
2353
|
}
|
|
2210
2354
|
html:not(#__):not(#___) .cadmin .row-cols-lg-4 > * {
|
|
2211
|
-
flex: 0 0
|
|
2212
|
-
max-width:
|
|
2355
|
+
flex: 0 0 calc(100% / 4);
|
|
2356
|
+
max-width: calc(100% / 4);
|
|
2213
2357
|
}
|
|
2214
2358
|
html:not(#__):not(#___) .cadmin .row-cols-lg-5 > * {
|
|
2215
|
-
flex: 0 0
|
|
2216
|
-
max-width:
|
|
2359
|
+
flex: 0 0 calc(100% / 5);
|
|
2360
|
+
max-width: calc(100% / 5);
|
|
2217
2361
|
}
|
|
2218
2362
|
html:not(#__):not(#___) .cadmin .row-cols-lg-6 > * {
|
|
2219
|
-
flex: 0 0
|
|
2220
|
-
max-width:
|
|
2363
|
+
flex: 0 0 calc(100% / 6);
|
|
2364
|
+
max-width: calc(100% / 6);
|
|
2221
2365
|
}
|
|
2222
2366
|
html:not(#__):not(#___) .cadmin .col-lg-auto {
|
|
2223
2367
|
flex: 0 0 auto;
|
|
@@ -2225,52 +2369,76 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
2225
2369
|
width: auto;
|
|
2226
2370
|
}
|
|
2227
2371
|
html:not(#__):not(#___) .cadmin .col-lg-1 {
|
|
2228
|
-
flex: 0 0
|
|
2229
|
-
max-width:
|
|
2372
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
2373
|
+
max-width: calc(
|
|
2374
|
+
1 / 12 * 100%
|
|
2375
|
+
);
|
|
2230
2376
|
}
|
|
2231
2377
|
html:not(#__):not(#___) .cadmin .col-lg-2 {
|
|
2232
|
-
flex: 0 0
|
|
2233
|
-
max-width:
|
|
2378
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
2379
|
+
max-width: calc(
|
|
2380
|
+
2 / 12 * 100%
|
|
2381
|
+
);
|
|
2234
2382
|
}
|
|
2235
2383
|
html:not(#__):not(#___) .cadmin .col-lg-3 {
|
|
2236
|
-
flex: 0 0
|
|
2237
|
-
max-width:
|
|
2384
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
2385
|
+
max-width: calc(
|
|
2386
|
+
3 / 12 * 100%
|
|
2387
|
+
);
|
|
2238
2388
|
}
|
|
2239
2389
|
html:not(#__):not(#___) .cadmin .col-lg-4 {
|
|
2240
|
-
flex: 0 0
|
|
2241
|
-
max-width:
|
|
2390
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
2391
|
+
max-width: calc(
|
|
2392
|
+
4 / 12 * 100%
|
|
2393
|
+
);
|
|
2242
2394
|
}
|
|
2243
2395
|
html:not(#__):not(#___) .cadmin .col-lg-5 {
|
|
2244
|
-
flex: 0 0
|
|
2245
|
-
max-width:
|
|
2396
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
2397
|
+
max-width: calc(
|
|
2398
|
+
5 / 12 * 100%
|
|
2399
|
+
);
|
|
2246
2400
|
}
|
|
2247
2401
|
html:not(#__):not(#___) .cadmin .col-lg-6 {
|
|
2248
|
-
flex: 0 0
|
|
2249
|
-
max-width:
|
|
2402
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
2403
|
+
max-width: calc(
|
|
2404
|
+
6 / 12 * 100%
|
|
2405
|
+
);
|
|
2250
2406
|
}
|
|
2251
2407
|
html:not(#__):not(#___) .cadmin .col-lg-7 {
|
|
2252
|
-
flex: 0 0
|
|
2253
|
-
max-width:
|
|
2408
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
2409
|
+
max-width: calc(
|
|
2410
|
+
7 / 12 * 100%
|
|
2411
|
+
);
|
|
2254
2412
|
}
|
|
2255
2413
|
html:not(#__):not(#___) .cadmin .col-lg-8 {
|
|
2256
|
-
flex: 0 0
|
|
2257
|
-
max-width:
|
|
2414
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
2415
|
+
max-width: calc(
|
|
2416
|
+
8 / 12 * 100%
|
|
2417
|
+
);
|
|
2258
2418
|
}
|
|
2259
2419
|
html:not(#__):not(#___) .cadmin .col-lg-9 {
|
|
2260
|
-
flex: 0 0
|
|
2261
|
-
max-width:
|
|
2420
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
2421
|
+
max-width: calc(
|
|
2422
|
+
9 / 12 * 100%
|
|
2423
|
+
);
|
|
2262
2424
|
}
|
|
2263
2425
|
html:not(#__):not(#___) .cadmin .col-lg-10 {
|
|
2264
|
-
flex: 0 0
|
|
2265
|
-
max-width:
|
|
2426
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
2427
|
+
max-width: calc(
|
|
2428
|
+
10 / 12 * 100%
|
|
2429
|
+
);
|
|
2266
2430
|
}
|
|
2267
2431
|
html:not(#__):not(#___) .cadmin .col-lg-11 {
|
|
2268
|
-
flex: 0 0
|
|
2269
|
-
max-width:
|
|
2432
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
2433
|
+
max-width: calc(
|
|
2434
|
+
11 / 12 * 100%
|
|
2435
|
+
);
|
|
2270
2436
|
}
|
|
2271
2437
|
html:not(#__):not(#___) .cadmin .col-lg-12 {
|
|
2272
|
-
flex: 0 0 100
|
|
2273
|
-
max-width:
|
|
2438
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
2439
|
+
max-width: calc(
|
|
2440
|
+
12 / 12 * 100%
|
|
2441
|
+
);
|
|
2274
2442
|
}
|
|
2275
2443
|
html:not(#__):not(#___) .cadmin .order-lg-first {
|
|
2276
2444
|
order: -1;
|
|
@@ -2318,40 +2486,64 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
2318
2486
|
order: 12;
|
|
2319
2487
|
}
|
|
2320
2488
|
html:not(#__):not(#___) .cadmin .offset-lg-0 {
|
|
2321
|
-
margin-left:
|
|
2489
|
+
margin-left: calc(
|
|
2490
|
+
0 / 12 * 100%
|
|
2491
|
+
);
|
|
2322
2492
|
}
|
|
2323
2493
|
html:not(#__):not(#___) .cadmin .offset-lg-1 {
|
|
2324
|
-
margin-left:
|
|
2494
|
+
margin-left: calc(
|
|
2495
|
+
1 / 12 * 100%
|
|
2496
|
+
);
|
|
2325
2497
|
}
|
|
2326
2498
|
html:not(#__):not(#___) .cadmin .offset-lg-2 {
|
|
2327
|
-
margin-left:
|
|
2499
|
+
margin-left: calc(
|
|
2500
|
+
2 / 12 * 100%
|
|
2501
|
+
);
|
|
2328
2502
|
}
|
|
2329
2503
|
html:not(#__):not(#___) .cadmin .offset-lg-3 {
|
|
2330
|
-
margin-left:
|
|
2504
|
+
margin-left: calc(
|
|
2505
|
+
3 / 12 * 100%
|
|
2506
|
+
);
|
|
2331
2507
|
}
|
|
2332
2508
|
html:not(#__):not(#___) .cadmin .offset-lg-4 {
|
|
2333
|
-
margin-left:
|
|
2509
|
+
margin-left: calc(
|
|
2510
|
+
4 / 12 * 100%
|
|
2511
|
+
);
|
|
2334
2512
|
}
|
|
2335
2513
|
html:not(#__):not(#___) .cadmin .offset-lg-5 {
|
|
2336
|
-
margin-left:
|
|
2514
|
+
margin-left: calc(
|
|
2515
|
+
5 / 12 * 100%
|
|
2516
|
+
);
|
|
2337
2517
|
}
|
|
2338
2518
|
html:not(#__):not(#___) .cadmin .offset-lg-6 {
|
|
2339
|
-
margin-left:
|
|
2519
|
+
margin-left: calc(
|
|
2520
|
+
6 / 12 * 100%
|
|
2521
|
+
);
|
|
2340
2522
|
}
|
|
2341
2523
|
html:not(#__):not(#___) .cadmin .offset-lg-7 {
|
|
2342
|
-
margin-left:
|
|
2524
|
+
margin-left: calc(
|
|
2525
|
+
7 / 12 * 100%
|
|
2526
|
+
);
|
|
2343
2527
|
}
|
|
2344
2528
|
html:not(#__):not(#___) .cadmin .offset-lg-8 {
|
|
2345
|
-
margin-left:
|
|
2529
|
+
margin-left: calc(
|
|
2530
|
+
8 / 12 * 100%
|
|
2531
|
+
);
|
|
2346
2532
|
}
|
|
2347
2533
|
html:not(#__):not(#___) .cadmin .offset-lg-9 {
|
|
2348
|
-
margin-left:
|
|
2534
|
+
margin-left: calc(
|
|
2535
|
+
9 / 12 * 100%
|
|
2536
|
+
);
|
|
2349
2537
|
}
|
|
2350
2538
|
html:not(#__):not(#___) .cadmin .offset-lg-10 {
|
|
2351
|
-
margin-left:
|
|
2539
|
+
margin-left: calc(
|
|
2540
|
+
10 / 12 * 100%
|
|
2541
|
+
);
|
|
2352
2542
|
}
|
|
2353
2543
|
html:not(#__):not(#___) .cadmin .offset-lg-11 {
|
|
2354
|
-
margin-left:
|
|
2544
|
+
margin-left: calc(
|
|
2545
|
+
11 / 12 * 100%
|
|
2546
|
+
);
|
|
2355
2547
|
}
|
|
2356
2548
|
}
|
|
2357
2549
|
@media (min-width: 1280px) {
|
|
@@ -2361,28 +2553,28 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
2361
2553
|
max-width: 100%;
|
|
2362
2554
|
}
|
|
2363
2555
|
html:not(#__):not(#___) .cadmin .row-cols-xl-1 > * {
|
|
2364
|
-
flex: 0 0 100
|
|
2365
|
-
max-width: 100
|
|
2556
|
+
flex: 0 0 calc(100% / 1);
|
|
2557
|
+
max-width: calc(100% / 1);
|
|
2366
2558
|
}
|
|
2367
2559
|
html:not(#__):not(#___) .cadmin .row-cols-xl-2 > * {
|
|
2368
|
-
flex: 0 0
|
|
2369
|
-
max-width:
|
|
2560
|
+
flex: 0 0 calc(100% / 2);
|
|
2561
|
+
max-width: calc(100% / 2);
|
|
2370
2562
|
}
|
|
2371
2563
|
html:not(#__):not(#___) .cadmin .row-cols-xl-3 > * {
|
|
2372
|
-
flex: 0 0
|
|
2373
|
-
max-width:
|
|
2564
|
+
flex: 0 0 calc(100% / 3);
|
|
2565
|
+
max-width: calc(100% / 3);
|
|
2374
2566
|
}
|
|
2375
2567
|
html:not(#__):not(#___) .cadmin .row-cols-xl-4 > * {
|
|
2376
|
-
flex: 0 0
|
|
2377
|
-
max-width:
|
|
2568
|
+
flex: 0 0 calc(100% / 4);
|
|
2569
|
+
max-width: calc(100% / 4);
|
|
2378
2570
|
}
|
|
2379
2571
|
html:not(#__):not(#___) .cadmin .row-cols-xl-5 > * {
|
|
2380
|
-
flex: 0 0
|
|
2381
|
-
max-width:
|
|
2572
|
+
flex: 0 0 calc(100% / 5);
|
|
2573
|
+
max-width: calc(100% / 5);
|
|
2382
2574
|
}
|
|
2383
2575
|
html:not(#__):not(#___) .cadmin .row-cols-xl-6 > * {
|
|
2384
|
-
flex: 0 0
|
|
2385
|
-
max-width:
|
|
2576
|
+
flex: 0 0 calc(100% / 6);
|
|
2577
|
+
max-width: calc(100% / 6);
|
|
2386
2578
|
}
|
|
2387
2579
|
html:not(#__):not(#___) .cadmin .col-xl-auto {
|
|
2388
2580
|
flex: 0 0 auto;
|
|
@@ -2390,52 +2582,76 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
2390
2582
|
width: auto;
|
|
2391
2583
|
}
|
|
2392
2584
|
html:not(#__):not(#___) .cadmin .col-xl-1 {
|
|
2393
|
-
flex: 0 0
|
|
2394
|
-
max-width:
|
|
2585
|
+
flex: 0 0 calc(1 / 12 * 100%);
|
|
2586
|
+
max-width: calc(
|
|
2587
|
+
1 / 12 * 100%
|
|
2588
|
+
);
|
|
2395
2589
|
}
|
|
2396
2590
|
html:not(#__):not(#___) .cadmin .col-xl-2 {
|
|
2397
|
-
flex: 0 0
|
|
2398
|
-
max-width:
|
|
2591
|
+
flex: 0 0 calc(2 / 12 * 100%);
|
|
2592
|
+
max-width: calc(
|
|
2593
|
+
2 / 12 * 100%
|
|
2594
|
+
);
|
|
2399
2595
|
}
|
|
2400
2596
|
html:not(#__):not(#___) .cadmin .col-xl-3 {
|
|
2401
|
-
flex: 0 0
|
|
2402
|
-
max-width:
|
|
2597
|
+
flex: 0 0 calc(3 / 12 * 100%);
|
|
2598
|
+
max-width: calc(
|
|
2599
|
+
3 / 12 * 100%
|
|
2600
|
+
);
|
|
2403
2601
|
}
|
|
2404
2602
|
html:not(#__):not(#___) .cadmin .col-xl-4 {
|
|
2405
|
-
flex: 0 0
|
|
2406
|
-
max-width:
|
|
2603
|
+
flex: 0 0 calc(4 / 12 * 100%);
|
|
2604
|
+
max-width: calc(
|
|
2605
|
+
4 / 12 * 100%
|
|
2606
|
+
);
|
|
2407
2607
|
}
|
|
2408
2608
|
html:not(#__):not(#___) .cadmin .col-xl-5 {
|
|
2409
|
-
flex: 0 0
|
|
2410
|
-
max-width:
|
|
2609
|
+
flex: 0 0 calc(5 / 12 * 100%);
|
|
2610
|
+
max-width: calc(
|
|
2611
|
+
5 / 12 * 100%
|
|
2612
|
+
);
|
|
2411
2613
|
}
|
|
2412
2614
|
html:not(#__):not(#___) .cadmin .col-xl-6 {
|
|
2413
|
-
flex: 0 0
|
|
2414
|
-
max-width:
|
|
2615
|
+
flex: 0 0 calc(6 / 12 * 100%);
|
|
2616
|
+
max-width: calc(
|
|
2617
|
+
6 / 12 * 100%
|
|
2618
|
+
);
|
|
2415
2619
|
}
|
|
2416
2620
|
html:not(#__):not(#___) .cadmin .col-xl-7 {
|
|
2417
|
-
flex: 0 0
|
|
2418
|
-
max-width:
|
|
2621
|
+
flex: 0 0 calc(7 / 12 * 100%);
|
|
2622
|
+
max-width: calc(
|
|
2623
|
+
7 / 12 * 100%
|
|
2624
|
+
);
|
|
2419
2625
|
}
|
|
2420
2626
|
html:not(#__):not(#___) .cadmin .col-xl-8 {
|
|
2421
|
-
flex: 0 0
|
|
2422
|
-
max-width:
|
|
2627
|
+
flex: 0 0 calc(8 / 12 * 100%);
|
|
2628
|
+
max-width: calc(
|
|
2629
|
+
8 / 12 * 100%
|
|
2630
|
+
);
|
|
2423
2631
|
}
|
|
2424
2632
|
html:not(#__):not(#___) .cadmin .col-xl-9 {
|
|
2425
|
-
flex: 0 0
|
|
2426
|
-
max-width:
|
|
2633
|
+
flex: 0 0 calc(9 / 12 * 100%);
|
|
2634
|
+
max-width: calc(
|
|
2635
|
+
9 / 12 * 100%
|
|
2636
|
+
);
|
|
2427
2637
|
}
|
|
2428
2638
|
html:not(#__):not(#___) .cadmin .col-xl-10 {
|
|
2429
|
-
flex: 0 0
|
|
2430
|
-
max-width:
|
|
2639
|
+
flex: 0 0 calc(10 / 12 * 100%);
|
|
2640
|
+
max-width: calc(
|
|
2641
|
+
10 / 12 * 100%
|
|
2642
|
+
);
|
|
2431
2643
|
}
|
|
2432
2644
|
html:not(#__):not(#___) .cadmin .col-xl-11 {
|
|
2433
|
-
flex: 0 0
|
|
2434
|
-
max-width:
|
|
2645
|
+
flex: 0 0 calc(11 / 12 * 100%);
|
|
2646
|
+
max-width: calc(
|
|
2647
|
+
11 / 12 * 100%
|
|
2648
|
+
);
|
|
2435
2649
|
}
|
|
2436
2650
|
html:not(#__):not(#___) .cadmin .col-xl-12 {
|
|
2437
|
-
flex: 0 0 100
|
|
2438
|
-
max-width:
|
|
2651
|
+
flex: 0 0 calc(12 / 12 * 100%);
|
|
2652
|
+
max-width: calc(
|
|
2653
|
+
12 / 12 * 100%
|
|
2654
|
+
);
|
|
2439
2655
|
}
|
|
2440
2656
|
html:not(#__):not(#___) .cadmin .order-xl-first {
|
|
2441
2657
|
order: -1;
|
|
@@ -2483,40 +2699,64 @@ html:not(#__):not(#___) .cadmin .offset-11 {
|
|
|
2483
2699
|
order: 12;
|
|
2484
2700
|
}
|
|
2485
2701
|
html:not(#__):not(#___) .cadmin .offset-xl-0 {
|
|
2486
|
-
margin-left:
|
|
2702
|
+
margin-left: calc(
|
|
2703
|
+
0 / 12 * 100%
|
|
2704
|
+
);
|
|
2487
2705
|
}
|
|
2488
2706
|
html:not(#__):not(#___) .cadmin .offset-xl-1 {
|
|
2489
|
-
margin-left:
|
|
2707
|
+
margin-left: calc(
|
|
2708
|
+
1 / 12 * 100%
|
|
2709
|
+
);
|
|
2490
2710
|
}
|
|
2491
2711
|
html:not(#__):not(#___) .cadmin .offset-xl-2 {
|
|
2492
|
-
margin-left:
|
|
2712
|
+
margin-left: calc(
|
|
2713
|
+
2 / 12 * 100%
|
|
2714
|
+
);
|
|
2493
2715
|
}
|
|
2494
2716
|
html:not(#__):not(#___) .cadmin .offset-xl-3 {
|
|
2495
|
-
margin-left:
|
|
2717
|
+
margin-left: calc(
|
|
2718
|
+
3 / 12 * 100%
|
|
2719
|
+
);
|
|
2496
2720
|
}
|
|
2497
2721
|
html:not(#__):not(#___) .cadmin .offset-xl-4 {
|
|
2498
|
-
margin-left:
|
|
2722
|
+
margin-left: calc(
|
|
2723
|
+
4 / 12 * 100%
|
|
2724
|
+
);
|
|
2499
2725
|
}
|
|
2500
2726
|
html:not(#__):not(#___) .cadmin .offset-xl-5 {
|
|
2501
|
-
margin-left:
|
|
2727
|
+
margin-left: calc(
|
|
2728
|
+
5 / 12 * 100%
|
|
2729
|
+
);
|
|
2502
2730
|
}
|
|
2503
2731
|
html:not(#__):not(#___) .cadmin .offset-xl-6 {
|
|
2504
|
-
margin-left:
|
|
2732
|
+
margin-left: calc(
|
|
2733
|
+
6 / 12 * 100%
|
|
2734
|
+
);
|
|
2505
2735
|
}
|
|
2506
2736
|
html:not(#__):not(#___) .cadmin .offset-xl-7 {
|
|
2507
|
-
margin-left:
|
|
2737
|
+
margin-left: calc(
|
|
2738
|
+
7 / 12 * 100%
|
|
2739
|
+
);
|
|
2508
2740
|
}
|
|
2509
2741
|
html:not(#__):not(#___) .cadmin .offset-xl-8 {
|
|
2510
|
-
margin-left:
|
|
2742
|
+
margin-left: calc(
|
|
2743
|
+
8 / 12 * 100%
|
|
2744
|
+
);
|
|
2511
2745
|
}
|
|
2512
2746
|
html:not(#__):not(#___) .cadmin .offset-xl-9 {
|
|
2513
|
-
margin-left:
|
|
2747
|
+
margin-left: calc(
|
|
2748
|
+
9 / 12 * 100%
|
|
2749
|
+
);
|
|
2514
2750
|
}
|
|
2515
2751
|
html:not(#__):not(#___) .cadmin .offset-xl-10 {
|
|
2516
|
-
margin-left:
|
|
2752
|
+
margin-left: calc(
|
|
2753
|
+
10 / 12 * 100%
|
|
2754
|
+
);
|
|
2517
2755
|
}
|
|
2518
2756
|
html:not(#__):not(#___) .cadmin .offset-xl-11 {
|
|
2519
|
-
margin-left:
|
|
2757
|
+
margin-left: calc(
|
|
2758
|
+
11 / 12 * 100%
|
|
2759
|
+
);
|
|
2520
2760
|
}
|
|
2521
2761
|
}
|
|
2522
2762
|
html:not(#__):not(#___) .cadmin .container-fluid-max-sm {
|
|
@@ -2749,6 +2989,9 @@ html:not(#__):not(#___) .cadmin .alert-fluid.alert-dismissible .container-fluid
|
|
|
2749
2989
|
padding-right: calc( 40px + 12px );
|
|
2750
2990
|
position: relative;
|
|
2751
2991
|
}
|
|
2992
|
+
html:not(#__):not(#___) .cadmin .alert-fluid .close {
|
|
2993
|
+
right: calc(12px + 4px);
|
|
2994
|
+
}
|
|
2752
2995
|
html:not(#__):not(#___) .cadmin .alert-fluid .container,
|
|
2753
2996
|
html:not(#__):not(#___) .cadmin .alert-fluid .container-fluid {
|
|
2754
2997
|
padding-bottom: 15.5px;
|
|
@@ -2756,9 +2999,6 @@ html:not(#__):not(#___) .cadmin .alert-fluid .container-fluid {
|
|
|
2756
2999
|
padding-right: 16px;
|
|
2757
3000
|
padding-top: 15.5px;
|
|
2758
3001
|
}
|
|
2759
|
-
html:not(#__):not(#___) .cadmin .alert-fluid .close {
|
|
2760
|
-
right: calc(12px + 4px);
|
|
2761
|
-
}
|
|
2762
3002
|
html:not(#__):not(#___) .cadmin .alert-container, html:not(#__):not(#___) .cadmin.alert-container {
|
|
2763
3003
|
height: 0;
|
|
2764
3004
|
position: relative;
|
|
@@ -3542,7 +3782,7 @@ html:not(#__):not(#___) .cadmin .breadcrumb-item + .breadcrumb-item::before {
|
|
|
3542
3782
|
color: #6b6c7e;
|
|
3543
3783
|
display: block;
|
|
3544
3784
|
float: left;
|
|
3545
|
-
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='M375.2%20239.
|
|
3785
|
+
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='M375.2%20239.2%20173.3%2037c-23.6-23-59.9%2011.9-36%2035.1l183%20183.9-182.9%20183.8c-24%2023.5%2012.5%2058.2%2036.1%2035.2l201.7-202.1c10.2-10.1%209.3-24.4%200-33.7z'%20fill='%236b6c7e'/%3E%3C/svg%3E");
|
|
3546
3786
|
background-repeat: no-repeat;
|
|
3547
3787
|
background-size: 100%;
|
|
3548
3788
|
content: "";
|
|
@@ -3737,47 +3977,51 @@ html:not(#__):not(#___) .cadmin .label {
|
|
|
3737
3977
|
margin-right: 4px;
|
|
3738
3978
|
margin-top: 2px;
|
|
3739
3979
|
max-width: 100%;
|
|
3980
|
+
outline: 0;
|
|
3740
3981
|
padding-bottom: 2px;
|
|
3741
3982
|
padding-left: 4px;
|
|
3742
3983
|
padding-right: 4px;
|
|
3743
3984
|
padding-top: 2px;
|
|
3744
3985
|
text-transform: uppercase;
|
|
3986
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
3745
3987
|
white-space: inherit;
|
|
3988
|
+
overflow-wrap: break-word;
|
|
3746
3989
|
word-wrap: break-word;
|
|
3747
|
-
outline: 0;
|
|
3748
|
-
transition: box-shadow 0.15s ease-in-out;
|
|
3749
3990
|
}
|
|
3750
3991
|
@media (prefers-reduced-motion: reduce) {
|
|
3751
3992
|
html:not(#__):not(#___) .cadmin .label {
|
|
3752
3993
|
transition: none;
|
|
3753
3994
|
}
|
|
3754
3995
|
}
|
|
3755
|
-
ahtml:not(#__):not(#___) .cadmin .label:focus,
|
|
3756
|
-
buttonhtml:not(#__):not(#___) .cadmin .label:focus {
|
|
3757
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
3758
|
-
}
|
|
3759
|
-
|
|
3760
|
-
html:not(#__):not(#___) .cadmin .label[tabindex]:focus {
|
|
3761
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
3762
|
-
}
|
|
3763
3996
|
html:not(#__):not(#___) .cadmin .label:disabled, html:not(#__):not(#___) .cadmin .label.disabled {
|
|
3764
3997
|
box-shadow: none;
|
|
3765
3998
|
}
|
|
3766
|
-
html:not(#__):not(#___) .cadmin .label
|
|
3999
|
+
html:not(#__):not(#___) .cadmin .label[href], html:not(#__):not(#___) .cadmin .label[type], html:not(#__):not(#___) .cadmin .label[tabindex] {
|
|
4000
|
+
cursor: pointer;
|
|
4001
|
+
text-decoration: none;
|
|
4002
|
+
}
|
|
4003
|
+
html:not(#__):not(#___) .cadmin .label[href]:hover, html:not(#__):not(#___) .cadmin .label[type]:hover, html:not(#__):not(#___) .cadmin .label[tabindex]:hover {
|
|
4004
|
+
text-decoration: underline;
|
|
4005
|
+
}
|
|
4006
|
+
html:not(#__):not(#___) .cadmin .label[href]:focus, html:not(#__):not(#___) .cadmin .label[type]:focus, html:not(#__):not(#___) .cadmin .label[tabindex]:focus {
|
|
4007
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
4008
|
+
text-decoration: underline;
|
|
4009
|
+
}
|
|
4010
|
+
html:not(#__):not(#___) .cadmin .label a,
|
|
4011
|
+
html:not(#__):not(#___) .cadmin .label .btn-unstyled {
|
|
3767
4012
|
color: inherit;
|
|
3768
4013
|
display: inline-block;
|
|
3769
4014
|
text-decoration: none;
|
|
3770
4015
|
}
|
|
3771
|
-
html:not(#__):not(#___) .cadmin .label a:hover,
|
|
4016
|
+
html:not(#__):not(#___) .cadmin .label a:hover,
|
|
4017
|
+
html:not(#__):not(#___) .cadmin .label .btn-unstyled:hover {
|
|
3772
4018
|
color: inherit;
|
|
3773
4019
|
text-decoration: underline;
|
|
3774
4020
|
}
|
|
3775
|
-
html:not(#__):not(#___) .cadmin .label
|
|
3776
|
-
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
margin-top: -2px;
|
|
3780
|
-
max-width: none;
|
|
4021
|
+
html:not(#__):not(#___) .cadmin .label a:focus,
|
|
4022
|
+
html:not(#__):not(#___) .cadmin .label .btn-unstyled:focus {
|
|
4023
|
+
color: inherit;
|
|
4024
|
+
text-decoration: underline;
|
|
3781
4025
|
}
|
|
3782
4026
|
html:not(#__):not(#___) .cadmin .label .sticker {
|
|
3783
4027
|
border-radius: 100px;
|
|
@@ -3788,17 +4032,12 @@ html:not(#__):not(#___) .cadmin .label .sticker {
|
|
|
3788
4032
|
html:not(#__):not(#___) .cadmin .label .sticker-overlay {
|
|
3789
4033
|
border-radius: 100px;
|
|
3790
4034
|
}
|
|
3791
|
-
html:not(#__):not(#___) .cadmin
|
|
3792
|
-
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
html:not(#__):not(#___) .cadmin button.label:focus {
|
|
3798
|
-
text-decoration: underline;
|
|
3799
|
-
}
|
|
3800
|
-
html:not(#__):not(#___) .cadmin button.label {
|
|
3801
|
-
cursor: pointer;
|
|
4035
|
+
html:not(#__):not(#___) .cadmin .label > .c-inner {
|
|
4036
|
+
margin-bottom: -2px;
|
|
4037
|
+
margin-left: -4px;
|
|
4038
|
+
margin-right: -4px;
|
|
4039
|
+
margin-top: -2px;
|
|
4040
|
+
max-width: none;
|
|
3802
4041
|
}
|
|
3803
4042
|
html:not(#__):not(#___) .cadmin .label-item {
|
|
3804
4043
|
display: flex;
|
|
@@ -3847,6 +4086,7 @@ html:not(#__):not(#___) .cadmin .label-item-expand {
|
|
|
3847
4086
|
flex-grow: 1;
|
|
3848
4087
|
flex-shrink: 1;
|
|
3849
4088
|
min-width: 16px;
|
|
4089
|
+
overflow-wrap: break-word;
|
|
3850
4090
|
word-wrap: break-word;
|
|
3851
4091
|
}
|
|
3852
4092
|
html:not(#__):not(#___) .cadmin .label-item-expand a {
|
|
@@ -3867,9 +4107,8 @@ html:not(#__):not(#___) .cadmin .label-lg {
|
|
|
3867
4107
|
padding-right: 8px;
|
|
3868
4108
|
padding-top: 5px;
|
|
3869
4109
|
text-transform: none;
|
|
3870
|
-
border-width: 1px;
|
|
3871
4110
|
}
|
|
3872
|
-
html:not(#__):not(#___) .cadmin .label-lg .
|
|
4111
|
+
html:not(#__):not(#___) .cadmin .label-lg .lexicon-icon {
|
|
3873
4112
|
height: 1em;
|
|
3874
4113
|
width: 1em;
|
|
3875
4114
|
}
|
|
@@ -3897,26 +4136,15 @@ html:not(#__):not(#___) .cadmin .label-primary {
|
|
|
3897
4136
|
border-color: #80acff;
|
|
3898
4137
|
color: #0b5fff;
|
|
3899
4138
|
}
|
|
3900
|
-
|
|
3901
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-primary:hover {
|
|
3902
|
-
border-color: #80acff;
|
|
3903
|
-
color: #004ad7;
|
|
3904
|
-
}
|
|
3905
|
-
ahtml:not(#__):not(#___) .cadmin .label-primary:focus,
|
|
3906
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-primary:focus {
|
|
3907
|
-
color: #004ad7;
|
|
3908
|
-
}
|
|
3909
|
-
|
|
3910
|
-
html:not(#__):not(#___) .cadmin .label-primary[tabindex]:hover {
|
|
4139
|
+
html:not(#__):not(#___) .cadmin [href].label-primary:hover, html:not(#__):not(#___) .cadmin [type].label-primary:hover, html:not(#__):not(#___) .cadmin [tabindex].label-primary:hover {
|
|
3911
4140
|
border-color: #80acff;
|
|
3912
4141
|
color: #004ad7;
|
|
3913
4142
|
}
|
|
3914
|
-
html:not(#__):not(#___) .cadmin .label-primary[tabindex]:focus {
|
|
4143
|
+
html:not(#__):not(#___) .cadmin [href].label-primary:focus, html:not(#__):not(#___) .cadmin [type].label-primary:focus, html:not(#__):not(#___) .cadmin [tabindex].label-primary:focus {
|
|
3915
4144
|
color: #004ad7;
|
|
3916
4145
|
}
|
|
3917
|
-
html:not(#__):not(#___) .cadmin .label-primary a:hover,
|
|
3918
|
-
html:not(#__):not(#___) .cadmin .label-primary .btn-unstyled:hover
|
|
3919
|
-
html:not(#__):not(#___) .cadmin .label-primary .btn-unstyled:focus {
|
|
4146
|
+
html:not(#__):not(#___) .cadmin .label-primary a:hover,
|
|
4147
|
+
html:not(#__):not(#___) .cadmin .label-primary .btn-unstyled:hover {
|
|
3920
4148
|
color: #004ad7;
|
|
3921
4149
|
}
|
|
3922
4150
|
html:not(#__):not(#___) .cadmin .label-primary .close:hover {
|
|
@@ -3930,26 +4158,15 @@ html:not(#__):not(#___) .cadmin .label-secondary {
|
|
|
3930
4158
|
border-color: #cdced9;
|
|
3931
4159
|
color: #6b6c7e;
|
|
3932
4160
|
}
|
|
3933
|
-
|
|
3934
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-secondary:hover {
|
|
4161
|
+
html:not(#__):not(#___) .cadmin [href].label-secondary:hover, html:not(#__):not(#___) .cadmin [type].label-secondary:hover, html:not(#__):not(#___) .cadmin [tabindex].label-secondary:hover {
|
|
3935
4162
|
border-color: #cdced9;
|
|
3936
4163
|
color: #272833;
|
|
3937
4164
|
}
|
|
3938
|
-
|
|
3939
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-secondary:focus {
|
|
4165
|
+
html:not(#__):not(#___) .cadmin [href].label-secondary:focus, html:not(#__):not(#___) .cadmin [type].label-secondary:focus, html:not(#__):not(#___) .cadmin [tabindex].label-secondary:focus {
|
|
3940
4166
|
color: #272833;
|
|
3941
4167
|
}
|
|
3942
|
-
|
|
3943
|
-
html:not(#__):not(#___) .cadmin .label-secondary
|
|
3944
|
-
border-color: #cdced9;
|
|
3945
|
-
color: #272833;
|
|
3946
|
-
}
|
|
3947
|
-
html:not(#__):not(#___) .cadmin .label-secondary[tabindex]:focus {
|
|
3948
|
-
color: #272833;
|
|
3949
|
-
}
|
|
3950
|
-
html:not(#__):not(#___) .cadmin .label-secondary a:hover, html:not(#__):not(#___) .cadmin .label-secondary a:focus,
|
|
3951
|
-
html:not(#__):not(#___) .cadmin .label-secondary .btn-unstyled:hover,
|
|
3952
|
-
html:not(#__):not(#___) .cadmin .label-secondary .btn-unstyled:focus {
|
|
4168
|
+
html:not(#__):not(#___) .cadmin .label-secondary a:hover,
|
|
4169
|
+
html:not(#__):not(#___) .cadmin .label-secondary .btn-unstyled:hover {
|
|
3953
4170
|
color: #272833;
|
|
3954
4171
|
}
|
|
3955
4172
|
html:not(#__):not(#___) .cadmin .label-secondary .close:hover {
|
|
@@ -3963,26 +4180,15 @@ html:not(#__):not(#___) .cadmin .label-success {
|
|
|
3963
4180
|
border-color: #5aca75;
|
|
3964
4181
|
color: #287d3c;
|
|
3965
4182
|
}
|
|
3966
|
-
|
|
3967
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-success:hover {
|
|
4183
|
+
html:not(#__):not(#___) .cadmin [href].label-success:hover, html:not(#__):not(#___) .cadmin [type].label-success:hover, html:not(#__):not(#___) .cadmin [tabindex].label-success:hover {
|
|
3968
4184
|
border-color: #5aca75;
|
|
3969
4185
|
color: #1c5629;
|
|
3970
4186
|
}
|
|
3971
|
-
|
|
3972
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-success:focus {
|
|
3973
|
-
color: #1c5629;
|
|
3974
|
-
}
|
|
3975
|
-
|
|
3976
|
-
html:not(#__):not(#___) .cadmin .label-success[tabindex]:hover {
|
|
3977
|
-
border-color: #5aca75;
|
|
4187
|
+
html:not(#__):not(#___) .cadmin [href].label-success:focus, html:not(#__):not(#___) .cadmin [type].label-success:focus, html:not(#__):not(#___) .cadmin [tabindex].label-success:focus {
|
|
3978
4188
|
color: #1c5629;
|
|
3979
4189
|
}
|
|
3980
|
-
html:not(#__):not(#___) .cadmin .label-success
|
|
3981
|
-
|
|
3982
|
-
}
|
|
3983
|
-
html:not(#__):not(#___) .cadmin .label-success a:hover, html:not(#__):not(#___) .cadmin .label-success a:focus,
|
|
3984
|
-
html:not(#__):not(#___) .cadmin .label-success .btn-unstyled:hover,
|
|
3985
|
-
html:not(#__):not(#___) .cadmin .label-success .btn-unstyled:focus {
|
|
4190
|
+
html:not(#__):not(#___) .cadmin .label-success a:hover,
|
|
4191
|
+
html:not(#__):not(#___) .cadmin .label-success .btn-unstyled:hover {
|
|
3986
4192
|
color: #1c5629;
|
|
3987
4193
|
}
|
|
3988
4194
|
html:not(#__):not(#___) .cadmin .label-success .close:hover {
|
|
@@ -3996,26 +4202,15 @@ html:not(#__):not(#___) .cadmin .label-info {
|
|
|
3996
4202
|
border-color: #89a7e0;
|
|
3997
4203
|
color: #2e5aac;
|
|
3998
4204
|
}
|
|
3999
|
-
|
|
4000
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-info:hover {
|
|
4001
|
-
border-color: #89a7e0;
|
|
4002
|
-
color: #234584;
|
|
4003
|
-
}
|
|
4004
|
-
ahtml:not(#__):not(#___) .cadmin .label-info:focus,
|
|
4005
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-info:focus {
|
|
4006
|
-
color: #234584;
|
|
4007
|
-
}
|
|
4008
|
-
|
|
4009
|
-
html:not(#__):not(#___) .cadmin .label-info[tabindex]:hover {
|
|
4205
|
+
html:not(#__):not(#___) .cadmin [href].label-info:hover, html:not(#__):not(#___) .cadmin [type].label-info:hover, html:not(#__):not(#___) .cadmin [tabindex].label-info:hover {
|
|
4010
4206
|
border-color: #89a7e0;
|
|
4011
4207
|
color: #234584;
|
|
4012
4208
|
}
|
|
4013
|
-
html:not(#__):not(#___) .cadmin .label-info[tabindex]:focus {
|
|
4209
|
+
html:not(#__):not(#___) .cadmin [href].label-info:focus, html:not(#__):not(#___) .cadmin [type].label-info:focus, html:not(#__):not(#___) .cadmin [tabindex].label-info:focus {
|
|
4014
4210
|
color: #234584;
|
|
4015
4211
|
}
|
|
4016
|
-
html:not(#__):not(#___) .cadmin .label-info a:hover,
|
|
4017
|
-
html:not(#__):not(#___) .cadmin .label-info .btn-unstyled:hover
|
|
4018
|
-
html:not(#__):not(#___) .cadmin .label-info .btn-unstyled:focus {
|
|
4212
|
+
html:not(#__):not(#___) .cadmin .label-info a:hover,
|
|
4213
|
+
html:not(#__):not(#___) .cadmin .label-info .btn-unstyled:hover {
|
|
4019
4214
|
color: #234584;
|
|
4020
4215
|
}
|
|
4021
4216
|
html:not(#__):not(#___) .cadmin .label-info .close:hover {
|
|
@@ -4029,26 +4224,15 @@ html:not(#__):not(#___) .cadmin .label-warning {
|
|
|
4029
4224
|
border-color: #ff8f39;
|
|
4030
4225
|
color: #b95000;
|
|
4031
4226
|
}
|
|
4032
|
-
|
|
4033
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-warning:hover {
|
|
4034
|
-
border-color: #ff8f39;
|
|
4035
|
-
color: #863a00;
|
|
4036
|
-
}
|
|
4037
|
-
ahtml:not(#__):not(#___) .cadmin .label-warning:focus,
|
|
4038
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-warning:focus {
|
|
4039
|
-
color: #863a00;
|
|
4040
|
-
}
|
|
4041
|
-
|
|
4042
|
-
html:not(#__):not(#___) .cadmin .label-warning[tabindex]:hover {
|
|
4227
|
+
html:not(#__):not(#___) .cadmin [href].label-warning:hover, html:not(#__):not(#___) .cadmin [type].label-warning:hover, html:not(#__):not(#___) .cadmin [tabindex].label-warning:hover {
|
|
4043
4228
|
border-color: #ff8f39;
|
|
4044
4229
|
color: #863a00;
|
|
4045
4230
|
}
|
|
4046
|
-
html:not(#__):not(#___) .cadmin .label-warning[tabindex]:focus {
|
|
4231
|
+
html:not(#__):not(#___) .cadmin [href].label-warning:focus, html:not(#__):not(#___) .cadmin [type].label-warning:focus, html:not(#__):not(#___) .cadmin [tabindex].label-warning:focus {
|
|
4047
4232
|
color: #863a00;
|
|
4048
4233
|
}
|
|
4049
|
-
html:not(#__):not(#___) .cadmin .label-warning a:hover,
|
|
4050
|
-
html:not(#__):not(#___) .cadmin .label-warning .btn-unstyled:hover
|
|
4051
|
-
html:not(#__):not(#___) .cadmin .label-warning .btn-unstyled:focus {
|
|
4234
|
+
html:not(#__):not(#___) .cadmin .label-warning a:hover,
|
|
4235
|
+
html:not(#__):not(#___) .cadmin .label-warning .btn-unstyled:hover {
|
|
4052
4236
|
color: #863a00;
|
|
4053
4237
|
}
|
|
4054
4238
|
html:not(#__):not(#___) .cadmin .label-warning .close:hover {
|
|
@@ -4062,26 +4246,15 @@ html:not(#__):not(#___) .cadmin .label-danger {
|
|
|
4062
4246
|
border-color: #f48989;
|
|
4063
4247
|
color: #da1414;
|
|
4064
4248
|
}
|
|
4065
|
-
|
|
4066
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-danger:hover {
|
|
4067
|
-
border-color: #f48989;
|
|
4068
|
-
color: #ab1010;
|
|
4069
|
-
}
|
|
4070
|
-
ahtml:not(#__):not(#___) .cadmin .label-danger:focus,
|
|
4071
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-danger:focus {
|
|
4072
|
-
color: #ab1010;
|
|
4073
|
-
}
|
|
4074
|
-
|
|
4075
|
-
html:not(#__):not(#___) .cadmin .label-danger[tabindex]:hover {
|
|
4249
|
+
html:not(#__):not(#___) .cadmin [href].label-danger:hover, html:not(#__):not(#___) .cadmin [type].label-danger:hover, html:not(#__):not(#___) .cadmin [tabindex].label-danger:hover {
|
|
4076
4250
|
border-color: #f48989;
|
|
4077
4251
|
color: #ab1010;
|
|
4078
4252
|
}
|
|
4079
|
-
html:not(#__):not(#___) .cadmin .label-danger[tabindex]:focus {
|
|
4253
|
+
html:not(#__):not(#___) .cadmin [href].label-danger:focus, html:not(#__):not(#___) .cadmin [type].label-danger:focus, html:not(#__):not(#___) .cadmin [tabindex].label-danger:focus {
|
|
4080
4254
|
color: #ab1010;
|
|
4081
4255
|
}
|
|
4082
|
-
html:not(#__):not(#___) .cadmin .label-danger a:hover,
|
|
4083
|
-
html:not(#__):not(#___) .cadmin .label-danger .btn-unstyled:hover
|
|
4084
|
-
html:not(#__):not(#___) .cadmin .label-danger .btn-unstyled:focus {
|
|
4256
|
+
html:not(#__):not(#___) .cadmin .label-danger a:hover,
|
|
4257
|
+
html:not(#__):not(#___) .cadmin .label-danger .btn-unstyled:hover {
|
|
4085
4258
|
color: #ab1010;
|
|
4086
4259
|
}
|
|
4087
4260
|
html:not(#__):not(#___) .cadmin .label-danger .close:hover {
|
|
@@ -4095,26 +4268,15 @@ html:not(#__):not(#___) .cadmin .label-dark {
|
|
|
4095
4268
|
border-color: #272833;
|
|
4096
4269
|
color: #272833;
|
|
4097
4270
|
}
|
|
4098
|
-
|
|
4099
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-dark:hover {
|
|
4100
|
-
border-color: #272833;
|
|
4101
|
-
color: #393a4a;
|
|
4102
|
-
}
|
|
4103
|
-
ahtml:not(#__):not(#___) .cadmin .label-dark:focus,
|
|
4104
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-dark:focus {
|
|
4105
|
-
color: #393a4a;
|
|
4106
|
-
}
|
|
4107
|
-
|
|
4108
|
-
html:not(#__):not(#___) .cadmin .label-dark[tabindex]:hover {
|
|
4271
|
+
html:not(#__):not(#___) .cadmin [href].label-dark:hover, html:not(#__):not(#___) .cadmin [type].label-dark:hover, html:not(#__):not(#___) .cadmin [tabindex].label-dark:hover {
|
|
4109
4272
|
border-color: #272833;
|
|
4110
4273
|
color: #393a4a;
|
|
4111
4274
|
}
|
|
4112
|
-
html:not(#__):not(#___) .cadmin .label-dark[tabindex]:focus {
|
|
4275
|
+
html:not(#__):not(#___) .cadmin [href].label-dark:focus, html:not(#__):not(#___) .cadmin [type].label-dark:focus, html:not(#__):not(#___) .cadmin [tabindex].label-dark:focus {
|
|
4113
4276
|
color: #393a4a;
|
|
4114
4277
|
}
|
|
4115
|
-
html:not(#__):not(#___) .cadmin .label-dark a:hover,
|
|
4116
|
-
html:not(#__):not(#___) .cadmin .label-dark .btn-unstyled:hover
|
|
4117
|
-
html:not(#__):not(#___) .cadmin .label-dark .btn-unstyled:focus {
|
|
4278
|
+
html:not(#__):not(#___) .cadmin .label-dark a:hover,
|
|
4279
|
+
html:not(#__):not(#___) .cadmin .label-dark .btn-unstyled:hover {
|
|
4118
4280
|
color: #393a4a;
|
|
4119
4281
|
}
|
|
4120
4282
|
html:not(#__):not(#___) .cadmin .label-dark .close:hover {
|
|
@@ -4128,26 +4290,15 @@ html:not(#__):not(#___) .cadmin .label-light {
|
|
|
4128
4290
|
border-color: #f1f2f5;
|
|
4129
4291
|
color: #f1f2f5;
|
|
4130
4292
|
}
|
|
4131
|
-
|
|
4132
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-light:hover {
|
|
4293
|
+
html:not(#__):not(#___) .cadmin [href].label-light:hover, html:not(#__):not(#___) .cadmin [type].label-light:hover, html:not(#__):not(#___) .cadmin [tabindex].label-light:hover {
|
|
4133
4294
|
border-color: #f1f2f5;
|
|
4134
4295
|
color: #d3d6e0;
|
|
4135
4296
|
}
|
|
4136
|
-
|
|
4137
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-light:focus {
|
|
4297
|
+
html:not(#__):not(#___) .cadmin [href].label-light:focus, html:not(#__):not(#___) .cadmin [type].label-light:focus, html:not(#__):not(#___) .cadmin [tabindex].label-light:focus {
|
|
4138
4298
|
color: #d3d6e0;
|
|
4139
4299
|
}
|
|
4140
|
-
|
|
4141
|
-
html:not(#__):not(#___) .cadmin .label-light
|
|
4142
|
-
border-color: #f1f2f5;
|
|
4143
|
-
color: #d3d6e0;
|
|
4144
|
-
}
|
|
4145
|
-
html:not(#__):not(#___) .cadmin .label-light[tabindex]:focus {
|
|
4146
|
-
color: #d3d6e0;
|
|
4147
|
-
}
|
|
4148
|
-
html:not(#__):not(#___) .cadmin .label-light a:hover, html:not(#__):not(#___) .cadmin .label-light a:focus,
|
|
4149
|
-
html:not(#__):not(#___) .cadmin .label-light .btn-unstyled:hover,
|
|
4150
|
-
html:not(#__):not(#___) .cadmin .label-light .btn-unstyled:focus {
|
|
4300
|
+
html:not(#__):not(#___) .cadmin .label-light a:hover,
|
|
4301
|
+
html:not(#__):not(#___) .cadmin .label-light .btn-unstyled:hover {
|
|
4151
4302
|
color: #d3d6e0;
|
|
4152
4303
|
}
|
|
4153
4304
|
html:not(#__):not(#___) .cadmin .label-light .close:hover {
|
|
@@ -4161,11 +4312,7 @@ html:not(#__):not(#___) .cadmin .label-inverse-primary {
|
|
|
4161
4312
|
border-color: #0b5fff;
|
|
4162
4313
|
color: #fff;
|
|
4163
4314
|
}
|
|
4164
|
-
|
|
4165
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-inverse-primary:hover {
|
|
4166
|
-
color: #fff;
|
|
4167
|
-
}
|
|
4168
|
-
html:not(#__):not(#___) .cadmin .label-inverse-primary[tabindex]:hover {
|
|
4315
|
+
html:not(#__):not(#___) .cadmin [href].label-inverse-primary:hover, html:not(#__):not(#___) .cadmin [type].label-inverse-primary:hover, html:not(#__):not(#___) .cadmin [tabindex].label-inverse-primary:hover {
|
|
4169
4316
|
color: #fff;
|
|
4170
4317
|
}
|
|
4171
4318
|
html:not(#__):not(#___) .cadmin .label-inverse-secondary {
|
|
@@ -4173,11 +4320,7 @@ html:not(#__):not(#___) .cadmin .label-inverse-secondary {
|
|
|
4173
4320
|
border-color: #6b6c7e;
|
|
4174
4321
|
color: #fff;
|
|
4175
4322
|
}
|
|
4176
|
-
|
|
4177
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-inverse-secondary:hover {
|
|
4178
|
-
color: #fff;
|
|
4179
|
-
}
|
|
4180
|
-
html:not(#__):not(#___) .cadmin .label-inverse-secondary[tabindex]:hover {
|
|
4323
|
+
html:not(#__):not(#___) .cadmin [href].label-inverse-secondary:hover, html:not(#__):not(#___) .cadmin [type].label-inverse-secondary:hover, html:not(#__):not(#___) .cadmin [tabindex].label-inverse-secondary:hover {
|
|
4181
4324
|
color: #fff;
|
|
4182
4325
|
}
|
|
4183
4326
|
html:not(#__):not(#___) .cadmin .label-inverse-success {
|
|
@@ -4185,11 +4328,7 @@ html:not(#__):not(#___) .cadmin .label-inverse-success {
|
|
|
4185
4328
|
border-color: #287d3c;
|
|
4186
4329
|
color: #fff;
|
|
4187
4330
|
}
|
|
4188
|
-
|
|
4189
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-inverse-success:hover {
|
|
4190
|
-
color: #fff;
|
|
4191
|
-
}
|
|
4192
|
-
html:not(#__):not(#___) .cadmin .label-inverse-success[tabindex]:hover {
|
|
4331
|
+
html:not(#__):not(#___) .cadmin [href].label-inverse-success:hover, html:not(#__):not(#___) .cadmin [type].label-inverse-success:hover, html:not(#__):not(#___) .cadmin [tabindex].label-inverse-success:hover {
|
|
4193
4332
|
color: #fff;
|
|
4194
4333
|
}
|
|
4195
4334
|
html:not(#__):not(#___) .cadmin .label-inverse-info {
|
|
@@ -4197,11 +4336,7 @@ html:not(#__):not(#___) .cadmin .label-inverse-info {
|
|
|
4197
4336
|
border-color: #2e5aac;
|
|
4198
4337
|
color: #fff;
|
|
4199
4338
|
}
|
|
4200
|
-
|
|
4201
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-inverse-info:hover {
|
|
4202
|
-
color: #fff;
|
|
4203
|
-
}
|
|
4204
|
-
html:not(#__):not(#___) .cadmin .label-inverse-info[tabindex]:hover {
|
|
4339
|
+
html:not(#__):not(#___) .cadmin [href].label-inverse-info:hover, html:not(#__):not(#___) .cadmin [type].label-inverse-info:hover, html:not(#__):not(#___) .cadmin [tabindex].label-inverse-info:hover {
|
|
4205
4340
|
color: #fff;
|
|
4206
4341
|
}
|
|
4207
4342
|
html:not(#__):not(#___) .cadmin .label-inverse-warning {
|
|
@@ -4209,11 +4344,7 @@ html:not(#__):not(#___) .cadmin .label-inverse-warning {
|
|
|
4209
4344
|
border-color: #b95000;
|
|
4210
4345
|
color: #fff;
|
|
4211
4346
|
}
|
|
4212
|
-
|
|
4213
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-inverse-warning:hover {
|
|
4214
|
-
color: #fff;
|
|
4215
|
-
}
|
|
4216
|
-
html:not(#__):not(#___) .cadmin .label-inverse-warning[tabindex]:hover {
|
|
4347
|
+
html:not(#__):not(#___) .cadmin [href].label-inverse-warning:hover, html:not(#__):not(#___) .cadmin [type].label-inverse-warning:hover, html:not(#__):not(#___) .cadmin [tabindex].label-inverse-warning:hover {
|
|
4217
4348
|
color: #fff;
|
|
4218
4349
|
}
|
|
4219
4350
|
html:not(#__):not(#___) .cadmin .label-inverse-danger {
|
|
@@ -4221,11 +4352,7 @@ html:not(#__):not(#___) .cadmin .label-inverse-danger {
|
|
|
4221
4352
|
border-color: #da1414;
|
|
4222
4353
|
color: #fff;
|
|
4223
4354
|
}
|
|
4224
|
-
|
|
4225
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-inverse-danger:hover {
|
|
4226
|
-
color: #fff;
|
|
4227
|
-
}
|
|
4228
|
-
html:not(#__):not(#___) .cadmin .label-inverse-danger[tabindex]:hover {
|
|
4355
|
+
html:not(#__):not(#___) .cadmin [href].label-inverse-danger:hover, html:not(#__):not(#___) .cadmin [type].label-inverse-danger:hover, html:not(#__):not(#___) .cadmin [tabindex].label-inverse-danger:hover {
|
|
4229
4356
|
color: #fff;
|
|
4230
4357
|
}
|
|
4231
4358
|
html:not(#__):not(#___) .cadmin .label-inverse-light {
|
|
@@ -4233,11 +4360,7 @@ html:not(#__):not(#___) .cadmin .label-inverse-light {
|
|
|
4233
4360
|
border-color: #f1f2f5;
|
|
4234
4361
|
color: #272833;
|
|
4235
4362
|
}
|
|
4236
|
-
|
|
4237
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-inverse-light:hover {
|
|
4238
|
-
color: #272833;
|
|
4239
|
-
}
|
|
4240
|
-
html:not(#__):not(#___) .cadmin .label-inverse-light[tabindex]:hover {
|
|
4363
|
+
html:not(#__):not(#___) .cadmin [href].label-inverse-light:hover, html:not(#__):not(#___) .cadmin [type].label-inverse-light:hover, html:not(#__):not(#___) .cadmin [tabindex].label-inverse-light:hover {
|
|
4241
4364
|
color: #272833;
|
|
4242
4365
|
}
|
|
4243
4366
|
html:not(#__):not(#___) .cadmin .label-inverse-dark {
|
|
@@ -4245,46 +4368,35 @@ html:not(#__):not(#___) .cadmin .label-inverse-dark {
|
|
|
4245
4368
|
border-color: #272833;
|
|
4246
4369
|
color: #fff;
|
|
4247
4370
|
}
|
|
4248
|
-
|
|
4249
|
-
buttonhtml:not(#__):not(#___) .cadmin .label-inverse-dark:hover {
|
|
4250
|
-
color: #fff;
|
|
4251
|
-
}
|
|
4252
|
-
html:not(#__):not(#___) .cadmin .label-inverse-dark[tabindex]:hover {
|
|
4371
|
+
html:not(#__):not(#___) .cadmin [href].label-inverse-dark:hover, html:not(#__):not(#___) .cadmin [type].label-inverse-dark:hover, html:not(#__):not(#___) .cadmin [tabindex].label-inverse-dark:hover {
|
|
4253
4372
|
color: #fff;
|
|
4254
4373
|
}
|
|
4255
4374
|
html:not(#__):not(#___) .cadmin .sticker {
|
|
4256
4375
|
align-items: center;
|
|
4257
4376
|
border-radius: 4px;
|
|
4258
|
-
height: 32px;
|
|
4259
|
-
line-height: 32px;
|
|
4260
|
-
width: 32px;
|
|
4261
4377
|
display: inline-flex;
|
|
4262
4378
|
font-size: 16px;
|
|
4263
4379
|
font-weight: 700;
|
|
4380
|
+
height: 32px;
|
|
4264
4381
|
justify-content: center;
|
|
4382
|
+
line-height: 32px;
|
|
4265
4383
|
position: relative;
|
|
4266
4384
|
text-align: center;
|
|
4267
4385
|
vertical-align: middle;
|
|
4386
|
+
width: 32px;
|
|
4268
4387
|
}
|
|
4269
4388
|
html:not(#__):not(#___) .cadmin .sticker > .inline-item {
|
|
4270
4389
|
justify-content: center;
|
|
4271
4390
|
}
|
|
4272
|
-
html:not(#__):not(#___) .cadmin .sticker > .inline-item .lexicon-icon
|
|
4273
|
-
html:not(#__):not(#___) .cadmin .sticker .lexicon-icon {
|
|
4391
|
+
html:not(#__):not(#___) .cadmin .sticker > .inline-item .lexicon-icon {
|
|
4274
4392
|
margin-top: 0;
|
|
4275
4393
|
}
|
|
4276
|
-
html:not(#__):not(#___) .cadmin .sticker
|
|
4277
|
-
|
|
4278
|
-
}
|
|
4279
|
-
html:not(#__):not(#___) .cadmin .sticker.rounded-circle .sticker-overlay {
|
|
4280
|
-
border-radius: 5000px;
|
|
4281
|
-
}
|
|
4282
|
-
html:not(#__):not(#___) .cadmin .sticker.rounded-0 .sticker-overlay {
|
|
4283
|
-
border-radius: 0;
|
|
4394
|
+
html:not(#__):not(#___) .cadmin .sticker .lexicon-icon {
|
|
4395
|
+
margin-top: 0;
|
|
4284
4396
|
}
|
|
4285
4397
|
html:not(#__):not(#___) .cadmin .sticker-overlay {
|
|
4286
4398
|
align-items: center;
|
|
4287
|
-
border-radius:
|
|
4399
|
+
border-radius: inherit;
|
|
4288
4400
|
bottom: 0;
|
|
4289
4401
|
display: flex;
|
|
4290
4402
|
justify-content: center;
|
|
@@ -4338,12 +4450,9 @@ html:not(#__):not(#___) .cadmin .sticker-outside.sticker-top-right {
|
|
|
4338
4450
|
right: -16px;
|
|
4339
4451
|
}
|
|
4340
4452
|
html:not(#__):not(#___) .cadmin .sticker-user-icon {
|
|
4341
|
-
border-radius: 5000px;
|
|
4342
|
-
box-shadow: 0 0 0 1px #e7e7ed;
|
|
4343
4453
|
background-color: #fff;
|
|
4344
|
-
}
|
|
4345
|
-
html:not(#__):not(#___) .cadmin .sticker-user-icon .sticker-overlay {
|
|
4346
4454
|
border-radius: 5000px;
|
|
4455
|
+
box-shadow: 0 0 0 1px #e7e7ed;
|
|
4347
4456
|
}
|
|
4348
4457
|
html:not(#__):not(#___) .cadmin .sticker-sm {
|
|
4349
4458
|
font-size: 12px;
|
|
@@ -4351,23 +4460,23 @@ html:not(#__):not(#___) .cadmin .sticker-sm {
|
|
|
4351
4460
|
line-height: 24px;
|
|
4352
4461
|
width: 24px;
|
|
4353
4462
|
}
|
|
4354
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4355
|
-
left: -
|
|
4356
|
-
top: -
|
|
4463
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-sm {
|
|
4464
|
+
left: calc(-24px / 2);
|
|
4465
|
+
top: calc(-24px / 2);
|
|
4357
4466
|
}
|
|
4358
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4359
|
-
bottom: -
|
|
4467
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-bottom-left.sticker-sm {
|
|
4468
|
+
bottom: calc(-24px / 2);
|
|
4360
4469
|
top: auto;
|
|
4361
4470
|
}
|
|
4362
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4363
|
-
bottom: -
|
|
4471
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-bottom-right.sticker-sm {
|
|
4472
|
+
bottom: calc(-24px / 2);
|
|
4364
4473
|
left: auto;
|
|
4365
|
-
right: -
|
|
4474
|
+
right: calc(-24px / 2);
|
|
4366
4475
|
top: auto;
|
|
4367
4476
|
}
|
|
4368
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4477
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-top-right.sticker-sm {
|
|
4369
4478
|
left: auto;
|
|
4370
|
-
right: -
|
|
4479
|
+
right: calc(-24px / 2);
|
|
4371
4480
|
}
|
|
4372
4481
|
html:not(#__):not(#___) .cadmin .sticker-lg {
|
|
4373
4482
|
font-size: 20px;
|
|
@@ -4375,23 +4484,23 @@ html:not(#__):not(#___) .cadmin .sticker-lg {
|
|
|
4375
4484
|
line-height: 40px;
|
|
4376
4485
|
width: 40px;
|
|
4377
4486
|
}
|
|
4378
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4379
|
-
left: -
|
|
4380
|
-
top: -
|
|
4487
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-lg {
|
|
4488
|
+
left: calc(-40px / 2);
|
|
4489
|
+
top: calc(-40px / 2);
|
|
4381
4490
|
}
|
|
4382
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4383
|
-
bottom: -
|
|
4491
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-bottom-left.sticker-lg {
|
|
4492
|
+
bottom: calc(-40px / 2);
|
|
4384
4493
|
top: auto;
|
|
4385
4494
|
}
|
|
4386
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4387
|
-
bottom: -
|
|
4495
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-bottom-right.sticker-lg {
|
|
4496
|
+
bottom: calc(-40px / 2);
|
|
4388
4497
|
left: auto;
|
|
4389
|
-
right: -
|
|
4498
|
+
right: calc(-40px / 2);
|
|
4390
4499
|
top: auto;
|
|
4391
4500
|
}
|
|
4392
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4501
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-top-right.sticker-lg {
|
|
4393
4502
|
left: auto;
|
|
4394
|
-
right: -
|
|
4503
|
+
right: calc(-40px / 2);
|
|
4395
4504
|
}
|
|
4396
4505
|
html:not(#__):not(#___) .cadmin .sticker-xl {
|
|
4397
4506
|
font-size: 24px;
|
|
@@ -4399,23 +4508,23 @@ html:not(#__):not(#___) .cadmin .sticker-xl {
|
|
|
4399
4508
|
line-height: 48px;
|
|
4400
4509
|
width: 48px;
|
|
4401
4510
|
}
|
|
4402
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4403
|
-
left: -
|
|
4404
|
-
top: -
|
|
4511
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-xl {
|
|
4512
|
+
left: calc(-48px / 2);
|
|
4513
|
+
top: calc(-48px / 2);
|
|
4405
4514
|
}
|
|
4406
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4407
|
-
bottom: -
|
|
4515
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-bottom-left.sticker-xl {
|
|
4516
|
+
bottom: calc(-48px / 2);
|
|
4408
4517
|
top: auto;
|
|
4409
4518
|
}
|
|
4410
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4411
|
-
bottom: -
|
|
4519
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-bottom-right.sticker-xl {
|
|
4520
|
+
bottom: calc(-48px / 2);
|
|
4412
4521
|
left: auto;
|
|
4413
|
-
right: -
|
|
4522
|
+
right: calc(-48px / 2);
|
|
4414
4523
|
top: auto;
|
|
4415
4524
|
}
|
|
4416
|
-
html:not(#__):not(#___) .cadmin .sticker-
|
|
4525
|
+
html:not(#__):not(#___) .cadmin .sticker-outside.sticker-top-right.sticker-xl {
|
|
4417
4526
|
left: auto;
|
|
4418
|
-
right: -
|
|
4527
|
+
right: calc(-48px / 2);
|
|
4419
4528
|
}
|
|
4420
4529
|
html:not(#__):not(#___) .cadmin .sticker-primary {
|
|
4421
4530
|
background-color: #fff;
|
|
@@ -4449,8 +4558,7 @@ html:not(#__):not(#___) .cadmin .sticker-dark {
|
|
|
4449
4558
|
background-color: #fff;
|
|
4450
4559
|
color: #272833;
|
|
4451
4560
|
}
|
|
4452
|
-
html:not(#__):not(#___) .cadmin .sticker-circle
|
|
4453
|
-
html:not(#__):not(#___) .cadmin .sticker-circle .sticker-overlay {
|
|
4561
|
+
html:not(#__):not(#___) .cadmin .sticker-circle {
|
|
4454
4562
|
border-radius: 5000px;
|
|
4455
4563
|
}
|
|
4456
4564
|
html:not(#__):not(#___) .cadmin .card,
|
|
@@ -4458,7 +4566,7 @@ html:not(#__):not(#___) .cadmin .card-horizontal {
|
|
|
4458
4566
|
background-color: #fff;
|
|
4459
4567
|
border-color: rgba(0, 0, 0, 0.125);
|
|
4460
4568
|
border-style: solid;
|
|
4461
|
-
border-width:
|
|
4569
|
+
border-width: 0px;
|
|
4462
4570
|
border-radius: 4px;
|
|
4463
4571
|
box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.6);
|
|
4464
4572
|
display: block;
|
|
@@ -4470,19 +4578,19 @@ html:not(#__):not(#___) .cadmin .card-horizontal {
|
|
|
4470
4578
|
html:not(#__):not(#___) .cadmin .card .autofit-col:first-child,
|
|
4471
4579
|
html:not(#__):not(#___) .cadmin .card-horizontal .autofit-col:first-child {
|
|
4472
4580
|
border-bottom-left-radius: calc(
|
|
4473
|
-
4px -
|
|
4581
|
+
4px - 0px
|
|
4474
4582
|
);
|
|
4475
4583
|
border-top-left-radius: calc(
|
|
4476
|
-
4px -
|
|
4584
|
+
4px - 0px
|
|
4477
4585
|
);
|
|
4478
4586
|
}
|
|
4479
4587
|
html:not(#__):not(#___) .cadmin .card .autofit-col:last-child,
|
|
4480
4588
|
html:not(#__):not(#___) .cadmin .card-horizontal .autofit-col:last-child {
|
|
4481
4589
|
border-bottom-right-radius: calc(
|
|
4482
|
-
4px -
|
|
4590
|
+
4px - 0px
|
|
4483
4591
|
);
|
|
4484
4592
|
border-top-right-radius: calc(
|
|
4485
|
-
4px -
|
|
4593
|
+
4px - 0px
|
|
4486
4594
|
);
|
|
4487
4595
|
}
|
|
4488
4596
|
html:not(#__):not(#___) .cadmin .card .aspect-ratio .label,
|
|
@@ -4608,15 +4716,15 @@ html:not(#__):not(#___) .cadmin .card-divider {
|
|
|
4608
4716
|
}
|
|
4609
4717
|
html:not(#__):not(#___) .cadmin .card-header {
|
|
4610
4718
|
background-color: rgba(0, 0, 0, 0.03);
|
|
4611
|
-
border-bottom:
|
|
4719
|
+
border-bottom: 0px solid rgba(0, 0, 0, 0.125);
|
|
4612
4720
|
margin-bottom: 0;
|
|
4613
4721
|
padding: 12px 20px;
|
|
4614
4722
|
}
|
|
4615
4723
|
html:not(#__):not(#___) .cadmin .card-header:first-child {
|
|
4616
4724
|
border-radius: calc(
|
|
4617
|
-
4px -
|
|
4725
|
+
4px - 0px
|
|
4618
4726
|
) calc(
|
|
4619
|
-
4px -
|
|
4727
|
+
4px - 0px
|
|
4620
4728
|
) 0 0;
|
|
4621
4729
|
}
|
|
4622
4730
|
html:not(#__):not(#___) .cadmin .card-header + .list-group .list-group-item:first-child {
|
|
@@ -4624,14 +4732,14 @@ html:not(#__):not(#___) .cadmin .card-header + .list-group .list-group-item:firs
|
|
|
4624
4732
|
}
|
|
4625
4733
|
html:not(#__):not(#___) .cadmin .card-footer {
|
|
4626
4734
|
background-color: rgba(0, 0, 0, 0.03);
|
|
4627
|
-
border-top:
|
|
4735
|
+
border-top: 0px solid rgba(0, 0, 0, 0.125);
|
|
4628
4736
|
padding: 12px 20px;
|
|
4629
4737
|
}
|
|
4630
4738
|
html:not(#__):not(#___) .cadmin .card-footer:last-child {
|
|
4631
4739
|
border-radius: 0 0 calc(
|
|
4632
|
-
4px -
|
|
4740
|
+
4px - 0px
|
|
4633
4741
|
) calc(
|
|
4634
|
-
4px -
|
|
4742
|
+
4px - 0px
|
|
4635
4743
|
);
|
|
4636
4744
|
}
|
|
4637
4745
|
html:not(#__):not(#___) .cadmin .card-img-overlay {
|
|
@@ -4651,19 +4759,19 @@ html:not(#__):not(#___) .cadmin .card-img-bottom {
|
|
|
4651
4759
|
html:not(#__):not(#___) .cadmin .card-img,
|
|
4652
4760
|
html:not(#__):not(#___) .cadmin .card-img-top {
|
|
4653
4761
|
border-top-left-radius: calc(
|
|
4654
|
-
4px -
|
|
4762
|
+
4px - 0px
|
|
4655
4763
|
);
|
|
4656
4764
|
border-top-right-radius: calc(
|
|
4657
|
-
4px -
|
|
4765
|
+
4px - 0px
|
|
4658
4766
|
);
|
|
4659
4767
|
}
|
|
4660
4768
|
html:not(#__):not(#___) .cadmin .card-img,
|
|
4661
4769
|
html:not(#__):not(#___) .cadmin .card-img-bottom {
|
|
4662
4770
|
border-bottom-left-radius: calc(
|
|
4663
|
-
4px -
|
|
4771
|
+
4px - 0px
|
|
4664
4772
|
);
|
|
4665
4773
|
border-bottom-right-radius: calc(
|
|
4666
|
-
4px -
|
|
4774
|
+
4px - 0px
|
|
4667
4775
|
);
|
|
4668
4776
|
}
|
|
4669
4777
|
html:not(#__):not(#___) .cadmin .card-row {
|
|
@@ -4706,178 +4814,178 @@ html:not(#__):not(#___) .cadmin .card-row .autofit-col-gutters .card-divider {
|
|
|
4706
4814
|
}
|
|
4707
4815
|
html:not(#__):not(#___) .cadmin .card-item-first {
|
|
4708
4816
|
border-top-left-radius: calc(
|
|
4709
|
-
4px -
|
|
4817
|
+
4px - 0px
|
|
4710
4818
|
);
|
|
4711
4819
|
border-top-right-radius: calc(
|
|
4712
|
-
4px -
|
|
4820
|
+
4px - 0px
|
|
4713
4821
|
);
|
|
4714
4822
|
width: 100%;
|
|
4715
4823
|
}
|
|
4716
4824
|
html:not(#__):not(#___) .cadmin .autofit-col:first-child .card-item-first {
|
|
4717
4825
|
border-radius: calc(
|
|
4718
|
-
4px -
|
|
4826
|
+
4px - 0px
|
|
4719
4827
|
) 0 0 calc(
|
|
4720
|
-
4px -
|
|
4828
|
+
4px - 0px
|
|
4721
4829
|
);
|
|
4722
4830
|
}
|
|
4723
4831
|
html:not(#__):not(#___) .cadmin .card-item-last {
|
|
4724
4832
|
border-bottom-left-radius: calc(
|
|
4725
|
-
4px -
|
|
4833
|
+
4px - 0px
|
|
4726
4834
|
);
|
|
4727
4835
|
border-bottom-right-radius: calc(
|
|
4728
|
-
4px -
|
|
4836
|
+
4px - 0px
|
|
4729
4837
|
);
|
|
4730
4838
|
width: 100%;
|
|
4731
4839
|
}
|
|
4732
4840
|
html:not(#__):not(#___) .cadmin .autofit-col:last-child .card-item-last {
|
|
4733
4841
|
border-radius: 0 calc(
|
|
4734
|
-
4px -
|
|
4842
|
+
4px - 0px
|
|
4735
4843
|
) calc(
|
|
4736
|
-
4px -
|
|
4844
|
+
4px - 0px
|
|
4737
4845
|
) 0;
|
|
4738
4846
|
}
|
|
4739
4847
|
html:not(#__):not(#___) .cadmin .rounded .card-header,
|
|
4740
4848
|
html:not(#__):not(#___) .cadmin .rounded .card-item-first {
|
|
4741
4849
|
border-top-left-radius: calc(
|
|
4742
|
-
4px -
|
|
4850
|
+
4px - 0px
|
|
4743
4851
|
);
|
|
4744
4852
|
border-top-right-radius: calc(
|
|
4745
|
-
4px -
|
|
4853
|
+
4px - 0px
|
|
4746
4854
|
);
|
|
4747
4855
|
}
|
|
4748
4856
|
html:not(#__):not(#___) .cadmin .rounded .card-footer,
|
|
4749
4857
|
html:not(#__):not(#___) .cadmin .rounded .card-item-last {
|
|
4750
4858
|
border-bottom-left-radius: calc(
|
|
4751
|
-
4px -
|
|
4859
|
+
4px - 0px
|
|
4752
4860
|
);
|
|
4753
4861
|
border-bottom-right-radius: calc(
|
|
4754
|
-
4px -
|
|
4862
|
+
4px - 0px
|
|
4755
4863
|
);
|
|
4756
4864
|
}
|
|
4757
4865
|
html:not(#__):not(#___) .cadmin .rounded .autofit-col:first-child {
|
|
4758
4866
|
border-bottom-left-radius: calc(
|
|
4759
|
-
4px -
|
|
4867
|
+
4px - 0px
|
|
4760
4868
|
);
|
|
4761
4869
|
border-top-left-radius: calc(
|
|
4762
|
-
4px -
|
|
4870
|
+
4px - 0px
|
|
4763
4871
|
);
|
|
4764
4872
|
}
|
|
4765
4873
|
html:not(#__):not(#___) .cadmin .rounded .autofit-col:first-child .card-item-first {
|
|
4766
4874
|
border-radius: calc(
|
|
4767
|
-
4px -
|
|
4875
|
+
4px - 0px
|
|
4768
4876
|
) 0 0 calc(
|
|
4769
|
-
4px -
|
|
4877
|
+
4px - 0px
|
|
4770
4878
|
);
|
|
4771
4879
|
}
|
|
4772
4880
|
html:not(#__):not(#___) .cadmin .rounded .autofit-col:last-child {
|
|
4773
4881
|
border-bottom-right-radius: calc(
|
|
4774
|
-
4px -
|
|
4882
|
+
4px - 0px
|
|
4775
4883
|
);
|
|
4776
4884
|
border-top-right-radius: calc(
|
|
4777
|
-
4px -
|
|
4885
|
+
4px - 0px
|
|
4778
4886
|
);
|
|
4779
4887
|
}
|
|
4780
4888
|
html:not(#__):not(#___) .cadmin .rounded .autofit-col:last-child .card-item-last {
|
|
4781
4889
|
border-radius: 0 calc(
|
|
4782
|
-
4px -
|
|
4890
|
+
4px - 0px
|
|
4783
4891
|
) calc(
|
|
4784
|
-
4px -
|
|
4892
|
+
4px - 0px
|
|
4785
4893
|
) 0;
|
|
4786
4894
|
}
|
|
4787
4895
|
html:not(#__):not(#___) .cadmin .rounded-0 .card-header,
|
|
4788
4896
|
html:not(#__):not(#___) .cadmin .rounded-0 .card-item-first {
|
|
4789
4897
|
border-top-left-radius: calc(
|
|
4790
|
-
0 -
|
|
4898
|
+
0 - 0px
|
|
4791
4899
|
);
|
|
4792
4900
|
border-top-right-radius: calc(
|
|
4793
|
-
0 -
|
|
4901
|
+
0 - 0px
|
|
4794
4902
|
);
|
|
4795
4903
|
}
|
|
4796
4904
|
html:not(#__):not(#___) .cadmin .rounded-0 .card-footer,
|
|
4797
4905
|
html:not(#__):not(#___) .cadmin .rounded-0 .card-item-last {
|
|
4798
4906
|
border-bottom-left-radius: calc(
|
|
4799
|
-
0 -
|
|
4907
|
+
0 - 0px
|
|
4800
4908
|
);
|
|
4801
4909
|
border-bottom-right-radius: calc(
|
|
4802
|
-
0 -
|
|
4910
|
+
0 - 0px
|
|
4803
4911
|
);
|
|
4804
4912
|
}
|
|
4805
4913
|
html:not(#__):not(#___) .cadmin .rounded-0 .autofit-col:first-child {
|
|
4806
4914
|
border-bottom-left-radius: calc(
|
|
4807
|
-
0 -
|
|
4915
|
+
0 - 0px
|
|
4808
4916
|
);
|
|
4809
4917
|
border-top-left-radius: calc(
|
|
4810
|
-
0 -
|
|
4918
|
+
0 - 0px
|
|
4811
4919
|
);
|
|
4812
4920
|
}
|
|
4813
4921
|
html:not(#__):not(#___) .cadmin .rounded-0 .autofit-col:first-child .card-item-first {
|
|
4814
4922
|
border-radius: calc(
|
|
4815
|
-
0 -
|
|
4923
|
+
0 - 0px
|
|
4816
4924
|
) 0 0 calc(
|
|
4817
|
-
0 -
|
|
4925
|
+
0 - 0px
|
|
4818
4926
|
);
|
|
4819
4927
|
}
|
|
4820
4928
|
html:not(#__):not(#___) .cadmin .rounded-0 .autofit-col:last-child {
|
|
4821
4929
|
border-bottom-right-radius: calc(
|
|
4822
|
-
0 -
|
|
4930
|
+
0 - 0px
|
|
4823
4931
|
);
|
|
4824
4932
|
border-top-right-radius: calc(
|
|
4825
|
-
0 -
|
|
4933
|
+
0 - 0px
|
|
4826
4934
|
);
|
|
4827
4935
|
}
|
|
4828
4936
|
html:not(#__):not(#___) .cadmin .rounded-0 .autofit-col:last-child .card-item-last {
|
|
4829
4937
|
border-radius: 0 calc(
|
|
4830
|
-
0 -
|
|
4938
|
+
0 - 0px
|
|
4831
4939
|
) calc(
|
|
4832
|
-
0 -
|
|
4940
|
+
0 - 0px
|
|
4833
4941
|
) 0;
|
|
4834
4942
|
}
|
|
4835
4943
|
html:not(#__):not(#___) .cadmin .rounded-circle .card-header,
|
|
4836
4944
|
html:not(#__):not(#___) .cadmin .rounded-circle .card-item-first {
|
|
4837
4945
|
border-top-left-radius: calc(
|
|
4838
|
-
5000px -
|
|
4946
|
+
5000px - 0px
|
|
4839
4947
|
);
|
|
4840
4948
|
border-top-right-radius: calc(
|
|
4841
|
-
5000px -
|
|
4949
|
+
5000px - 0px
|
|
4842
4950
|
);
|
|
4843
4951
|
}
|
|
4844
4952
|
html:not(#__):not(#___) .cadmin .rounded-circle .card-footer,
|
|
4845
4953
|
html:not(#__):not(#___) .cadmin .rounded-circle .card-item-last {
|
|
4846
4954
|
border-bottom-left-radius: calc(
|
|
4847
|
-
5000px -
|
|
4955
|
+
5000px - 0px
|
|
4848
4956
|
);
|
|
4849
4957
|
border-bottom-right-radius: calc(
|
|
4850
|
-
5000px -
|
|
4958
|
+
5000px - 0px
|
|
4851
4959
|
);
|
|
4852
4960
|
}
|
|
4853
4961
|
html:not(#__):not(#___) .cadmin .rounded-circle .autofit-col:first-child {
|
|
4854
4962
|
border-bottom-left-radius: calc(
|
|
4855
|
-
5000px -
|
|
4963
|
+
5000px - 0px
|
|
4856
4964
|
);
|
|
4857
4965
|
border-top-left-radius: calc(
|
|
4858
|
-
5000px -
|
|
4966
|
+
5000px - 0px
|
|
4859
4967
|
);
|
|
4860
4968
|
}
|
|
4861
4969
|
html:not(#__):not(#___) .cadmin .rounded-circle .autofit-col:first-child .card-item-first {
|
|
4862
4970
|
border-radius: calc(
|
|
4863
|
-
5000px -
|
|
4971
|
+
5000px - 0px
|
|
4864
4972
|
) 0 0 calc(
|
|
4865
|
-
5000px -
|
|
4973
|
+
5000px - 0px
|
|
4866
4974
|
);
|
|
4867
4975
|
}
|
|
4868
4976
|
html:not(#__):not(#___) .cadmin .rounded-circle .autofit-col:last-child {
|
|
4869
4977
|
border-bottom-right-radius: calc(
|
|
4870
|
-
5000px -
|
|
4978
|
+
5000px - 0px
|
|
4871
4979
|
);
|
|
4872
4980
|
border-top-right-radius: calc(
|
|
4873
|
-
5000px -
|
|
4981
|
+
5000px - 0px
|
|
4874
4982
|
);
|
|
4875
4983
|
}
|
|
4876
4984
|
html:not(#__):not(#___) .cadmin .rounded-circle .autofit-col:last-child .card-item-last {
|
|
4877
4985
|
border-radius: 0 calc(
|
|
4878
|
-
5000px -
|
|
4986
|
+
5000px - 0px
|
|
4879
4987
|
) calc(
|
|
4880
|
-
5000px -
|
|
4988
|
+
5000px - 0px
|
|
4881
4989
|
) 0;
|
|
4882
4990
|
}
|
|
4883
4991
|
html:not(#__):not(#___) .cadmin .form-check-card {
|
|
@@ -5109,40 +5217,34 @@ html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
|
5109
5217
|
max-width: 20%;
|
|
5110
5218
|
}
|
|
5111
5219
|
}
|
|
5112
|
-
html:not(#__):not(#___) .cadmin .card-interactive
|
|
5113
|
-
html:not(#__):not(#___) .cadmin .card-interactive .card {
|
|
5220
|
+
html:not(#__):not(#___) .cadmin .card-interactive {
|
|
5114
5221
|
cursor: pointer;
|
|
5115
5222
|
outline: 0;
|
|
5116
5223
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
5117
5224
|
}
|
|
5118
5225
|
@media (prefers-reduced-motion: reduce) {
|
|
5119
|
-
html:not(#__):not(#___) .cadmin .card-interactive
|
|
5120
|
-
html:not(#__):not(#___) .cadmin .card-interactive .card {
|
|
5226
|
+
html:not(#__):not(#___) .cadmin .card-interactive {
|
|
5121
5227
|
transition: none;
|
|
5122
5228
|
}
|
|
5123
5229
|
}
|
|
5124
|
-
html:not(#__):not(#___) .cadmin .card-interactive.card
|
|
5125
|
-
html:not(#__):not(#___) .cadmin .card-interactive .card:hover {
|
|
5230
|
+
html:not(#__):not(#___) .cadmin .card-interactive:hover, html:not(#__):not(#___) .cadmin .card-interactive.hover {
|
|
5126
5231
|
background-color: #f7f8f9;
|
|
5127
5232
|
text-decoration: none;
|
|
5128
5233
|
}
|
|
5129
|
-
html:not(#__):not(#___) .cadmin .card-interactive.card
|
|
5130
|
-
html:not(#__):not(#___) .cadmin .card-interactive .card:focus {
|
|
5234
|
+
html:not(#__):not(#___) .cadmin .card-interactive:focus, html:not(#__):not(#___) .cadmin .card-interactive.focus {
|
|
5131
5235
|
box-shadow: 0 0 0 2px #FFF, 0 0 0 4px #719aff;
|
|
5132
5236
|
}
|
|
5133
|
-
html:not(#__):not(#___) .cadmin .card-interactive
|
|
5134
|
-
html:not(#__):not(#___) .cadmin .card-interactive .card:active,
|
|
5135
|
-
html:not(#__):not(#___) .cadmin .card-interactive .card.active {
|
|
5237
|
+
html:not(#__):not(#___) .cadmin .card-interactive:active, html:not(#__):not(#___) .cadmin .card-interactive.active {
|
|
5136
5238
|
background-color: #f1f2f5;
|
|
5137
5239
|
}
|
|
5138
5240
|
html:not(#__):not(#___) .cadmin .card-interactive::after {
|
|
5139
5241
|
border-radius: 0 0 4px 4px;
|
|
5140
|
-
bottom:
|
|
5242
|
+
bottom: 0px;
|
|
5141
5243
|
content: "";
|
|
5142
5244
|
height: 0;
|
|
5143
|
-
left:
|
|
5245
|
+
left: 0px;
|
|
5144
5246
|
position: absolute;
|
|
5145
|
-
right:
|
|
5247
|
+
right: 0px;
|
|
5146
5248
|
transition: height 0.15s ease-out;
|
|
5147
5249
|
}
|
|
5148
5250
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -5165,13 +5267,10 @@ html:not(#__):not(#___) .cadmin .card-interactive .card-body {
|
|
|
5165
5267
|
html:not(#__):not(#___) .cadmin .card-interactive label {
|
|
5166
5268
|
cursor: pointer;
|
|
5167
5269
|
}
|
|
5168
|
-
html:not(#__):not(#___) .cadmin .card-interactive-primary.card
|
|
5169
|
-
html:not(#__):not(#___) .cadmin .card-interactive-primary .card:focus {
|
|
5270
|
+
html:not(#__):not(#___) .cadmin .card-interactive-primary:focus, html:not(#__):not(#___) .cadmin .card-interactive-primary.focus {
|
|
5170
5271
|
background-color: #f7f8f9;
|
|
5171
5272
|
}
|
|
5172
|
-
html:not(#__):not(#___) .cadmin .card-interactive-primary
|
|
5173
|
-
html:not(#__):not(#___) .cadmin .card-interactive-primary .card:active,
|
|
5174
|
-
html:not(#__):not(#___) .cadmin .card-interactive-primary .card.active {
|
|
5273
|
+
html:not(#__):not(#___) .cadmin .card-interactive-primary:active, html:not(#__):not(#___) .cadmin .card-interactive-primary.active {
|
|
5175
5274
|
background-color: #f1f2f5;
|
|
5176
5275
|
}
|
|
5177
5276
|
html:not(#__):not(#___) .cadmin .card-interactive-primary:hover::after, html:not(#__):not(#___) .cadmin .card-interactive-primary.hover::after {
|
|
@@ -5180,32 +5279,27 @@ html:not(#__):not(#___) .cadmin .card-interactive-primary:hover::after, html:not
|
|
|
5180
5279
|
html:not(#__):not(#___) .cadmin .card-interactive-primary:active::after, html:not(#__):not(#___) .cadmin .card-interactive-primary.active::after {
|
|
5181
5280
|
background-color: #0b5fff;
|
|
5182
5281
|
}
|
|
5183
|
-
html:not(#__):not(#___) .cadmin .card-interactive-secondary
|
|
5184
|
-
html:not(#__):not(#___) .cadmin .card-interactive-secondary .card {
|
|
5282
|
+
html:not(#__):not(#___) .cadmin .card-interactive-secondary {
|
|
5185
5283
|
color: #272833;
|
|
5186
5284
|
}
|
|
5187
|
-
html:not(#__):not(#___) .cadmin .card-interactive-secondary.card
|
|
5188
|
-
html:not(#__):not(#___) .cadmin .card-interactive-secondary .card:hover {
|
|
5285
|
+
html:not(#__):not(#___) .cadmin .card-interactive-secondary:hover, html:not(#__):not(#___) .cadmin .card-interactive-secondary.hover {
|
|
5189
5286
|
background-color: #fff;
|
|
5190
5287
|
border-color: transparent;
|
|
5191
5288
|
box-shadow: 0 0 0 2px #719aff;
|
|
5192
5289
|
color: #272833;
|
|
5193
5290
|
}
|
|
5194
|
-
html:not(#__):not(#___) .cadmin .card-interactive-secondary.card
|
|
5195
|
-
html:not(#__):not(#___) .cadmin .card-interactive-secondary .card:focus {
|
|
5291
|
+
html:not(#__):not(#___) .cadmin .card-interactive-secondary:focus, html:not(#__):not(#___) .cadmin .card-interactive-secondary.focus {
|
|
5196
5292
|
border-color: transparent;
|
|
5197
5293
|
box-shadow: 0 0 0 2px #719aff;
|
|
5198
5294
|
}
|
|
5199
|
-
html:not(#__):not(#___) .cadmin .card-interactive-secondary
|
|
5200
|
-
html:not(#__):not(#___) .cadmin .card-interactive-secondary .card:active,
|
|
5201
|
-
html:not(#__):not(#___) .cadmin .card-interactive-secondary .card.active {
|
|
5295
|
+
html:not(#__):not(#___) .cadmin .card-interactive-secondary:active, html:not(#__):not(#___) .cadmin .card-interactive-secondary.active {
|
|
5202
5296
|
background-color: #fff;
|
|
5203
5297
|
}
|
|
5204
5298
|
html:not(#__):not(#___) .cadmin .card-type-asset .aspect-ratio {
|
|
5205
5299
|
border-color: #e7e7ed;
|
|
5206
5300
|
border-style: solid;
|
|
5207
|
-
border-width: 0 0
|
|
5208
|
-
padding-bottom:
|
|
5301
|
+
border-width: 0 0 1px 0;
|
|
5302
|
+
padding-bottom: calc(9 / 16 * 100%);
|
|
5209
5303
|
}
|
|
5210
5304
|
html:not(#__):not(#___) .cadmin .card-type-asset .aspect-ratio .custom-control label,
|
|
5211
5305
|
html:not(#__):not(#___) .cadmin .card-type-asset .aspect-ratio .form-check-label {
|
|
@@ -5238,14 +5332,14 @@ html:not(#__):not(#___) .cadmin .card-type-asset .card-type-asset-icon > .lexico
|
|
|
5238
5332
|
}
|
|
5239
5333
|
html:not(#__):not(#___) .cadmin .card-type-asset .card-type-asset-icon > .sticker {
|
|
5240
5334
|
border-radius: 50%;
|
|
5335
|
+
display: block;
|
|
5241
5336
|
font-size: 2vw;
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
border-radius: 50%;
|
|
5337
|
+
padding-bottom: 100%;
|
|
5338
|
+
width: 100%;
|
|
5245
5339
|
}
|
|
5246
5340
|
html:not(#__):not(#___) .cadmin .card-type-asset .dropdown-action {
|
|
5247
|
-
margin-right: -
|
|
5248
|
-
margin-top: -
|
|
5341
|
+
margin-right: -8px;
|
|
5342
|
+
margin-top: -3px;
|
|
5249
5343
|
}
|
|
5250
5344
|
html:not(#__):not(#___) .cadmin .image-card .aspect-ratio {
|
|
5251
5345
|
background-image: linear-gradient(45deg, #e7e7ed 25%, transparent 25%), linear-gradient(-45deg, #e7e7ed 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #e7e7ed 75%), linear-gradient(-45deg, transparent 75%, #e7e7ed 75%);
|
|
@@ -5277,24 +5371,19 @@ html:not(#__):not(#___) .cadmin .user-card .card-type-asset-icon {
|
|
|
5277
5371
|
min-width: 48px;
|
|
5278
5372
|
width: 30%;
|
|
5279
5373
|
}
|
|
5280
|
-
html:not(#__):not(#___) .cadmin .user-card .card-type-asset-icon .lexicon-icon {
|
|
5374
|
+
html:not(#__):not(#___) .cadmin .user-card .card-type-asset-icon > .lexicon-icon {
|
|
5281
5375
|
height: auto;
|
|
5282
5376
|
width: 50%;
|
|
5283
5377
|
}
|
|
5284
|
-
html:not(#__):not(#___) .cadmin .card-type-directory .dropdown-action {
|
|
5285
|
-
margin-right: -0.5rem;
|
|
5286
|
-
}
|
|
5287
5378
|
html:not(#__):not(#___) .cadmin .card-type-directory .sticker {
|
|
5288
5379
|
font-size: 18px;
|
|
5289
5380
|
}
|
|
5290
|
-
html:not(#__):not(#___) .cadmin .card-type-template
|
|
5291
|
-
html:not(#__):not(#___) .cadmin .card-type-template .card {
|
|
5381
|
+
html:not(#__):not(#___) .cadmin .card-type-template {
|
|
5292
5382
|
border-width: 1px;
|
|
5293
5383
|
box-shadow: none;
|
|
5294
5384
|
color: #272833;
|
|
5295
5385
|
}
|
|
5296
|
-
html:not(#__):not(#___) .cadmin .card-type-template.card
|
|
5297
|
-
html:not(#__):not(#___) .cadmin .card-type-template .card:hover {
|
|
5386
|
+
html:not(#__):not(#___) .cadmin .card-type-template:hover, html:not(#__):not(#___) .cadmin .card-type-template.hover {
|
|
5298
5387
|
color: #272833;
|
|
5299
5388
|
}
|
|
5300
5389
|
html:not(#__):not(#___) .cadmin .card-type-template::after {
|
|
@@ -5303,11 +5392,11 @@ html:not(#__):not(#___) .cadmin .card-type-template::after {
|
|
|
5303
5392
|
right: -1px;
|
|
5304
5393
|
}
|
|
5305
5394
|
html:not(#__):not(#___) .cadmin .card-type-template .aspect-ratio {
|
|
5395
|
+
background-image: none;
|
|
5306
5396
|
border-width: 0;
|
|
5307
5397
|
color: #6b6c7e;
|
|
5308
5398
|
text-align: center;
|
|
5309
|
-
|
|
5310
|
-
padding-bottom: 56.25%;
|
|
5399
|
+
padding-bottom: calc(9 / 16 * 100%);
|
|
5311
5400
|
}
|
|
5312
5401
|
html:not(#__):not(#___) .cadmin .card-type-template .aspect-ratio .lexicon-icon {
|
|
5313
5402
|
height: auto;
|
|
@@ -5328,12 +5417,10 @@ html:not(#__):not(#___) .cadmin .template-card .card-body {
|
|
|
5328
5417
|
padding-top: 0;
|
|
5329
5418
|
text-align: center;
|
|
5330
5419
|
}
|
|
5331
|
-
html:not(#__):not(#___) .cadmin .template-card-horizontal
|
|
5332
|
-
html:not(#__):not(#___) .cadmin .template-card-horizontal .card {
|
|
5420
|
+
html:not(#__):not(#___) .cadmin .template-card-horizontal {
|
|
5333
5421
|
color: #6b6c7e;
|
|
5334
5422
|
}
|
|
5335
|
-
html:not(#__):not(#___) .cadmin .template-card-horizontal.card
|
|
5336
|
-
html:not(#__):not(#___) .cadmin .template-card-horizontal .card:hover {
|
|
5423
|
+
html:not(#__):not(#___) .cadmin .template-card-horizontal:hover, html:not(#__):not(#___) .cadmin .template-card-horizontal.hover {
|
|
5337
5424
|
color: #6b6c7e;
|
|
5338
5425
|
}
|
|
5339
5426
|
html:not(#__):not(#___) .cadmin .template-card-horizontal .sticker {
|
|
@@ -5368,6 +5455,7 @@ html:not(#__):not(#___) .cadmin .dropdown-header {
|
|
|
5368
5455
|
padding-right: 20px;
|
|
5369
5456
|
padding-top: 6px;
|
|
5370
5457
|
position: relative;
|
|
5458
|
+
overflow-wrap: break-word;
|
|
5371
5459
|
word-wrap: break-word;
|
|
5372
5460
|
}
|
|
5373
5461
|
html:not(#__):not(#___) .cadmin .dropdown-header:first-child {
|
|
@@ -5384,6 +5472,7 @@ html:not(#__):not(#___) .cadmin .dropdown-subheader {
|
|
|
5384
5472
|
padding-top: 6px;
|
|
5385
5473
|
text-transform: uppercase;
|
|
5386
5474
|
white-space: normal;
|
|
5475
|
+
overflow-wrap: break-word;
|
|
5387
5476
|
word-wrap: break-word;
|
|
5388
5477
|
}
|
|
5389
5478
|
html:not(#__):not(#___) .cadmin .dropdown-subheader:first-child {
|
|
@@ -5394,6 +5483,7 @@ html:not(#__):not(#___) .cadmin .dropdown-caption {
|
|
|
5394
5483
|
font-size: 14px;
|
|
5395
5484
|
padding: 8px 20px;
|
|
5396
5485
|
white-space: normal;
|
|
5486
|
+
overflow-wrap: break-word;
|
|
5397
5487
|
word-wrap: break-word;
|
|
5398
5488
|
}
|
|
5399
5489
|
html:not(#__):not(#___) .cadmin .dropdown-item {
|
|
@@ -5404,6 +5494,7 @@ html:not(#__):not(#___) .cadmin .dropdown-item {
|
|
|
5404
5494
|
color: #6b6c7e;
|
|
5405
5495
|
cursor: pointer;
|
|
5406
5496
|
display: block;
|
|
5497
|
+
font-size: inherit;
|
|
5407
5498
|
font-weight: 400;
|
|
5408
5499
|
overflow: hidden;
|
|
5409
5500
|
padding-bottom: 8px;
|
|
@@ -5417,7 +5508,6 @@ html:not(#__):not(#___) .cadmin .dropdown-item {
|
|
|
5417
5508
|
width: 100%;
|
|
5418
5509
|
overflow-wrap: break-word;
|
|
5419
5510
|
word-wrap: break-word;
|
|
5420
|
-
font-size: inherit;
|
|
5421
5511
|
}
|
|
5422
5512
|
html:not(#__):not(#___) .cadmin .dropdown-item:hover {
|
|
5423
5513
|
background-color: #f0f5ff;
|
|
@@ -5426,10 +5516,10 @@ html:not(#__):not(#___) .cadmin .dropdown-item:hover {
|
|
|
5426
5516
|
}
|
|
5427
5517
|
html:not(#__):not(#___) .cadmin .dropdown-item:focus {
|
|
5428
5518
|
background-color: #f0f5ff;
|
|
5429
|
-
color: #272833;
|
|
5430
|
-
text-decoration: none;
|
|
5431
5519
|
box-shadow: inset 0 0 0 2px #80acff, inset 0 0 0 4px #fff;
|
|
5520
|
+
color: #272833;
|
|
5432
5521
|
outline: 0;
|
|
5522
|
+
text-decoration: none;
|
|
5433
5523
|
}
|
|
5434
5524
|
html:not(#__):not(#___) .cadmin .dropdown-item:active {
|
|
5435
5525
|
background-color: #f0f5ff;
|
|
@@ -5467,11 +5557,11 @@ html:not(#__):not(#___) .cadmin .dropdown-item.btn:not([disabled]):not(.disabled
|
|
|
5467
5557
|
}
|
|
5468
5558
|
html:not(#__):not(#___) .cadmin .dropdown-item:disabled, html:not(#__):not(#___) .cadmin .dropdown-item.disabled {
|
|
5469
5559
|
background-color: transparent;
|
|
5560
|
+
box-shadow: none;
|
|
5470
5561
|
color: #a7a9bc;
|
|
5471
5562
|
cursor: not-allowed;
|
|
5472
5563
|
opacity: 1;
|
|
5473
5564
|
outline: 0;
|
|
5474
|
-
box-shadow: none;
|
|
5475
5565
|
}
|
|
5476
5566
|
html:not(#__):not(#___) .cadmin .dropdown-item:disabled label,
|
|
5477
5567
|
html:not(#__):not(#___) .cadmin .dropdown-item:disabled .form-check-label, html:not(#__):not(#___) .cadmin .dropdown-item.disabled label,
|
|
@@ -5493,8 +5583,8 @@ html:not(#__):not(#___) .cadmin .dropdown-item .c-inner {
|
|
|
5493
5583
|
width: auto;
|
|
5494
5584
|
}
|
|
5495
5585
|
html:not(#__):not(#___) .cadmin .dropdown-item .c-kbd-inline {
|
|
5496
|
-
line-height: 21px;
|
|
5497
5586
|
color: #a7a9bc;
|
|
5587
|
+
line-height: 21px;
|
|
5498
5588
|
}
|
|
5499
5589
|
html:not(#__):not(#___) .cadmin .dropdown-item .form-check-label {
|
|
5500
5590
|
font-weight: 400;
|
|
@@ -5562,17 +5652,12 @@ html:not(#__):not(#___) .cadmin .dropdown-menu, html:not(#__):not(#___) .cadmin.
|
|
|
5562
5652
|
min-height: 40px;
|
|
5563
5653
|
min-width: 240px;
|
|
5564
5654
|
overflow: auto;
|
|
5565
|
-
padding: 6px 0
|
|
5655
|
+
padding: 6px 0;
|
|
5566
5656
|
position: absolute;
|
|
5567
5657
|
text-align: left;
|
|
5568
5658
|
top: 100%;
|
|
5569
5659
|
z-index: 1000;
|
|
5570
5660
|
}
|
|
5571
|
-
html:not(#__):not(#___) .cadmin .dropdown-menu::after, html:not(#__):not(#___) .cadmin.dropdown-menu::after {
|
|
5572
|
-
content: "";
|
|
5573
|
-
display: block;
|
|
5574
|
-
padding-top: 6px;
|
|
5575
|
-
}
|
|
5576
5661
|
@media (max-width: 991.98px) {
|
|
5577
5662
|
html:not(#__):not(#___) .cadmin .dropdown-menu, html:not(#__):not(#___) .cadmin.dropdown-menu {
|
|
5578
5663
|
max-height: 295px;
|
|
@@ -5685,22 +5770,20 @@ html:not(#__):not(#___) .cadmin .dropdown-action > .dropdown-toggle {
|
|
|
5685
5770
|
border-radius: 4px;
|
|
5686
5771
|
cursor: pointer;
|
|
5687
5772
|
display: flex;
|
|
5688
|
-
height: 32px;
|
|
5689
|
-
line-height: 32px;
|
|
5690
|
-
width: 32px;
|
|
5691
5773
|
font-size: inherit;
|
|
5692
5774
|
font-weight: inherit;
|
|
5775
|
+
height: 32px;
|
|
5693
5776
|
justify-content: center;
|
|
5694
5777
|
line-height: inherit;
|
|
5695
5778
|
padding: 0;
|
|
5696
5779
|
text-transform: inherit;
|
|
5697
5780
|
vertical-align: baseline;
|
|
5781
|
+
width: 32px;
|
|
5698
5782
|
}
|
|
5699
5783
|
html:not(#__):not(#___) .cadmin .dropdown-action > .dropdown-toggle:disabled, html:not(#__):not(#___) .cadmin .dropdown-action > .dropdown-toggle.disabled {
|
|
5700
5784
|
cursor: not-allowed;
|
|
5701
5785
|
opacity: 0.4;
|
|
5702
5786
|
}
|
|
5703
|
-
html:not(#__):not(#___) .cadmin .dropdown-action > .dropdown-toggle .inline-item .lexicon-icon,
|
|
5704
5787
|
html:not(#__):not(#___) .cadmin .dropdown-action > .dropdown-toggle .lexicon-icon {
|
|
5705
5788
|
margin-top: 0;
|
|
5706
5789
|
}
|
|
@@ -5966,7 +6049,6 @@ html:not(#__):not(#___) .cadmin .dropdown-menu-autocomplete {
|
|
|
5966
6049
|
max-height: 160px;
|
|
5967
6050
|
max-width: none;
|
|
5968
6051
|
width: 100%;
|
|
5969
|
-
padding-bottom: 0;
|
|
5970
6052
|
}
|
|
5971
6053
|
html:not(#__):not(#___) .cadmin [type=checkbox] {
|
|
5972
6054
|
cursor: pointer;
|
|
@@ -6256,7 +6338,7 @@ html:not(#__):not(#___) .cadmin .form-control-inset::-ms-clear, html:not(#__):no
|
|
|
6256
6338
|
width: 0;
|
|
6257
6339
|
}
|
|
6258
6340
|
html:not(#__):not(#___) .cadmin select.form-control {
|
|
6259
|
-
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='
|
|
6341
|
+
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");
|
|
6260
6342
|
background-position: right 0.5em center;
|
|
6261
6343
|
background-repeat: no-repeat;
|
|
6262
6344
|
background-size: 1.5em 1.5em;
|
|
@@ -6265,10 +6347,10 @@ html:not(#__):not(#___) .cadmin select.form-control {
|
|
|
6265
6347
|
color: #272833;
|
|
6266
6348
|
}
|
|
6267
6349
|
html:not(#__):not(#___) .cadmin select.form-control:focus, html:not(#__):not(#___) .cadmin select.form-control.focus {
|
|
6268
|
-
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='
|
|
6350
|
+
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");
|
|
6269
6351
|
}
|
|
6270
6352
|
html:not(#__):not(#___) .cadmin select.form-control:disabled, html:not(#__):not(#___) .cadmin select.form-control.disabled {
|
|
6271
|
-
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='
|
|
6353
|
+
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='%23a7a9bc'/%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='%23a7a9bc'/%3E%3C/svg%3E");
|
|
6272
6354
|
}
|
|
6273
6355
|
html:not(#__):not(#___) .cadmin select.form-control:disabled > option, html:not(#__):not(#___) .cadmin select.form-control.disabled > option {
|
|
6274
6356
|
cursor: not-allowed;
|
|
@@ -6288,7 +6370,7 @@ html:not(#__):not(#___) .cadmin select.form-control:focus::-ms-value {
|
|
|
6288
6370
|
color: inherit;
|
|
6289
6371
|
}
|
|
6290
6372
|
html:not(#__):not(#___) .cadmin .form-control-select {
|
|
6291
|
-
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='
|
|
6373
|
+
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");
|
|
6292
6374
|
background-position: right 0.5em center;
|
|
6293
6375
|
background-repeat: no-repeat;
|
|
6294
6376
|
background-size: 1.5em 1.5em;
|
|
@@ -6302,7 +6384,7 @@ html:not(#__):not(#___) .cadmin .form-control-select:hover {
|
|
|
6302
6384
|
text-decoration: none;
|
|
6303
6385
|
}
|
|
6304
6386
|
html:not(#__):not(#___) .cadmin .form-control-select:focus {
|
|
6305
|
-
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='
|
|
6387
|
+
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");
|
|
6306
6388
|
}
|
|
6307
6389
|
html:not(#__):not(#___) .cadmin select.form-control[size] {
|
|
6308
6390
|
background-image: none;
|
|
@@ -6315,8 +6397,24 @@ html:not(#__):not(#___) .cadmin select.form-control[size] {
|
|
|
6315
6397
|
html:not(#__):not(#___) .cadmin select.form-control[size]:focus, html:not(#__):not(#___) .cadmin select.form-control[size].focus {
|
|
6316
6398
|
background-image: none;
|
|
6317
6399
|
}
|
|
6400
|
+
html:not(#__):not(#___) .cadmin select.form-control[size]:focus > option:checked, html:not(#__):not(#___) .cadmin select.form-control[size].focus > option:checked {
|
|
6401
|
+
background-image: linear-gradient(#ffa700, #ffa700);
|
|
6402
|
+
filter: invert(100%);
|
|
6403
|
+
}
|
|
6318
6404
|
html:not(#__):not(#___) .cadmin select.form-control[size] option {
|
|
6319
|
-
padding:
|
|
6405
|
+
padding: 7px 8px;
|
|
6406
|
+
}
|
|
6407
|
+
html:not(#__):not(#___) .cadmin select.form-control[size] option:checked {
|
|
6408
|
+
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
6409
|
+
}
|
|
6410
|
+
@-moz-document url-prefix() {
|
|
6411
|
+
html:not(#__):not(#___) .cadmin select.form-control[size]:focus > option:checked, html:not(#__):not(#___) .cadmin select.form-control[size].focus > option:checked {
|
|
6412
|
+
background-image: linear-gradient(#004ad7, #004ad7);
|
|
6413
|
+
filter: invert(0);
|
|
6414
|
+
}
|
|
6415
|
+
html:not(#__):not(#___) .cadmin select.form-control[size] option {
|
|
6416
|
+
padding: 0.40625rem 0.5rem;
|
|
6417
|
+
}
|
|
6320
6418
|
}
|
|
6321
6419
|
html:not(#__):not(#___) .cadmin select.form-control[multiple] {
|
|
6322
6420
|
background-image: none;
|
|
@@ -6329,8 +6427,24 @@ html:not(#__):not(#___) .cadmin select.form-control[multiple] {
|
|
|
6329
6427
|
html:not(#__):not(#___) .cadmin select.form-control[multiple]:focus, html:not(#__):not(#___) .cadmin select.form-control[multiple].focus {
|
|
6330
6428
|
background-image: none;
|
|
6331
6429
|
}
|
|
6430
|
+
html:not(#__):not(#___) .cadmin select.form-control[multiple]:focus > option:checked, html:not(#__):not(#___) .cadmin select.form-control[multiple].focus > option:checked {
|
|
6431
|
+
background-image: linear-gradient(#ffa700, #ffa700);
|
|
6432
|
+
filter: invert(100%);
|
|
6433
|
+
}
|
|
6332
6434
|
html:not(#__):not(#___) .cadmin select.form-control[multiple] option {
|
|
6333
|
-
padding:
|
|
6435
|
+
padding: 7px 8px;
|
|
6436
|
+
}
|
|
6437
|
+
html:not(#__):not(#___) .cadmin select.form-control[multiple] option:checked {
|
|
6438
|
+
background-image: linear-gradient(#e7e7ed, #e7e7ed);
|
|
6439
|
+
}
|
|
6440
|
+
@-moz-document url-prefix() {
|
|
6441
|
+
html:not(#__):not(#___) .cadmin select.form-control[multiple]:focus > option:checked, html:not(#__):not(#___) .cadmin select.form-control[multiple].focus > option:checked {
|
|
6442
|
+
background-image: linear-gradient(#004ad7, #004ad7);
|
|
6443
|
+
filter: invert(0);
|
|
6444
|
+
}
|
|
6445
|
+
html:not(#__):not(#___) .cadmin select.form-control[multiple] option {
|
|
6446
|
+
padding: 0.40625rem 0.5rem;
|
|
6447
|
+
}
|
|
6334
6448
|
}
|
|
6335
6449
|
html:not(#__):not(#___) .cadmin textarea.form-control,
|
|
6336
6450
|
html:not(#__):not(#___) .cadmin textarea.form-control-plaintext,
|
|
@@ -6705,10 +6819,6 @@ html:not(#__):not(#___) .cadmin .link-outline-primary:hover {
|
|
|
6705
6819
|
background-color: #f0f5ff;
|
|
6706
6820
|
color: #0b5fff;
|
|
6707
6821
|
}
|
|
6708
|
-
buttonhtml:not(#__):not(#___) .cadmin .link-outline-primary:focus {
|
|
6709
|
-
outline: 0;
|
|
6710
|
-
}
|
|
6711
|
-
|
|
6712
6822
|
html:not(#__):not(#___) .cadmin .link-outline-primary:focus {
|
|
6713
6823
|
background-color: #f0f5ff;
|
|
6714
6824
|
color: #0b5fff;
|
|
@@ -6722,10 +6832,6 @@ html:not(#__):not(#___) .cadmin .link-outline-primary.active {
|
|
|
6722
6832
|
background-color: #e6edf8;
|
|
6723
6833
|
color: #0b5fff;
|
|
6724
6834
|
}
|
|
6725
|
-
html:not(#__):not(#___) .cadmin .link-outline-primary[aria-expanded=true], html:not(#__):not(#___) .cadmin .link-outline-primary.show, .show > html:not(#__):not(#___) .cadmin .link-outline-primary {
|
|
6726
|
-
background-color: #e6edf8;
|
|
6727
|
-
color: #0b5fff;
|
|
6728
|
-
}
|
|
6729
6835
|
html:not(#__):not(#___) .cadmin .link-outline-primary:disabled, html:not(#__):not(#___) .cadmin .link-outline-primary.disabled {
|
|
6730
6836
|
background-color: transparent;
|
|
6731
6837
|
box-shadow: none;
|
|
@@ -6733,6 +6839,13 @@ html:not(#__):not(#___) .cadmin .link-outline-primary:disabled, html:not(#__):no
|
|
|
6733
6839
|
cursor: not-allowed;
|
|
6734
6840
|
opacity: 0.4;
|
|
6735
6841
|
}
|
|
6842
|
+
html:not(#__):not(#___) .cadmin .link-outline-primary[type]:focus {
|
|
6843
|
+
outline: 0;
|
|
6844
|
+
}
|
|
6845
|
+
html:not(#__):not(#___) .cadmin .link-outline-primary[aria-expanded=true], html:not(#__):not(#___) .cadmin .link-outline-primary.show, .show > html:not(#__):not(#___) .cadmin .link-outline-primary {
|
|
6846
|
+
background-color: #e6edf8;
|
|
6847
|
+
color: #0b5fff;
|
|
6848
|
+
}
|
|
6736
6849
|
html:not(#__):not(#___) .cadmin .link-outline-secondary {
|
|
6737
6850
|
border-color: #cdced9;
|
|
6738
6851
|
color: #6b6c7e;
|
|
@@ -6741,10 +6854,6 @@ html:not(#__):not(#___) .cadmin .link-outline-secondary:hover {
|
|
|
6741
6854
|
background-color: rgba(39, 40, 51, 0.03);
|
|
6742
6855
|
color: #272833;
|
|
6743
6856
|
}
|
|
6744
|
-
buttonhtml:not(#__):not(#___) .cadmin .link-outline-secondary:focus {
|
|
6745
|
-
outline: 0;
|
|
6746
|
-
}
|
|
6747
|
-
|
|
6748
6857
|
html:not(#__):not(#___) .cadmin .link-outline-secondary:focus {
|
|
6749
6858
|
background-color: rgba(39, 40, 51, 0.03);
|
|
6750
6859
|
color: #272833;
|
|
@@ -6758,10 +6867,6 @@ html:not(#__):not(#___) .cadmin .link-outline-secondary.active {
|
|
|
6758
6867
|
background-color: rgba(39, 40, 51, 0.06);
|
|
6759
6868
|
color: #272833;
|
|
6760
6869
|
}
|
|
6761
|
-
html:not(#__):not(#___) .cadmin .link-outline-secondary[aria-expanded=true], html:not(#__):not(#___) .cadmin .link-outline-secondary.show, .show > html:not(#__):not(#___) .cadmin .link-outline-secondary {
|
|
6762
|
-
background-color: rgba(39, 40, 51, 0.06);
|
|
6763
|
-
color: #272833;
|
|
6764
|
-
}
|
|
6765
6870
|
html:not(#__):not(#___) .cadmin .link-outline-secondary:disabled, html:not(#__):not(#___) .cadmin .link-outline-secondary.disabled {
|
|
6766
6871
|
background-color: transparent;
|
|
6767
6872
|
box-shadow: none;
|
|
@@ -6769,6 +6874,13 @@ html:not(#__):not(#___) .cadmin .link-outline-secondary:disabled, html:not(#__):
|
|
|
6769
6874
|
cursor: not-allowed;
|
|
6770
6875
|
opacity: 0.4;
|
|
6771
6876
|
}
|
|
6877
|
+
html:not(#__):not(#___) .cadmin .link-outline-secondary[type]:focus {
|
|
6878
|
+
outline: 0;
|
|
6879
|
+
}
|
|
6880
|
+
html:not(#__):not(#___) .cadmin .link-outline-secondary[aria-expanded=true], html:not(#__):not(#___) .cadmin .link-outline-secondary.show, .show > html:not(#__):not(#___) .cadmin .link-outline-secondary {
|
|
6881
|
+
background-color: rgba(39, 40, 51, 0.06);
|
|
6882
|
+
color: #272833;
|
|
6883
|
+
}
|
|
6772
6884
|
html:not(#__):not(#___) .cadmin .link-outline-borderless {
|
|
6773
6885
|
border-color: transparent;
|
|
6774
6886
|
}
|
|
@@ -6791,6 +6903,9 @@ html:not(#__):not(#___) .cadmin .link-monospaced > .c-inner {
|
|
|
6791
6903
|
margin-right: 0;
|
|
6792
6904
|
margin-top: 0;
|
|
6793
6905
|
}
|
|
6906
|
+
html:not(#__):not(#___) .cadmin .link-monospaced .lexicon-icon {
|
|
6907
|
+
margin-top: 0;
|
|
6908
|
+
}
|
|
6794
6909
|
html:not(#__):not(#___) .cadmin .component-title {
|
|
6795
6910
|
color: #272833;
|
|
6796
6911
|
font-size: 16px;
|
|
@@ -6867,10 +6982,6 @@ html:not(#__):not(#___) .cadmin .component-action:hover {
|
|
|
6867
6982
|
background-color: rgba(39, 40, 51, 0.03);
|
|
6868
6983
|
color: #272833;
|
|
6869
6984
|
}
|
|
6870
|
-
buttonhtml:not(#__):not(#___) .cadmin .component-action:focus {
|
|
6871
|
-
outline: 0;
|
|
6872
|
-
}
|
|
6873
|
-
|
|
6874
6985
|
html:not(#__):not(#___) .cadmin .component-action:focus {
|
|
6875
6986
|
background-color: rgba(39, 40, 51, 0.03);
|
|
6876
6987
|
color: #272833;
|
|
@@ -6884,10 +6995,6 @@ html:not(#__):not(#___) .cadmin .component-action.active {
|
|
|
6884
6995
|
background-color: rgba(39, 40, 51, 0.06);
|
|
6885
6996
|
color: #272833;
|
|
6886
6997
|
}
|
|
6887
|
-
html:not(#__):not(#___) .cadmin .component-action[aria-expanded=true], html:not(#__):not(#___) .cadmin .component-action.show, .show > html:not(#__):not(#___) .cadmin .component-action {
|
|
6888
|
-
background-color: rgba(39, 40, 51, 0.06);
|
|
6889
|
-
color: #272833;
|
|
6890
|
-
}
|
|
6891
6998
|
html:not(#__):not(#___) .cadmin .component-action:disabled, html:not(#__):not(#___) .cadmin .component-action.disabled {
|
|
6892
6999
|
background-color: transparent;
|
|
6893
7000
|
box-shadow: none;
|
|
@@ -6898,6 +7005,13 @@ html:not(#__):not(#___) .cadmin .component-action:disabled, html:not(#__):not(#_
|
|
|
6898
7005
|
html:not(#__):not(#___) .cadmin .component-action:disabled:active, html:not(#__):not(#___) .cadmin .component-action.disabled:active {
|
|
6899
7006
|
pointer-events: none;
|
|
6900
7007
|
}
|
|
7008
|
+
html:not(#__):not(#___) .cadmin .component-action[type]:focus {
|
|
7009
|
+
outline: 0;
|
|
7010
|
+
}
|
|
7011
|
+
html:not(#__):not(#___) .cadmin .component-action[aria-expanded=true], html:not(#__):not(#___) .cadmin .component-action.show, .show > html:not(#__):not(#___) .cadmin .component-action {
|
|
7012
|
+
background-color: rgba(39, 40, 51, 0.06);
|
|
7013
|
+
color: #272833;
|
|
7014
|
+
}
|
|
6901
7015
|
html:not(#__):not(#___) .cadmin .component-action .lexicon-icon {
|
|
6902
7016
|
margin-top: 0;
|
|
6903
7017
|
}
|
|
@@ -7245,10 +7359,6 @@ html:not(#__):not(#___) .cadmin .clay-color-dropdown-menu {
|
|
|
7245
7359
|
padding-right: 16px;
|
|
7246
7360
|
padding-top: 16px;
|
|
7247
7361
|
width: 272px;
|
|
7248
|
-
padding-bottom: 0;
|
|
7249
|
-
}
|
|
7250
|
-
html:not(#__):not(#___) .cadmin .clay-color-dropdown-menu::after {
|
|
7251
|
-
padding-top: 0;
|
|
7252
7362
|
}
|
|
7253
7363
|
html:not(#__):not(#___) .cadmin .clay-color-dropdown-menu .close {
|
|
7254
7364
|
color: #6b6c7e;
|
|
@@ -7552,50 +7662,50 @@ html:not(#__):not(#___) .cadmin .custom-control-input {
|
|
|
7552
7662
|
z-index: 1;
|
|
7553
7663
|
}
|
|
7554
7664
|
html:not(#__):not(#___) .cadmin .custom-control-input:focus ~ .custom-control-label::before {
|
|
7555
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
7556
|
-
}
|
|
7557
|
-
html:not(#__):not(#___) .cadmin .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
|
|
7558
7665
|
border-color: #cdced9;
|
|
7666
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
7559
7667
|
}
|
|
7560
7668
|
html:not(#__):not(#___) .cadmin .custom-control-input:active ~ .custom-control-label::before {
|
|
7561
7669
|
background-color: #fff;
|
|
7562
7670
|
border-color: #cdced9;
|
|
7563
|
-
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
|
7564
|
-
color: #fff;
|
|
7565
|
-
}
|
|
7566
|
-
html:not(#__):not(#___) .cadmin .custom-control-input:active:checked ~ .custom-control-label::before {
|
|
7567
|
-
background-color: #0b5fff;
|
|
7568
|
-
border-color: #0b5fff;
|
|
7569
|
-
}
|
|
7570
|
-
html:not(#__):not(#___) .cadmin .custom-control-input:checked ~ .custom-control-label::before {
|
|
7571
|
-
background-color: #0b5fff;
|
|
7572
|
-
border-color: #0b5fff;
|
|
7573
|
-
box-shadow: none;
|
|
7671
|
+
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
7574
7672
|
color: #fff;
|
|
7575
7673
|
}
|
|
7576
7674
|
html:not(#__):not(#___) .cadmin .custom-control-input[disabled], html:not(#__):not(#___) .cadmin .custom-control-input:disabled {
|
|
7577
7675
|
cursor: not-allowed;
|
|
7578
7676
|
}
|
|
7677
|
+
html:not(#__):not(#___) .cadmin .custom-control-input[disabled] ~ .custom-control-label, html:not(#__):not(#___) .cadmin .custom-control-input:disabled ~ .custom-control-label {
|
|
7678
|
+
color: #a7a9bc;
|
|
7679
|
+
cursor: not-allowed;
|
|
7680
|
+
}
|
|
7579
7681
|
html:not(#__):not(#___) .cadmin .custom-control-input[disabled] ~ .custom-control-label::before, html:not(#__):not(#___) .cadmin .custom-control-input:disabled ~ .custom-control-label::before {
|
|
7580
7682
|
background-color: #f1f2f5;
|
|
7581
7683
|
border-color: #f1f2f5;
|
|
7582
7684
|
box-shadow: none;
|
|
7583
7685
|
}
|
|
7584
|
-
html:not(#__):not(#___) .cadmin .custom-control-input
|
|
7585
|
-
color: #
|
|
7586
|
-
|
|
7686
|
+
html:not(#__):not(#___) .cadmin .custom-control-input:checked ~ .custom-control-label::before {
|
|
7687
|
+
background-color: #0b5fff;
|
|
7688
|
+
border-color: #0b5fff;
|
|
7689
|
+
color: #fff;
|
|
7690
|
+
}
|
|
7691
|
+
html:not(#__):not(#___) .cadmin .custom-control-input:checked:active ~ .custom-control-label::before {
|
|
7692
|
+
background-color: #0b5fff;
|
|
7693
|
+
border-color: #0b5fff;
|
|
7587
7694
|
}
|
|
7588
|
-
html:not(#__):not(#___) .cadmin .custom-control-input:disabled:checked ~ .custom-control-label::before {
|
|
7695
|
+
html:not(#__):not(#___) .cadmin .custom-control-input:checked[disabled] ~ .custom-control-label::before, html:not(#__):not(#___) .cadmin .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
7589
7696
|
background-color: #b3cdff;
|
|
7590
7697
|
border-color: #b3cdff;
|
|
7591
7698
|
}
|
|
7592
|
-
html:not(#__):not(#___) .cadmin .custom-
|
|
7593
|
-
|
|
7699
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input ~ .custom-control-label::before {
|
|
7700
|
+
border-radius: 2px;
|
|
7594
7701
|
}
|
|
7595
7702
|
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
|
|
7596
7703
|
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");
|
|
7597
7704
|
background-size: 100%;
|
|
7598
7705
|
}
|
|
7706
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked[disabled] ~ .custom-control-label::before, html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
7707
|
+
background-color: #b3cdff;
|
|
7708
|
+
}
|
|
7599
7709
|
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
|
|
7600
7710
|
background-color: #0b5fff;
|
|
7601
7711
|
border-color: #0b5fff;
|
|
@@ -7605,30 +7715,24 @@ html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indetermi
|
|
|
7605
7715
|
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='M384%20288H128c-42.7%200-42.7-64%200-64h256c42.7%200%2042.7%2064%200%2064z'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
7606
7716
|
background-size: 100%;
|
|
7607
7717
|
}
|
|
7608
|
-
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:disabled:
|
|
7609
|
-
background-color: #b3cdff;
|
|
7610
|
-
}
|
|
7611
|
-
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
|
|
7718
|
+
html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indeterminate[disabled] ~ .custom-control-label::before, html:not(#__):not(#___) .cadmin .custom-checkbox .custom-control-input:indeterminate:disabled ~ .custom-control-label::before {
|
|
7612
7719
|
background-color: #b3cdff;
|
|
7613
7720
|
border-color: #b3cdff;
|
|
7614
7721
|
}
|
|
7615
|
-
html:not(#__):not(#___) .cadmin .custom-
|
|
7616
|
-
border-radius:
|
|
7722
|
+
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input ~ .custom-control-label::before {
|
|
7723
|
+
border-radius: 50%;
|
|
7724
|
+
}
|
|
7725
|
+
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input[disabled] ~ .custom-control-label::before, html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:disabled ~ .custom-control-label::before {
|
|
7726
|
+
border-color: #f1f2f5;
|
|
7617
7727
|
}
|
|
7618
7728
|
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
|
|
7619
7729
|
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");
|
|
7620
7730
|
background-size: 50%;
|
|
7621
7731
|
}
|
|
7622
|
-
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:disabled ~ .custom-control-label::before {
|
|
7623
|
-
border-color: #f1f2f5;
|
|
7624
|
-
}
|
|
7625
|
-
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
|
|
7732
|
+
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:checked[disabled] ~ .custom-control-label::before, html:not(#__):not(#___) .cadmin .custom-radio .custom-control-input:checked:disabled ~ .custom-control-label::before {
|
|
7626
7733
|
background-color: #b3cdff;
|
|
7627
7734
|
border-color: #b3cdff;
|
|
7628
7735
|
}
|
|
7629
|
-
html:not(#__):not(#___) .cadmin .custom-radio .custom-control-label::before {
|
|
7630
|
-
border-radius: 50%;
|
|
7631
|
-
}
|
|
7632
7736
|
html:not(#__):not(#___) .cadmin .custom-control-inline {
|
|
7633
7737
|
display: inline-flex;
|
|
7634
7738
|
}
|
|
@@ -7763,10 +7867,6 @@ html:not(#__):not(#___) .cadmin .date-picker-dropdown-menu {
|
|
|
7763
7867
|
padding-right: 0;
|
|
7764
7868
|
padding-top: 0;
|
|
7765
7869
|
width: 100%;
|
|
7766
|
-
padding-bottom: 0;
|
|
7767
|
-
}
|
|
7768
|
-
html:not(#__):not(#___) .cadmin .date-picker-dropdown-menu::after {
|
|
7769
|
-
padding-top: 0;
|
|
7770
7870
|
}
|
|
7771
7871
|
html:not(#__):not(#___) .cadmin .date-picker-nav {
|
|
7772
7872
|
display: flex;
|
|
@@ -8022,12 +8122,14 @@ html:not(#__):not(#___) .cadmin .clay-dual-listbox-actions {
|
|
|
8022
8122
|
}
|
|
8023
8123
|
html:not(#__):not(#___) .cadmin .form-feedback-group {
|
|
8024
8124
|
width: 100%;
|
|
8125
|
+
overflow-wrap: break-word;
|
|
8025
8126
|
word-wrap: break-word;
|
|
8026
8127
|
}
|
|
8027
8128
|
html:not(#__):not(#___) .cadmin .form-feedback-item {
|
|
8028
8129
|
font-size: 0.875rem;
|
|
8029
8130
|
font-weight: 600;
|
|
8030
8131
|
margin-top: 0.25rem;
|
|
8132
|
+
overflow-wrap: break-word;
|
|
8031
8133
|
word-wrap: break-word;
|
|
8032
8134
|
}
|
|
8033
8135
|
html:not(#__):not(#___) .cadmin .form-feedback-indicator {
|
|
@@ -8043,6 +8145,7 @@ html:not(#__):not(#___) .cadmin .form-text {
|
|
|
8043
8145
|
font-size: 14px;
|
|
8044
8146
|
font-weight: 600;
|
|
8045
8147
|
margin-top: 4px;
|
|
8148
|
+
overflow-wrap: break-word;
|
|
8046
8149
|
word-wrap: break-word;
|
|
8047
8150
|
}
|
|
8048
8151
|
html:not(#__):not(#___) .cadmin .has-error .custom-control-label,
|
|
@@ -8069,7 +8172,7 @@ html:not(#__):not(#___) .cadmin .has-error .form-feedback-item {
|
|
|
8069
8172
|
color: #da1414;
|
|
8070
8173
|
}
|
|
8071
8174
|
html:not(#__):not(#___) .cadmin .has-error select.form-control {
|
|
8072
|
-
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='
|
|
8175
|
+
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");
|
|
8073
8176
|
color: #272833;
|
|
8074
8177
|
}
|
|
8075
8178
|
html:not(#__):not(#___) .cadmin .has-error select.form-control[size] {
|
|
@@ -8083,23 +8186,26 @@ html:not(#__):not(#___) .cadmin .has-error select.form-control[multiple] {
|
|
|
8083
8186
|
html:not(#__):not(#___) .cadmin .has-error .input-group-item.focus {
|
|
8084
8187
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
8085
8188
|
}
|
|
8086
|
-
html:not(#__):not(#___) .cadmin .has-error .input-group-item.focus .
|
|
8087
|
-
html:not(#__):not(#___) .cadmin .has-error .input-group-item.focus .input-group-inset-item {
|
|
8189
|
+
html:not(#__):not(#___) .cadmin .has-error .input-group-item.focus .input-group-inset {
|
|
8088
8190
|
background-color: #feefef;
|
|
8089
8191
|
border-color: #f48989;
|
|
8090
8192
|
}
|
|
8091
|
-
html:not(#__):not(#___) .cadmin .has-error .input-group-item .input-group-inset
|
|
8092
|
-
box-shadow: none;
|
|
8093
|
-
}
|
|
8094
|
-
html:not(#__):not(#___) .cadmin .has-error .input-group-item .input-group-inset:focus ~ .input-group-inset-item {
|
|
8193
|
+
html:not(#__):not(#___) .cadmin .has-error .input-group-item.focus .input-group-inset ~ .input-group-inset-item {
|
|
8095
8194
|
background-color: #feefef;
|
|
8096
8195
|
border-color: #f48989;
|
|
8097
8196
|
}
|
|
8098
|
-
html:not(#__):not(#___) .cadmin .has-error .input-group .input-group-inset-item {
|
|
8197
|
+
html:not(#__):not(#___) .cadmin .has-error .input-group-item .input-group-inset ~ .input-group-inset-item {
|
|
8099
8198
|
background-color: #feefef;
|
|
8100
8199
|
border-color: #f48989;
|
|
8101
8200
|
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
8102
8201
|
}
|
|
8202
|
+
html:not(#__):not(#___) .cadmin .has-error .input-group-item .input-group-inset:focus {
|
|
8203
|
+
box-shadow: none;
|
|
8204
|
+
}
|
|
8205
|
+
html:not(#__):not(#___) .cadmin .has-error .input-group-item .input-group-inset:focus ~ .input-group-inset-item {
|
|
8206
|
+
background-color: #feefef;
|
|
8207
|
+
border-color: #f48989;
|
|
8208
|
+
}
|
|
8103
8209
|
html:not(#__):not(#___) .cadmin .has-warning .custom-control-label,
|
|
8104
8210
|
html:not(#__):not(#___) .cadmin .has-warning .form-check-label {
|
|
8105
8211
|
color: #b95000;
|
|
@@ -8124,7 +8230,7 @@ html:not(#__):not(#___) .cadmin .has-warning .form-feedback-item {
|
|
|
8124
8230
|
color: #b95000;
|
|
8125
8231
|
}
|
|
8126
8232
|
html:not(#__):not(#___) .cadmin .has-warning select.form-control {
|
|
8127
|
-
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='
|
|
8233
|
+
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");
|
|
8128
8234
|
color: #272833;
|
|
8129
8235
|
}
|
|
8130
8236
|
html:not(#__):not(#___) .cadmin .has-warning select.form-control[size] {
|
|
@@ -8138,23 +8244,26 @@ html:not(#__):not(#___) .cadmin .has-warning select.form-control[multiple] {
|
|
|
8138
8244
|
html:not(#__):not(#___) .cadmin .has-warning .input-group-item.focus {
|
|
8139
8245
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
8140
8246
|
}
|
|
8141
|
-
html:not(#__):not(#___) .cadmin .has-warning .input-group-item.focus .
|
|
8142
|
-
html:not(#__):not(#___) .cadmin .has-warning .input-group-item.focus .input-group-inset-item {
|
|
8247
|
+
html:not(#__):not(#___) .cadmin .has-warning .input-group-item.focus .input-group-inset {
|
|
8143
8248
|
background-color: #fff4ec;
|
|
8144
8249
|
border-color: #ff8f39;
|
|
8145
8250
|
}
|
|
8146
|
-
html:not(#__):not(#___) .cadmin .has-warning .input-group-item .input-group-inset
|
|
8147
|
-
box-shadow: none;
|
|
8148
|
-
}
|
|
8149
|
-
html:not(#__):not(#___) .cadmin .has-warning .input-group-item .input-group-inset:focus ~ .input-group-inset-item {
|
|
8251
|
+
html:not(#__):not(#___) .cadmin .has-warning .input-group-item.focus .input-group-inset ~ .input-group-inset-item {
|
|
8150
8252
|
background-color: #fff4ec;
|
|
8151
8253
|
border-color: #ff8f39;
|
|
8152
8254
|
}
|
|
8153
|
-
html:not(#__):not(#___) .cadmin .has-warning .input-group .input-group-inset-item {
|
|
8255
|
+
html:not(#__):not(#___) .cadmin .has-warning .input-group-item .input-group-inset ~ .input-group-inset-item {
|
|
8154
8256
|
background-color: #fff4ec;
|
|
8155
8257
|
border-color: #ff8f39;
|
|
8156
8258
|
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
8157
8259
|
}
|
|
8260
|
+
html:not(#__):not(#___) .cadmin .has-warning .input-group-item .input-group-inset:focus {
|
|
8261
|
+
box-shadow: none;
|
|
8262
|
+
}
|
|
8263
|
+
html:not(#__):not(#___) .cadmin .has-warning .input-group-item .input-group-inset:focus ~ .input-group-inset-item {
|
|
8264
|
+
background-color: #fff4ec;
|
|
8265
|
+
border-color: #ff8f39;
|
|
8266
|
+
}
|
|
8158
8267
|
html:not(#__):not(#___) .cadmin .has-success .custom-control-label,
|
|
8159
8268
|
html:not(#__):not(#___) .cadmin .has-success .form-check-label {
|
|
8160
8269
|
color: #287d3c;
|
|
@@ -8179,7 +8288,7 @@ html:not(#__):not(#___) .cadmin .has-success .form-feedback-item {
|
|
|
8179
8288
|
color: #287d3c;
|
|
8180
8289
|
}
|
|
8181
8290
|
html:not(#__):not(#___) .cadmin .has-success select.form-control {
|
|
8182
|
-
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='
|
|
8291
|
+
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");
|
|
8183
8292
|
color: #272833;
|
|
8184
8293
|
}
|
|
8185
8294
|
html:not(#__):not(#___) .cadmin .has-success select.form-control[size] {
|
|
@@ -8193,22 +8302,25 @@ html:not(#__):not(#___) .cadmin .has-success select.form-control[multiple] {
|
|
|
8193
8302
|
html:not(#__):not(#___) .cadmin .has-success .input-group-item.focus {
|
|
8194
8303
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
8195
8304
|
}
|
|
8196
|
-
html:not(#__):not(#___) .cadmin .has-success .input-group-item.focus .
|
|
8197
|
-
html:not(#__):not(#___) .cadmin .has-success .input-group-item.focus .input-group-inset-item {
|
|
8305
|
+
html:not(#__):not(#___) .cadmin .has-success .input-group-item.focus .input-group-inset {
|
|
8198
8306
|
background-color: #edf9f0;
|
|
8199
8307
|
border-color: #5aca75;
|
|
8200
8308
|
}
|
|
8201
|
-
html:not(#__):not(#___) .cadmin .has-success .input-group-item .input-group-inset
|
|
8202
|
-
|
|
8309
|
+
html:not(#__):not(#___) .cadmin .has-success .input-group-item.focus .input-group-inset ~ .input-group-inset-item {
|
|
8310
|
+
background-color: #edf9f0;
|
|
8311
|
+
border-color: #5aca75;
|
|
8203
8312
|
}
|
|
8204
|
-
html:not(#__):not(#___) .cadmin .has-success .input-group-item .input-group-inset
|
|
8313
|
+
html:not(#__):not(#___) .cadmin .has-success .input-group-item .input-group-inset ~ .input-group-inset-item {
|
|
8205
8314
|
background-color: #edf9f0;
|
|
8206
8315
|
border-color: #5aca75;
|
|
8316
|
+
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
8317
|
+
}
|
|
8318
|
+
html:not(#__):not(#___) .cadmin .has-success .input-group-item .input-group-inset:focus {
|
|
8319
|
+
box-shadow: none;
|
|
8207
8320
|
}
|
|
8208
|
-
html:not(#__):not(#___) .cadmin .has-success .input-group .input-group-inset-item {
|
|
8321
|
+
html:not(#__):not(#___) .cadmin .has-success .input-group-item .input-group-inset:focus ~ .input-group-inset-item {
|
|
8209
8322
|
background-color: #edf9f0;
|
|
8210
8323
|
border-color: #5aca75;
|
|
8211
|
-
box-shadow: 0 0 rgba(0, 0, 0, 0);
|
|
8212
8324
|
}
|
|
8213
8325
|
html:not(#__):not(#___) .cadmin .input-group > .form-control,
|
|
8214
8326
|
html:not(#__):not(#___) .cadmin .input-group > .form-control-plaintext {
|
|
@@ -8242,6 +8354,26 @@ html:not(#__):not(#___) .cadmin .input-group-append > .input-group-text + .input
|
|
|
8242
8354
|
html:not(#__):not(#___) .cadmin .input-group-append > .input-group-text + .btn {
|
|
8243
8355
|
margin-left: -1px;
|
|
8244
8356
|
}
|
|
8357
|
+
html:not(#__):not(#___) .cadmin .input-group-prepend .btn,
|
|
8358
|
+
html:not(#__):not(#___) .cadmin .input-group-append .btn {
|
|
8359
|
+
z-index: 1;
|
|
8360
|
+
}
|
|
8361
|
+
html:not(#__):not(#___) .cadmin .input-group-prepend .btn:hover,
|
|
8362
|
+
html:not(#__):not(#___) .cadmin .input-group-append .btn:hover {
|
|
8363
|
+
z-index: 3;
|
|
8364
|
+
}
|
|
8365
|
+
html:not(#__):not(#___) .cadmin .input-group-prepend .btn,
|
|
8366
|
+
html:not(#__):not(#___) .cadmin .input-group-prepend .form-control,
|
|
8367
|
+
html:not(#__):not(#___) .cadmin .input-group-append .btn,
|
|
8368
|
+
html:not(#__):not(#___) .cadmin .input-group-append .form-control {
|
|
8369
|
+
position: relative;
|
|
8370
|
+
}
|
|
8371
|
+
html:not(#__):not(#___) .cadmin .input-group-prepend .btn:focus,
|
|
8372
|
+
html:not(#__):not(#___) .cadmin .input-group-prepend .form-control:focus,
|
|
8373
|
+
html:not(#__):not(#___) .cadmin .input-group-append .btn:focus,
|
|
8374
|
+
html:not(#__):not(#___) .cadmin .input-group-append .form-control:focus {
|
|
8375
|
+
z-index: 4;
|
|
8376
|
+
}
|
|
8245
8377
|
html:not(#__):not(#___) .cadmin .input-group {
|
|
8246
8378
|
align-items: stretch;
|
|
8247
8379
|
display: flex;
|
|
@@ -8249,17 +8381,6 @@ html:not(#__):not(#___) .cadmin .input-group {
|
|
|
8249
8381
|
position: relative;
|
|
8250
8382
|
width: 100%;
|
|
8251
8383
|
}
|
|
8252
|
-
html:not(#__):not(#___) .cadmin .input-group .btn {
|
|
8253
|
-
position: relative;
|
|
8254
|
-
z-index: 1;
|
|
8255
|
-
}
|
|
8256
|
-
html:not(#__):not(#___) .cadmin .input-group .btn:hover {
|
|
8257
|
-
z-index: 3;
|
|
8258
|
-
}
|
|
8259
|
-
html:not(#__):not(#___) .cadmin .input-group .btn:focus,
|
|
8260
|
-
html:not(#__):not(#___) .cadmin .input-group .form-control:focus {
|
|
8261
|
-
z-index: 4;
|
|
8262
|
-
}
|
|
8263
8384
|
html:not(#__):not(#___) .cadmin .input-group .btn-unstyled {
|
|
8264
8385
|
color: inherit;
|
|
8265
8386
|
}
|
|
@@ -10233,17 +10354,17 @@ html:not(#__):not(#___) .cadmin .nav-tabs .nav-link.active {
|
|
|
10233
10354
|
border-color: transparent transparent #fff;
|
|
10234
10355
|
color: #272833;
|
|
10235
10356
|
}
|
|
10236
|
-
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .nav-tabs .nav-link.show, .show > html:not(#__):not(#___) .cadmin .nav-tabs .nav-link {
|
|
10237
|
-
background-color: #fff;
|
|
10238
|
-
border-color: transparent transparent #fff;
|
|
10239
|
-
color: #272833;
|
|
10240
|
-
}
|
|
10241
10357
|
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link:disabled, html:not(#__):not(#___) .cadmin .nav-tabs .nav-link.disabled {
|
|
10242
10358
|
background-color: transparent;
|
|
10243
10359
|
border-color: transparent;
|
|
10244
10360
|
box-shadow: none;
|
|
10245
10361
|
color: #a7a9bc;
|
|
10246
10362
|
}
|
|
10363
|
+
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .nav-tabs .nav-link.show, .show > html:not(#__):not(#___) .cadmin .nav-tabs .nav-link {
|
|
10364
|
+
background-color: #fff;
|
|
10365
|
+
border-color: transparent transparent #fff;
|
|
10366
|
+
color: #272833;
|
|
10367
|
+
}
|
|
10247
10368
|
html:not(#__):not(#___) .cadmin .nav-tabs .nav-link > .c-inner {
|
|
10248
10369
|
margin-bottom: -4.5px;
|
|
10249
10370
|
margin-top: -4.5px;
|
|
@@ -10303,13 +10424,13 @@ html:not(#__):not(#___) .cadmin .nav-underline .nav-link:focus {
|
|
|
10303
10424
|
html:not(#__):not(#___) .cadmin .nav-underline .nav-link.active {
|
|
10304
10425
|
color: #272833;
|
|
10305
10426
|
}
|
|
10306
|
-
html:not(#__):not(#___) .cadmin .nav-underline .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .nav-underline .nav-link.show, .show > html:not(#__):not(#___) .cadmin .nav-underline .nav-link {
|
|
10307
|
-
color: #272833;
|
|
10308
|
-
}
|
|
10309
10427
|
html:not(#__):not(#___) .cadmin .nav-underline .nav-link:disabled, html:not(#__):not(#___) .cadmin .nav-underline .nav-link.disabled {
|
|
10310
10428
|
box-shadow: none;
|
|
10311
10429
|
color: #a7a9bc;
|
|
10312
10430
|
}
|
|
10431
|
+
html:not(#__):not(#___) .cadmin .nav-underline .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .nav-underline .nav-link.show, .show > html:not(#__):not(#___) .cadmin .nav-underline .nav-link {
|
|
10432
|
+
color: #272833;
|
|
10433
|
+
}
|
|
10313
10434
|
html:not(#__):not(#___) .cadmin .nav-underline .nav-link > .c-inner {
|
|
10314
10435
|
margin-bottom: -9px;
|
|
10315
10436
|
margin-top: -9px;
|
|
@@ -10474,14 +10595,14 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
|
|
|
10474
10595
|
color: #0b5fff;
|
|
10475
10596
|
font-weight: 600;
|
|
10476
10597
|
}
|
|
10477
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.show, .show > html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
10478
|
-
color: #272833;
|
|
10479
|
-
font-weight: 600;
|
|
10480
|
-
}
|
|
10481
10598
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:disabled, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled {
|
|
10482
10599
|
box-shadow: none;
|
|
10483
10600
|
color: rgba(0, 0, 0, 0.3);
|
|
10484
10601
|
}
|
|
10602
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.show, .show > html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
10603
|
+
color: #272833;
|
|
10604
|
+
font-weight: 600;
|
|
10605
|
+
}
|
|
10485
10606
|
@media (max-width: 767.98px) {
|
|
10486
10607
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
10487
10608
|
border-radius: 0;
|
|
@@ -10670,14 +10791,14 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent
|
|
|
10670
10791
|
color: #0b5fff;
|
|
10671
10792
|
font-weight: 600;
|
|
10672
10793
|
}
|
|
10673
|
-
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.show, .show > html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
10674
|
-
color: #272833;
|
|
10675
|
-
font-weight: 600;
|
|
10676
|
-
}
|
|
10677
10794
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled {
|
|
10678
10795
|
box-shadow: none;
|
|
10679
10796
|
color: rgba(0, 0, 0, 0.3);
|
|
10680
10797
|
}
|
|
10798
|
+
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.show, .show > html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
10799
|
+
color: #272833;
|
|
10800
|
+
font-weight: 600;
|
|
10801
|
+
}
|
|
10681
10802
|
@media (max-width: 991.98px) {
|
|
10682
10803
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
10683
10804
|
border-radius: 0;
|
|
@@ -13701,7 +13822,7 @@ html:not(#__):not(#___) .cadmin .panel-header.collapsed {
|
|
|
13701
13822
|
html:not(#__):not(#___) .cadmin .panel-header .collapse-icon-closed,
|
|
13702
13823
|
html:not(#__):not(#___) .cadmin .panel-header .collapse-icon-open {
|
|
13703
13824
|
font-size: 12px;
|
|
13704
|
-
top: calc(12px + (((1em * 1.2) - 1em)
|
|
13825
|
+
top: calc(12px + (((1em * 1.2) - 1em) * 0.5));
|
|
13705
13826
|
}
|
|
13706
13827
|
html:not(#__):not(#___) .cadmin .panel-header-link {
|
|
13707
13828
|
color: inherit;
|
|
@@ -14608,7 +14729,7 @@ html:not(#__):not(#___) .cadmin .sheet-subtitle.autofit-row .autofit-col {
|
|
|
14608
14729
|
html:not(#__):not(#___) .cadmin .sheet-subtitle .collapse-icon-closed,
|
|
14609
14730
|
html:not(#__):not(#___) .cadmin .sheet-subtitle .collapse-icon-open {
|
|
14610
14731
|
font-size: 12px;
|
|
14611
|
-
top: calc(8px + (((1em * 1.2) - 1em)
|
|
14732
|
+
top: calc(8px + (((1em * 1.2) - 1em) * 0.5));
|
|
14612
14733
|
}
|
|
14613
14734
|
html:not(#__):not(#___) .cadmin .sheet-subtitle .component-title,
|
|
14614
14735
|
html:not(#__):not(#___) .cadmin .sheet-subtitle .heading-text {
|
|
@@ -14878,22 +14999,22 @@ html:not(#__):not(#___) .cadmin .sidebar-list-group .sticker {
|
|
|
14878
14999
|
width: 24px;
|
|
14879
15000
|
}
|
|
14880
15001
|
html:not(#__):not(#___) .cadmin .sidebar-list-group .sticker.sticker-outside {
|
|
14881
|
-
left: -
|
|
14882
|
-
top: -
|
|
15002
|
+
left: calc(-24px / 2);
|
|
15003
|
+
top: calc(-24px / 2);
|
|
14883
15004
|
}
|
|
14884
15005
|
html:not(#__):not(#___) .cadmin .sidebar-list-group .sticker.sticker-outside.sticker-bottom-left {
|
|
14885
|
-
bottom: -
|
|
15006
|
+
bottom: calc(-24px / 2);
|
|
14886
15007
|
top: auto;
|
|
14887
15008
|
}
|
|
14888
15009
|
html:not(#__):not(#___) .cadmin .sidebar-list-group .sticker.sticker-outside.sticker-bottom-right {
|
|
14889
|
-
bottom: -
|
|
15010
|
+
bottom: calc(-24px / 2);
|
|
14890
15011
|
left: auto;
|
|
14891
|
-
right: -
|
|
15012
|
+
right: calc(-24px / 2);
|
|
14892
15013
|
top: auto;
|
|
14893
15014
|
}
|
|
14894
15015
|
html:not(#__):not(#___) .cadmin .sidebar-list-group .sticker.sticker-outside.sticker-top-right {
|
|
14895
15016
|
left: auto;
|
|
14896
|
-
right: -
|
|
15017
|
+
right: calc(-24px / 2);
|
|
14897
15018
|
}
|
|
14898
15019
|
html:not(#__):not(#___) .cadmin .sidebar-panel {
|
|
14899
15020
|
margin-bottom: 16px;
|
|
@@ -15106,9 +15227,6 @@ html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:active {
|
|
|
15106
15227
|
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link.active {
|
|
15107
15228
|
color: #fff;
|
|
15108
15229
|
}
|
|
15109
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link.show, .show > html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link {
|
|
15110
|
-
color: #fff;
|
|
15111
|
-
}
|
|
15112
15230
|
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:disabled, html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link.disabled {
|
|
15113
15231
|
box-shadow: none;
|
|
15114
15232
|
color: #a7a9bc;
|
|
@@ -15117,6 +15235,9 @@ html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:disabled, ht
|
|
|
15117
15235
|
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:disabled:active, html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link.disabled:active {
|
|
15118
15236
|
pointer-events: none;
|
|
15119
15237
|
}
|
|
15238
|
+
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link.show, .show > html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link {
|
|
15239
|
+
color: #fff;
|
|
15240
|
+
}
|
|
15120
15241
|
html:not(#__):not(#___) .cadmin .c-slideout-transition-in {
|
|
15121
15242
|
transition: all 0.3s ease-in-out;
|
|
15122
15243
|
}
|
|
@@ -16921,7 +17042,7 @@ html:not(#__):not(#___) .cadmin .timeline-right .timeline-item:before {
|
|
|
16921
17042
|
}
|
|
16922
17043
|
html:not(#__):not(#___) .cadmin .timeline-right .timeline-item .panel .timeline-increment {
|
|
16923
17044
|
margin-left: auto;
|
|
16924
|
-
margin-right:
|
|
17045
|
+
margin-right: 0px;
|
|
16925
17046
|
}
|
|
16926
17047
|
html:not(#__):not(#___) .cadmin .timeline-right .timeline-item .timeline-increment {
|
|
16927
17048
|
left: auto;
|
|
@@ -16944,7 +17065,7 @@ html:not(#__):not(#___) .cadmin .timeline-right .timeline-item .timeline-increme
|
|
|
16944
17065
|
}
|
|
16945
17066
|
html:not(#__):not(#___) .cadmin .timeline-right-xs-only .timeline-item .panel .timeline-increment {
|
|
16946
17067
|
margin-left: auto;
|
|
16947
|
-
margin-right:
|
|
17068
|
+
margin-right: 0px;
|
|
16948
17069
|
}
|
|
16949
17070
|
html:not(#__):not(#___) .cadmin .timeline-right-xs-only .timeline-item .timeline-increment {
|
|
16950
17071
|
left: auto;
|
|
@@ -16982,7 +17103,7 @@ html:not(#__):not(#___) .cadmin .timeline-right .timeline-item .timeline-increme
|
|
|
16982
17103
|
}
|
|
16983
17104
|
html:not(#__):not(#___) .cadmin .timeline-center .timeline-item.timeline-item-reverse .panel .timeline-increment {
|
|
16984
17105
|
margin-left: auto;
|
|
16985
|
-
margin-right:
|
|
17106
|
+
margin-right: 0px;
|
|
16986
17107
|
}
|
|
16987
17108
|
html:not(#__):not(#___) .cadmin .timeline-center .timeline-item.timeline-item-reverse .timeline-increment {
|
|
16988
17109
|
left: auto;
|
|
@@ -17012,7 +17133,7 @@ html:not(#__):not(#___) .cadmin .timeline-odd .timeline-item:nth-of-type(odd):be
|
|
|
17012
17133
|
html:not(#__):not(#___) .cadmin .timeline-even .timeline-item:nth-of-type(even) .panel .timeline-increment,
|
|
17013
17134
|
html:not(#__):not(#___) .cadmin .timeline-odd .timeline-item:nth-of-type(odd) .panel .timeline-increment {
|
|
17014
17135
|
margin-left: auto;
|
|
17015
|
-
margin-right:
|
|
17136
|
+
margin-right: 0px;
|
|
17016
17137
|
}
|
|
17017
17138
|
html:not(#__):not(#___) .cadmin .timeline-even .timeline-item:nth-of-type(even) .timeline-increment,
|
|
17018
17139
|
html:not(#__):not(#___) .cadmin .timeline-odd .timeline-item:nth-of-type(odd) .timeline-increment {
|
|
@@ -17096,54 +17217,16 @@ html:not(#__):not(#___) .cadmin .timeline-spacing-xl .timeline-item .timeline-in
|
|
|
17096
17217
|
html:not(#__):not(#___) .cadmin .timeline-spacing-xl .timeline-increment-text {
|
|
17097
17218
|
max-width: 75px;
|
|
17098
17219
|
}
|
|
17099
|
-
html:not(#__):not(#___) .cadmin .simple-toggle-switch.toggle-switch {
|
|
17100
|
-
align-items: center;
|
|
17101
|
-
display: inline-flex;
|
|
17102
|
-
}
|
|
17103
|
-
html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-check + .toggle-switch-label {
|
|
17104
|
-
margin-right: 8px;
|
|
17105
|
-
}
|
|
17106
|
-
html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-label + .toggle-switch-check-bar {
|
|
17107
|
-
margin-left: 8px;
|
|
17108
|
-
}
|
|
17109
|
-
html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-label {
|
|
17110
|
-
line-height: 1;
|
|
17111
|
-
margin-bottom: 0;
|
|
17112
|
-
max-width: calc(
|
|
17113
|
-
100% - 56px
|
|
17114
|
-
);
|
|
17115
|
-
}
|
|
17116
|
-
@media (max-width: 767.98px) {
|
|
17117
|
-
html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-label {
|
|
17118
|
-
max-width: calc(
|
|
17119
|
-
100% - 48px
|
|
17120
|
-
);
|
|
17121
|
-
}
|
|
17122
|
-
}
|
|
17123
|
-
html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-label {
|
|
17124
|
-
margin-right: 8px;
|
|
17125
|
-
}
|
|
17126
|
-
html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-check-bar {
|
|
17127
|
-
order: 5;
|
|
17128
|
-
}
|
|
17129
|
-
html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-check-bar .toggle-switch-bar {
|
|
17130
|
-
order: 0;
|
|
17131
|
-
}
|
|
17132
|
-
html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-bar {
|
|
17133
|
-
order: 5;
|
|
17134
|
-
}
|
|
17135
|
-
html:not(#__):not(#___) .cadmin label.toggle-switch {
|
|
17136
|
-
cursor: pointer;
|
|
17137
|
-
}
|
|
17138
|
-
html:not(#__):not(#___) .cadmin label.toggle-switch.disabled {
|
|
17139
|
-
cursor: not-allowed;
|
|
17140
|
-
}
|
|
17141
17220
|
html:not(#__):not(#___) .cadmin .toggle-switch {
|
|
17221
|
+
cursor: pointer;
|
|
17142
17222
|
display: inline-block;
|
|
17143
17223
|
font-weight: 600;
|
|
17144
17224
|
max-width: 100%;
|
|
17145
17225
|
position: relative;
|
|
17146
17226
|
}
|
|
17227
|
+
html:not(#__):not(#___) .cadmin .toggle-switch.disabled {
|
|
17228
|
+
cursor: not-allowed;
|
|
17229
|
+
}
|
|
17147
17230
|
html:not(#__):not(#___) .cadmin .toggle-switch.disabled .toggle-switch-label {
|
|
17148
17231
|
color: #a7a9bc;
|
|
17149
17232
|
cursor: not-allowed;
|
|
@@ -17178,13 +17261,7 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check {
|
|
|
17178
17261
|
width: 48px;
|
|
17179
17262
|
z-index: 2;
|
|
17180
17263
|
}
|
|
17181
|
-
|
|
17182
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check {
|
|
17183
|
-
height: 24px;
|
|
17184
|
-
width: 40px;
|
|
17185
|
-
}
|
|
17186
|
-
}
|
|
17187
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check:empty ~ .toggle-switch-bar {
|
|
17264
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar {
|
|
17188
17265
|
display: inline-flex;
|
|
17189
17266
|
font-size: 10px;
|
|
17190
17267
|
height: 24px;
|
|
@@ -17192,9 +17269,31 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check:empty ~ .toggle-switch-bar
|
|
|
17192
17269
|
position: relative;
|
|
17193
17270
|
text-indent: 0;
|
|
17194
17271
|
-ms-user-select: none;
|
|
17272
|
+
-moz-user-select: none;
|
|
17273
|
+
-webkit-user-select: none;
|
|
17195
17274
|
user-select: none;
|
|
17196
17275
|
}
|
|
17197
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17276
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::before {
|
|
17277
|
+
background-color: #a7a9bc;
|
|
17278
|
+
border-color: #a7a9bc;
|
|
17279
|
+
border-radius: 20px;
|
|
17280
|
+
border-style: solid;
|
|
17281
|
+
border-width: 1px;
|
|
17282
|
+
bottom: 0;
|
|
17283
|
+
content: " ";
|
|
17284
|
+
display: block;
|
|
17285
|
+
left: 0;
|
|
17286
|
+
position: absolute;
|
|
17287
|
+
top: 0;
|
|
17288
|
+
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
17289
|
+
width: 48px;
|
|
17290
|
+
}
|
|
17291
|
+
@media (prefers-reduced-motion: reduce) {
|
|
17292
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::before {
|
|
17293
|
+
transition: none;
|
|
17294
|
+
}
|
|
17295
|
+
}
|
|
17296
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::after {
|
|
17198
17297
|
background-color: #fff;
|
|
17199
17298
|
border-color: #fff;
|
|
17200
17299
|
border-radius: 50%;
|
|
@@ -17210,31 +17309,31 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check:empty ~ .toggle-switch-bar:
|
|
|
17210
17309
|
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
17211
17310
|
width: 16px;
|
|
17212
17311
|
}
|
|
17213
|
-
|
|
17214
|
-
|
|
17215
|
-
|
|
17216
|
-
|
|
17217
|
-
|
|
17218
|
-
|
|
17219
|
-
bottom: 0;
|
|
17220
|
-
content: " ";
|
|
17221
|
-
display: block;
|
|
17222
|
-
left: 0;
|
|
17223
|
-
position: absolute;
|
|
17224
|
-
top: 0;
|
|
17312
|
+
@media (prefers-reduced-motion: reduce) {
|
|
17313
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::after {
|
|
17314
|
+
transition: none;
|
|
17315
|
+
}
|
|
17316
|
+
}
|
|
17317
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
|
|
17225
17318
|
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
17226
|
-
width: 48px;
|
|
17227
17319
|
}
|
|
17228
|
-
|
|
17320
|
+
@media (prefers-reduced-motion: reduce) {
|
|
17321
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
|
|
17322
|
+
transition: none;
|
|
17323
|
+
}
|
|
17324
|
+
}
|
|
17325
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
17229
17326
|
content: attr(data-label-off);
|
|
17230
17327
|
margin-left: 56px;
|
|
17231
17328
|
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
17232
17329
|
white-space: nowrap;
|
|
17233
17330
|
}
|
|
17234
|
-
|
|
17235
|
-
|
|
17331
|
+
@media (prefers-reduced-motion: reduce) {
|
|
17332
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
17333
|
+
transition: none;
|
|
17334
|
+
}
|
|
17236
17335
|
}
|
|
17237
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17336
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
17238
17337
|
color: #fff;
|
|
17239
17338
|
left: 4px;
|
|
17240
17339
|
line-height: 16px;
|
|
@@ -17246,131 +17345,164 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check:empty ~ .toggle-switch-bar
|
|
|
17246
17345
|
width: 16px;
|
|
17247
17346
|
z-index: 1;
|
|
17248
17347
|
}
|
|
17249
|
-
|
|
17348
|
+
@media (prefers-reduced-motion: reduce) {
|
|
17349
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
17350
|
+
transition: none;
|
|
17351
|
+
}
|
|
17352
|
+
}
|
|
17353
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-on {
|
|
17250
17354
|
left: 4px;
|
|
17251
17355
|
opacity: 0;
|
|
17252
17356
|
}
|
|
17253
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17357
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-off {
|
|
17254
17358
|
left: 28px;
|
|
17255
17359
|
}
|
|
17256
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17360
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .button-icon {
|
|
17257
17361
|
color: #272833;
|
|
17258
17362
|
}
|
|
17259
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17363
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .button-icon-on {
|
|
17260
17364
|
opacity: 0;
|
|
17261
17365
|
}
|
|
17262
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check:
|
|
17263
|
-
|
|
17264
|
-
border-color: #fff;
|
|
17265
|
-
border-radius: 50%;
|
|
17266
|
-
border-style: solid;
|
|
17267
|
-
border-width: 1px;
|
|
17268
|
-
left: 28px;
|
|
17366
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check:focus ~ .toggle-switch-bar::before {
|
|
17367
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
17269
17368
|
}
|
|
17270
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17369
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check[disabled] ~ .toggle-switch-bar, html:not(#__):not(#___) .cadmin .toggle-switch-check:disabled ~ .toggle-switch-bar {
|
|
17370
|
+
cursor: not-allowed;
|
|
17371
|
+
opacity: 0.4;
|
|
17372
|
+
}
|
|
17373
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar::before {
|
|
17271
17374
|
background-color: #0b5fff;
|
|
17272
17375
|
border-color: #0b5fff;
|
|
17273
17376
|
border-radius: 20px;
|
|
17274
17377
|
border-style: solid;
|
|
17275
17378
|
border-width: 1px;
|
|
17276
17379
|
}
|
|
17277
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar
|
|
17380
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar::after {
|
|
17381
|
+
background-color: #fff;
|
|
17382
|
+
border-color: #fff;
|
|
17383
|
+
border-radius: 50%;
|
|
17384
|
+
border-style: solid;
|
|
17385
|
+
border-width: 1px;
|
|
17386
|
+
left: 28px;
|
|
17387
|
+
}
|
|
17388
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
17278
17389
|
content: attr(data-label-on);
|
|
17279
17390
|
}
|
|
17280
17391
|
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon {
|
|
17281
17392
|
color: #fff;
|
|
17282
17393
|
}
|
|
17283
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .button-icon {
|
|
17284
|
-
color: #0b5fff;
|
|
17285
|
-
left: 28px;
|
|
17286
|
-
}
|
|
17287
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .button-icon-on,
|
|
17288
17394
|
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon-on {
|
|
17289
17395
|
opacity: 1;
|
|
17290
17396
|
}
|
|
17291
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .button-icon-off,
|
|
17292
17397
|
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-icon-off {
|
|
17293
17398
|
opacity: 0;
|
|
17294
17399
|
}
|
|
17295
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check:
|
|
17296
|
-
|
|
17297
|
-
|
|
17298
|
-
}
|
|
17299
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check:focus ~ .toggle-switch-bar:before {
|
|
17300
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
17301
|
-
}
|
|
17302
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-label {
|
|
17303
|
-
display: block;
|
|
17304
|
-
margin-bottom: 2px;
|
|
17305
|
-
}
|
|
17306
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-text {
|
|
17307
|
-
display: block;
|
|
17308
|
-
font-size: 12px;
|
|
17309
|
-
}
|
|
17310
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-text-left {
|
|
17311
|
-
display: inline-flex;
|
|
17312
|
-
line-height: 24px;
|
|
17313
|
-
margin-right: 8px;
|
|
17400
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .button-icon {
|
|
17401
|
+
color: #0b5fff;
|
|
17402
|
+
left: 28px;
|
|
17314
17403
|
}
|
|
17315
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-
|
|
17316
|
-
|
|
17317
|
-
line-height: 24px;
|
|
17318
|
-
margin-left: 8px;
|
|
17404
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .button-icon-on {
|
|
17405
|
+
opacity: 1;
|
|
17319
17406
|
}
|
|
17320
17407
|
@media (max-width: 767.98px) {
|
|
17321
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-
|
|
17322
|
-
|
|
17323
|
-
|
|
17324
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-bar .toggle-switch-icon {
|
|
17325
|
-
font-size: 10px;
|
|
17326
|
-
}
|
|
17327
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-bar .button-icon {
|
|
17328
|
-
font-size: 10px;
|
|
17408
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check {
|
|
17409
|
+
height: 24px;
|
|
17410
|
+
width: 40px;
|
|
17329
17411
|
}
|
|
17330
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17412
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar {
|
|
17331
17413
|
height: 24px;
|
|
17332
17414
|
line-height: 24px;
|
|
17333
17415
|
text-indent: 0;
|
|
17334
17416
|
}
|
|
17335
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17417
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::before {
|
|
17418
|
+
width: 40px;
|
|
17419
|
+
}
|
|
17420
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::after {
|
|
17336
17421
|
bottom: 4px;
|
|
17337
17422
|
height: 16px;
|
|
17338
17423
|
left: 4px;
|
|
17339
17424
|
top: 4px;
|
|
17340
17425
|
width: 16px;
|
|
17341
17426
|
}
|
|
17342
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17343
|
-
width: 40px;
|
|
17427
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle {
|
|
17428
|
+
min-width: 40px;
|
|
17344
17429
|
}
|
|
17345
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17430
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
17346
17431
|
margin-left: 48px;
|
|
17347
17432
|
}
|
|
17348
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17433
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
17434
|
+
font-size: 10px;
|
|
17349
17435
|
left: 4px;
|
|
17350
17436
|
line-height: 16px;
|
|
17351
17437
|
top: 4px;
|
|
17352
17438
|
width: 16px;
|
|
17353
17439
|
}
|
|
17354
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17440
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-on {
|
|
17355
17441
|
left: 4px;
|
|
17356
17442
|
}
|
|
17357
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17443
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-off {
|
|
17358
17444
|
left: 20px;
|
|
17359
17445
|
}
|
|
17360
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check
|
|
17446
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .button-icon {
|
|
17447
|
+
font-size: 10px;
|
|
17448
|
+
}
|
|
17449
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar::after {
|
|
17361
17450
|
left: 20px;
|
|
17362
17451
|
}
|
|
17363
|
-
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle
|
|
17452
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
17364
17453
|
margin-left: 48px;
|
|
17365
17454
|
}
|
|
17366
17455
|
html:not(#__):not(#___) .cadmin .toggle-switch-check:checked ~ .toggle-switch-bar .button-icon {
|
|
17367
17456
|
left: 20px;
|
|
17368
17457
|
}
|
|
17369
|
-
|
|
17458
|
+
}
|
|
17459
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-label {
|
|
17460
|
+
display: block;
|
|
17461
|
+
margin-bottom: 2px;
|
|
17462
|
+
}
|
|
17463
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-text {
|
|
17464
|
+
display: block;
|
|
17465
|
+
font-size: 12px;
|
|
17466
|
+
}
|
|
17467
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-text-left {
|
|
17468
|
+
display: inline-flex;
|
|
17469
|
+
line-height: 24px;
|
|
17470
|
+
margin-right: 8px;
|
|
17471
|
+
}
|
|
17370
17472
|
html:not(#__):not(#___) .cadmin .toggle-switch-text-right {
|
|
17371
|
-
|
|
17473
|
+
display: inline-flex;
|
|
17474
|
+
line-height: 24px;
|
|
17475
|
+
margin-left: 8px;
|
|
17476
|
+
}
|
|
17477
|
+
html:not(#__):not(#___) .cadmin .simple-toggle-switch {
|
|
17478
|
+
align-items: center;
|
|
17479
|
+
display: inline-flex;
|
|
17480
|
+
}
|
|
17481
|
+
html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-label {
|
|
17482
|
+
line-height: 1;
|
|
17483
|
+
margin-bottom: 0;
|
|
17484
|
+
max-width: calc( 100% - 56px );
|
|
17485
|
+
}
|
|
17486
|
+
@media (max-width: 767.98px) {
|
|
17487
|
+
html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-label {
|
|
17488
|
+
max-width: calc( 100% - 48px );
|
|
17372
17489
|
}
|
|
17373
17490
|
}
|
|
17491
|
+
html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-check + .toggle-switch-label {
|
|
17492
|
+
margin-right: 8px;
|
|
17493
|
+
}
|
|
17494
|
+
html:not(#__):not(#___) .cadmin .simple-toggle-switch .toggle-switch-label + .toggle-switch-check-bar {
|
|
17495
|
+
margin-left: 8px;
|
|
17496
|
+
}
|
|
17497
|
+
html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-check-bar {
|
|
17498
|
+
order: 5;
|
|
17499
|
+
}
|
|
17500
|
+
html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-check ~ .toggle-switch-bar {
|
|
17501
|
+
order: 5;
|
|
17502
|
+
}
|
|
17503
|
+
html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-label {
|
|
17504
|
+
margin-right: 8px;
|
|
17505
|
+
}
|
|
17374
17506
|
html:not(#__):not(#___) .cadmin .tooltip {
|
|
17375
17507
|
display: block;
|
|
17376
17508
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|