@clayui/css 3.44.2 → 3.47.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/README.md +23 -69
- package/lib/css/atlas.css +457 -86
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +411 -68
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +204 -90
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/add-cell.svg +1 -1
- package/lib/images/icons/corner-radius.svg +12 -0
- package/lib/images/icons/export.svg +11 -0
- package/lib/images/icons/font-family.svg +10 -0
- package/lib/images/icons/font-size.svg +10 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/shadow.svg +9 -0
- package/package.json +2 -2
- package/src/images/icons/add-cell.svg +1 -1
- package/src/images/icons/corner-radius.svg +12 -0
- package/src/images/icons/export.svg +11 -0
- package/src/images/icons/font-family.svg +10 -0
- package/src/images/icons/font-size.svg +10 -0
- package/src/images/icons/shadow.svg +9 -0
- package/src/scss/_components.scss +1 -0
- package/src/scss/_variables.scss +2 -0
- package/src/scss/atlas/variables/_buttons.scss +3 -0
- package/src/scss/atlas/variables/_cards.scss +12 -0
- package/src/scss/atlas/variables/_forms.scss +2 -1
- package/src/scss/atlas/variables/_globals.scss +42 -13
- package/src/scss/atlas/variables/_list-group.scss +28 -12
- package/src/scss/cadmin/_variables.scss +1 -0
- package/src/scss/cadmin/components/_aspect-ratio.scss +25 -38
- package/src/scss/cadmin/components/_cards.scss +10 -120
- package/src/scss/cadmin/components/_custom-forms.scss +4 -0
- package/src/scss/cadmin/components/_empty-state.scss +36 -0
- package/src/scss/cadmin/components/_forms.scss +1 -1
- package/src/scss/cadmin/components/_links.scss +1 -14
- package/src/scss/cadmin/components/_navs.scss +8 -0
- package/src/scss/cadmin/components/_treeview.scss +191 -210
- package/src/scss/cadmin/components/_type.scss +27 -42
- package/src/scss/cadmin/components/_utilities-functional-important.scss +35 -15
- package/src/scss/cadmin/variables/_aspect-ratio.scss +26 -0
- package/src/scss/cadmin/variables/_cards.scss +164 -1
- package/src/scss/cadmin/variables/_custom-forms.scss +3 -0
- package/src/scss/cadmin/variables/_empty-state.scss +23 -0
- package/src/scss/cadmin/variables/_forms.scss +3 -2
- package/src/scss/cadmin/variables/_globals.scss +173 -11
- package/src/scss/cadmin/variables/_links.scss +14 -0
- package/src/scss/cadmin/variables/_list-group.scss +32 -16
- package/src/scss/cadmin/variables/_sidebar.scss +1 -1
- package/src/scss/cadmin/variables/_treeview.scss +38 -17
- package/src/scss/cadmin/variables/_utilities.scss +42 -0
- package/src/scss/components/_aspect-ratio.scss +25 -38
- package/src/scss/components/_cards.scss +28 -122
- package/src/scss/components/_empty-state.scss +30 -0
- package/src/scss/components/_forms.scss +1 -1
- package/src/scss/components/_links.scss +12 -8
- package/src/scss/components/_tables.scss +0 -8
- package/src/scss/components/_treeview.scss +367 -0
- package/src/scss/components/_type.scss +27 -41
- package/src/scss/components/_utilities-functional-important.scss +35 -15
- package/src/scss/functions/_lx-icons-generated.scss +10 -0
- package/src/scss/mixins/_buttons.scss +4 -0
- package/src/scss/mixins/_cards.scss +59 -25
- package/src/scss/mixins/_grid.scss +29 -0
- package/src/scss/mixins/_links.scss +22 -2
- package/src/scss/variables/_aspect-ratio.scss +26 -0
- package/src/scss/variables/_buttons.scss +6 -0
- package/src/scss/variables/_cards.scss +158 -4
- package/src/scss/variables/_empty-state.scss +23 -0
- package/src/scss/variables/_forms.scss +3 -2
- package/src/scss/variables/_globals.scss +172 -11
- package/src/scss/variables/_links.scss +38 -3
- package/src/scss/variables/_list-group.scss +22 -12
- package/src/scss/variables/_sidebar.scss +3 -3
- package/src/scss/variables/_tables.scss +14 -0
- package/src/scss/variables/_treeview.scss +242 -0
- package/src/scss/variables/_utilities.scss +42 -0
package/lib/css/cadmin.css
CHANGED
|
@@ -143,7 +143,7 @@ html:not(#__):not(#___) .cadmin th,
|
|
|
143
143
|
html:not(#__):not(#___) .cadmin thead,
|
|
144
144
|
html:not(#__):not(#___) .cadmin tr,
|
|
145
145
|
html:not(#__):not(#___) .cadmin ul,
|
|
146
|
-
html:not(#__):not(#___) .cadmin var {
|
|
146
|
+
html:not(#__):not(#___) .cadmin var, html:not(#__):not(#___) .cadmin .nav-link::before, html:not(#__):not(#___) .cadmin .custom-control-label::before, html:not(#__):not(#___) .cadmin .nav-link::after, html:not(#__):not(#___) .cadmin .custom-control-label::after {
|
|
147
147
|
animation: none;
|
|
148
148
|
background-color: transparent;
|
|
149
149
|
background-image: none;
|
|
@@ -182,6 +182,11 @@ html:not(#__):not(#___) .cadmin var {
|
|
|
182
182
|
word-spacing: inherit;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
|
+
html:not(#__):not(#___) .cadmin .nav-link::before, html:not(#__):not(#___) .cadmin .custom-control-label::before, html:not(#__):not(#___) .cadmin .nav-link::after, html:not(#__):not(#___) .cadmin .custom-control-label::after {
|
|
186
|
+
content: normal;
|
|
187
|
+
display: inline;
|
|
188
|
+
}
|
|
189
|
+
|
|
185
190
|
/* REUSE-Snippet-Begin
|
|
186
191
|
* SPDX-License-Identifier: MIT
|
|
187
192
|
* SPDX-FileCopyrightText: © 2016 Nicolas Gallagher and Jonathan Neal <https://github.com/necolas/normalize.css>
|
|
@@ -856,6 +861,9 @@ html:not(#__):not(#___) .cadmin .aspect-ratio-3-to-2 {
|
|
|
856
861
|
html:not(#__):not(#___) .cadmin .aspect-ratio-4-to-3 {
|
|
857
862
|
padding-bottom: calc(3 / 4 * 100%);
|
|
858
863
|
}
|
|
864
|
+
html:not(#__):not(#___) .cadmin .aspect-ratio-8-to-3 {
|
|
865
|
+
padding-bottom: calc(3 / 8 * 100%);
|
|
866
|
+
}
|
|
859
867
|
html:not(#__):not(#___) .cadmin .aspect-ratio-8-to-5 {
|
|
860
868
|
padding-bottom: calc(5 / 8 * 100%);
|
|
861
869
|
}
|
|
@@ -4083,6 +4091,20 @@ html:not(#__):not(#___) .cadmin .c-empty-state-footer {
|
|
|
4083
4091
|
overflow-wrap: break-word;
|
|
4084
4092
|
word-wrap: break-word;
|
|
4085
4093
|
}
|
|
4094
|
+
html:not(#__):not(#___) .cadmin .c-empty-state-sm.c-empty-state-animation {
|
|
4095
|
+
margin: 2.5rem auto 2rem;
|
|
4096
|
+
max-width: 268px;
|
|
4097
|
+
}
|
|
4098
|
+
html:not(#__):not(#___) .cadmin .c-empty-state-sm .c-empty-state-image {
|
|
4099
|
+
max-width: 120px;
|
|
4100
|
+
}
|
|
4101
|
+
html:not(#__):not(#___) .cadmin .c-empty-state-sm .c-empty-state-title {
|
|
4102
|
+
font-size: 1rem;
|
|
4103
|
+
line-height: 1.5;
|
|
4104
|
+
}
|
|
4105
|
+
html:not(#__):not(#___) .cadmin .c-empty-state-sm .c-empty-state-text {
|
|
4106
|
+
font-size: 0.875rem;
|
|
4107
|
+
}
|
|
4086
4108
|
html:not(#__):not(#___) .cadmin .label {
|
|
4087
4109
|
border-color: #272833;
|
|
4088
4110
|
border-radius: 2px;
|
|
@@ -4684,34 +4706,17 @@ html:not(#__):not(#___) .cadmin .card,
|
|
|
4684
4706
|
html:not(#__):not(#___) .cadmin .card-horizontal {
|
|
4685
4707
|
background-color: #fff;
|
|
4686
4708
|
border-color: rgba(0, 0, 0, 0.125);
|
|
4709
|
+
border-radius: 4px;
|
|
4687
4710
|
border-style: solid;
|
|
4688
4711
|
border-width: 0px;
|
|
4689
|
-
border-radius: 4px;
|
|
4690
4712
|
box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.6);
|
|
4691
4713
|
display: block;
|
|
4692
4714
|
margin-bottom: 24px;
|
|
4693
4715
|
min-width: 0;
|
|
4694
4716
|
position: relative;
|
|
4717
|
+
overflow-wrap: break-word;
|
|
4695
4718
|
word-wrap: break-word;
|
|
4696
4719
|
}
|
|
4697
|
-
html:not(#__):not(#___) .cadmin .card .autofit-col:first-child,
|
|
4698
|
-
html:not(#__):not(#___) .cadmin .card-horizontal .autofit-col:first-child {
|
|
4699
|
-
border-bottom-left-radius: calc(
|
|
4700
|
-
4px - 0px
|
|
4701
|
-
);
|
|
4702
|
-
border-top-left-radius: calc(
|
|
4703
|
-
4px - 0px
|
|
4704
|
-
);
|
|
4705
|
-
}
|
|
4706
|
-
html:not(#__):not(#___) .cadmin .card .autofit-col:last-child,
|
|
4707
|
-
html:not(#__):not(#___) .cadmin .card-horizontal .autofit-col:last-child {
|
|
4708
|
-
border-bottom-right-radius: calc(
|
|
4709
|
-
4px - 0px
|
|
4710
|
-
);
|
|
4711
|
-
border-top-right-radius: calc(
|
|
4712
|
-
4px - 0px
|
|
4713
|
-
);
|
|
4714
|
-
}
|
|
4715
4720
|
html:not(#__):not(#___) .cadmin .card .aspect-ratio .label,
|
|
4716
4721
|
html:not(#__):not(#___) .cadmin .card-horizontal .aspect-ratio .label {
|
|
4717
4722
|
display: block;
|
|
@@ -4757,6 +4762,24 @@ html:not(#__):not(#___) .cadmin .card-horizontal > hr {
|
|
|
4757
4762
|
margin-left: 0;
|
|
4758
4763
|
margin-right: 0;
|
|
4759
4764
|
}
|
|
4765
|
+
html:not(#__):not(#___) .cadmin .card .autofit-col:first-child,
|
|
4766
|
+
html:not(#__):not(#___) .cadmin .card-horizontal .autofit-col:first-child {
|
|
4767
|
+
border-bottom-left-radius: calc(
|
|
4768
|
+
4px - 0px
|
|
4769
|
+
);
|
|
4770
|
+
border-top-left-radius: calc(
|
|
4771
|
+
4px - 0px
|
|
4772
|
+
);
|
|
4773
|
+
}
|
|
4774
|
+
html:not(#__):not(#___) .cadmin .card .autofit-col:last-child,
|
|
4775
|
+
html:not(#__):not(#___) .cadmin .card-horizontal .autofit-col:last-child {
|
|
4776
|
+
border-bottom-right-radius: calc(
|
|
4777
|
+
4px - 0px
|
|
4778
|
+
);
|
|
4779
|
+
border-top-right-radius: calc(
|
|
4780
|
+
4px - 0px
|
|
4781
|
+
);
|
|
4782
|
+
}
|
|
4760
4783
|
html:not(#__):not(#___) .cadmin .card > .list-group:first-child .list-group-item:first-child,
|
|
4761
4784
|
html:not(#__):not(#___) .cadmin .card-horizontal > .list-group:first-child .list-group-item:first-child {
|
|
4762
4785
|
border-top-left-radius: 4px;
|
|
@@ -4791,10 +4814,12 @@ html:not(#__):not(#___) .cadmin .card-title {
|
|
|
4791
4814
|
line-height: 1.5;
|
|
4792
4815
|
margin-bottom: 0;
|
|
4793
4816
|
}
|
|
4794
|
-
html:not(#__):not(#___) .cadmin .card-title
|
|
4817
|
+
html:not(#__):not(#___) .cadmin .card-title[href],
|
|
4818
|
+
html:not(#__):not(#___) .cadmin .card-title [href] {
|
|
4795
4819
|
color: #272833;
|
|
4796
4820
|
}
|
|
4797
|
-
html:not(#__):not(#___) .cadmin .card-title
|
|
4821
|
+
html:not(#__):not(#___) .cadmin .card-title[href]:hover,
|
|
4822
|
+
html:not(#__):not(#___) .cadmin .card-title [href]:hover {
|
|
4798
4823
|
color: #272833;
|
|
4799
4824
|
}
|
|
4800
4825
|
html:not(#__):not(#___) .cadmin .card-subtitle {
|
|
@@ -4804,10 +4829,12 @@ html:not(#__):not(#___) .cadmin .card-subtitle {
|
|
|
4804
4829
|
margin-bottom: 0;
|
|
4805
4830
|
margin-top: 0;
|
|
4806
4831
|
}
|
|
4807
|
-
html:not(#__):not(#___) .cadmin .card-subtitle
|
|
4832
|
+
html:not(#__):not(#___) .cadmin .card-subtitle[href],
|
|
4833
|
+
html:not(#__):not(#___) .cadmin .card-subtitle [href] {
|
|
4808
4834
|
color: #6b6c7e;
|
|
4809
4835
|
}
|
|
4810
|
-
html:not(#__):not(#___) .cadmin .card-subtitle
|
|
4836
|
+
html:not(#__):not(#___) .cadmin .card-subtitle[href]:hover,
|
|
4837
|
+
html:not(#__):not(#___) .cadmin .card-subtitle [href]:hover {
|
|
4811
4838
|
color: #6b6c7e;
|
|
4812
4839
|
}
|
|
4813
4840
|
html:not(#__):not(#___) .cadmin .card-text:last-child {
|
|
@@ -4840,11 +4867,7 @@ html:not(#__):not(#___) .cadmin .card-header {
|
|
|
4840
4867
|
padding: 12px 20px;
|
|
4841
4868
|
}
|
|
4842
4869
|
html:not(#__):not(#___) .cadmin .card-header:first-child {
|
|
4843
|
-
border-radius: calc(
|
|
4844
|
-
4px - 0px
|
|
4845
|
-
) calc(
|
|
4846
|
-
4px - 0px
|
|
4847
|
-
) 0 0;
|
|
4870
|
+
border-radius: calc( 4px - 0px ) calc( 4px - 0px ) 0 0;
|
|
4848
4871
|
}
|
|
4849
4872
|
html:not(#__):not(#___) .cadmin .card-header + .list-group .list-group-item:first-child {
|
|
4850
4873
|
border-top: 0;
|
|
@@ -4855,11 +4878,7 @@ html:not(#__):not(#___) .cadmin .card-footer {
|
|
|
4855
4878
|
padding: 12px 20px;
|
|
4856
4879
|
}
|
|
4857
4880
|
html:not(#__):not(#___) .cadmin .card-footer:last-child {
|
|
4858
|
-
border-radius: 0 0 calc(
|
|
4859
|
-
4px - 0px
|
|
4860
|
-
) calc(
|
|
4861
|
-
4px - 0px
|
|
4862
|
-
);
|
|
4881
|
+
border-radius: 0 0 calc( 4px - 0px ) calc( 4px - 0px );
|
|
4863
4882
|
}
|
|
4864
4883
|
html:not(#__):not(#___) .cadmin .card-img-overlay {
|
|
4865
4884
|
bottom: 0;
|
|
@@ -5922,6 +5941,9 @@ html:not(#__):not(#___) .cadmin .dropdown-action > .dropdown-toggle:disabled, ht
|
|
|
5922
5941
|
html:not(#__):not(#___) .cadmin .dropdown-action > .dropdown-toggle .lexicon-icon {
|
|
5923
5942
|
margin-top: 0;
|
|
5924
5943
|
}
|
|
5944
|
+
html:not(#__):not(#___) .cadmin .dropdown-action > .dropdown-toggle .inline-item .lexicon-icon {
|
|
5945
|
+
margin-top: 0;
|
|
5946
|
+
}
|
|
5925
5947
|
html:not(#__):not(#___) .cadmin .dropdown-menu-indicator-start .dropdown-item-indicator, html:not(#__):not(#___) .cadmin.dropdown-menu-indicator-start .dropdown-item-indicator {
|
|
5926
5948
|
height: 16px;
|
|
5927
5949
|
left: 20px;
|
|
@@ -6322,10 +6344,11 @@ html:not(#__):not(#___) .cadmin .form-control[contenteditable] p {
|
|
|
6322
6344
|
html:not(#__):not(#___) .cadmin .form-control .label {
|
|
6323
6345
|
border-width: 1px;
|
|
6324
6346
|
font-size: 12px;
|
|
6325
|
-
height:
|
|
6347
|
+
height: auto;
|
|
6326
6348
|
margin-bottom: 5px;
|
|
6327
6349
|
margin-right: 10px;
|
|
6328
6350
|
margin-top: 5px;
|
|
6351
|
+
min-height: 24px;
|
|
6329
6352
|
text-transform: none;
|
|
6330
6353
|
}
|
|
6331
6354
|
html:not(#__):not(#___) .cadmin fieldset[disabled] .form-control {
|
|
@@ -7053,20 +7076,24 @@ html:not(#__):not(#___) .cadmin .component-title {
|
|
|
7053
7076
|
margin-bottom: calc((32px - (1em * 1.25)) / 2);
|
|
7054
7077
|
margin-top: calc((32px - (1em * 1.25)) / 2);
|
|
7055
7078
|
}
|
|
7056
|
-
html:not(#__):not(#___) .cadmin .component-title
|
|
7079
|
+
html:not(#__):not(#___) .cadmin .component-title[href],
|
|
7080
|
+
html:not(#__):not(#___) .cadmin .component-title [href] {
|
|
7057
7081
|
border-radius: 1px;
|
|
7058
7082
|
color: #272833;
|
|
7059
7083
|
transition: box-shadow 0.15s ease-in-out;
|
|
7060
7084
|
}
|
|
7061
7085
|
@media (prefers-reduced-motion: reduce) {
|
|
7062
|
-
html:not(#__):not(#___) .cadmin .component-title
|
|
7086
|
+
html:not(#__):not(#___) .cadmin .component-title[href],
|
|
7087
|
+
html:not(#__):not(#___) .cadmin .component-title [href] {
|
|
7063
7088
|
transition: none;
|
|
7064
7089
|
}
|
|
7065
7090
|
}
|
|
7066
|
-
html:not(#__):not(#___) .cadmin .component-title
|
|
7091
|
+
html:not(#__):not(#___) .cadmin .component-title[href]:hover,
|
|
7092
|
+
html:not(#__):not(#___) .cadmin .component-title [href]:hover {
|
|
7067
7093
|
color: #060608;
|
|
7068
7094
|
}
|
|
7069
|
-
html:not(#__):not(#___) .cadmin .component-title
|
|
7095
|
+
html:not(#__):not(#___) .cadmin .component-title[href]:focus,
|
|
7096
|
+
html:not(#__):not(#___) .cadmin .component-title [href]:focus {
|
|
7070
7097
|
color: #060608;
|
|
7071
7098
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
7072
7099
|
outline: 0;
|
|
@@ -7077,20 +7104,24 @@ html:not(#__):not(#___) .cadmin .component-subtitle {
|
|
|
7077
7104
|
line-height: 1.45;
|
|
7078
7105
|
margin-bottom: 0;
|
|
7079
7106
|
}
|
|
7080
|
-
html:not(#__):not(#___) .cadmin .component-subtitle
|
|
7107
|
+
html:not(#__):not(#___) .cadmin .component-subtitle[href],
|
|
7108
|
+
html:not(#__):not(#___) .cadmin .component-subtitle [href] {
|
|
7081
7109
|
border-radius: 1px;
|
|
7082
7110
|
color: #6b6c7e;
|
|
7083
7111
|
transition: box-shadow 0.15s ease-in-out;
|
|
7084
7112
|
}
|
|
7085
7113
|
@media (prefers-reduced-motion: reduce) {
|
|
7086
|
-
html:not(#__):not(#___) .cadmin .component-subtitle
|
|
7114
|
+
html:not(#__):not(#___) .cadmin .component-subtitle[href],
|
|
7115
|
+
html:not(#__):not(#___) .cadmin .component-subtitle [href] {
|
|
7087
7116
|
transition: none;
|
|
7088
7117
|
}
|
|
7089
7118
|
}
|
|
7090
|
-
html:not(#__):not(#___) .cadmin .component-subtitle
|
|
7119
|
+
html:not(#__):not(#___) .cadmin .component-subtitle[href]:hover,
|
|
7120
|
+
html:not(#__):not(#___) .cadmin .component-subtitle [href]:hover {
|
|
7091
7121
|
color: #272833;
|
|
7092
7122
|
}
|
|
7093
|
-
html:not(#__):not(#___) .cadmin .component-subtitle
|
|
7123
|
+
html:not(#__):not(#___) .cadmin .component-subtitle[href]:focus,
|
|
7124
|
+
html:not(#__):not(#___) .cadmin .component-subtitle [href]:focus {
|
|
7094
7125
|
color: #272833;
|
|
7095
7126
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
7096
7127
|
outline: 0;
|
|
@@ -7738,6 +7769,7 @@ html:not(#__):not(#___) .cadmin .custom-control label {
|
|
|
7738
7769
|
display: inline;
|
|
7739
7770
|
font-size: 16px;
|
|
7740
7771
|
margin-bottom: 0;
|
|
7772
|
+
position: static;
|
|
7741
7773
|
}
|
|
7742
7774
|
html:not(#__):not(#___) .cadmin .custom-control-label {
|
|
7743
7775
|
cursor: pointer;
|
|
@@ -7777,6 +7809,7 @@ html:not(#__):not(#___) .cadmin .custom-control-label::before {
|
|
|
7777
7809
|
top: 2px;
|
|
7778
7810
|
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
7779
7811
|
width: 16px;
|
|
7812
|
+
z-index: 0;
|
|
7780
7813
|
}
|
|
7781
7814
|
@media (prefers-reduced-motion: reduce) {
|
|
7782
7815
|
html:not(#__):not(#___) .cadmin .custom-control-label::before {
|
|
@@ -7792,6 +7825,7 @@ html:not(#__):not(#___) .cadmin .custom-control-label::after {
|
|
|
7792
7825
|
position: absolute;
|
|
7793
7826
|
top: 2px;
|
|
7794
7827
|
width: 16px;
|
|
7828
|
+
z-index: 0;
|
|
7795
7829
|
}
|
|
7796
7830
|
html:not(#__):not(#___) .cadmin .custom-control-input {
|
|
7797
7831
|
cursor: pointer;
|
|
@@ -9068,7 +9102,8 @@ html:not(#__):not(#___) .cadmin .list-group-title {
|
|
|
9068
9102
|
margin-bottom: 0;
|
|
9069
9103
|
margin-top: -4px;
|
|
9070
9104
|
}
|
|
9071
|
-
html:not(#__):not(#___) .cadmin .list-group-title
|
|
9105
|
+
html:not(#__):not(#___) .cadmin .list-group-title[href],
|
|
9106
|
+
html:not(#__):not(#___) .cadmin .list-group-title [href] {
|
|
9072
9107
|
border-radius: 1px;
|
|
9073
9108
|
color: #272833;
|
|
9074
9109
|
display: inline-block;
|
|
@@ -9076,14 +9111,17 @@ html:not(#__):not(#___) .cadmin .list-group-title a {
|
|
|
9076
9111
|
max-width: 100%;
|
|
9077
9112
|
}
|
|
9078
9113
|
@media (prefers-reduced-motion: reduce) {
|
|
9079
|
-
html:not(#__):not(#___) .cadmin .list-group-title
|
|
9114
|
+
html:not(#__):not(#___) .cadmin .list-group-title[href],
|
|
9115
|
+
html:not(#__):not(#___) .cadmin .list-group-title [href] {
|
|
9080
9116
|
transition: none;
|
|
9081
9117
|
}
|
|
9082
9118
|
}
|
|
9083
|
-
html:not(#__):not(#___) .cadmin .list-group-title
|
|
9119
|
+
html:not(#__):not(#___) .cadmin .list-group-title[href]:hover,
|
|
9120
|
+
html:not(#__):not(#___) .cadmin .list-group-title [href]:hover {
|
|
9084
9121
|
color: #272833;
|
|
9085
9122
|
}
|
|
9086
|
-
html:not(#__):not(#___) .cadmin .list-group-title
|
|
9123
|
+
html:not(#__):not(#___) .cadmin .list-group-title[href]:focus,
|
|
9124
|
+
html:not(#__):not(#___) .cadmin .list-group-title [href]:focus {
|
|
9087
9125
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
9088
9126
|
outline: 0;
|
|
9089
9127
|
}
|
|
@@ -9091,7 +9129,8 @@ html:not(#__):not(#___) .cadmin .list-group-subtitle {
|
|
|
9091
9129
|
color: #6b6c7e;
|
|
9092
9130
|
margin-bottom: 0;
|
|
9093
9131
|
}
|
|
9094
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle
|
|
9132
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle[href],
|
|
9133
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle [href] {
|
|
9095
9134
|
border-radius: 1px;
|
|
9096
9135
|
color: #6b6c7e;
|
|
9097
9136
|
display: inline-block;
|
|
@@ -9099,14 +9138,17 @@ html:not(#__):not(#___) .cadmin .list-group-subtitle a {
|
|
|
9099
9138
|
transition: box-shadow 0.15s ease-in-out;
|
|
9100
9139
|
}
|
|
9101
9140
|
@media (prefers-reduced-motion: reduce) {
|
|
9102
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle
|
|
9141
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle[href],
|
|
9142
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle [href] {
|
|
9103
9143
|
transition: none;
|
|
9104
9144
|
}
|
|
9105
9145
|
}
|
|
9106
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle
|
|
9146
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle[href]:hover,
|
|
9147
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle [href]:hover {
|
|
9107
9148
|
color: #272833;
|
|
9108
9149
|
}
|
|
9109
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle
|
|
9150
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle[href]:focus,
|
|
9151
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle [href]:focus {
|
|
9110
9152
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
9111
9153
|
outline: 0;
|
|
9112
9154
|
}
|
|
@@ -9115,7 +9157,8 @@ html:not(#__):not(#___) .cadmin .list-group-text {
|
|
|
9115
9157
|
line-height: 1.45;
|
|
9116
9158
|
margin-bottom: 0;
|
|
9117
9159
|
}
|
|
9118
|
-
html:not(#__):not(#___) .cadmin .list-group-text
|
|
9160
|
+
html:not(#__):not(#___) .cadmin .list-group-text[href],
|
|
9161
|
+
html:not(#__):not(#___) .cadmin .list-group-text [href] {
|
|
9119
9162
|
border-radius: 1px;
|
|
9120
9163
|
color: #272833;
|
|
9121
9164
|
display: inline-block;
|
|
@@ -9123,14 +9166,17 @@ html:not(#__):not(#___) .cadmin .list-group-text a {
|
|
|
9123
9166
|
transition: box-shadow 0.15s ease-in-out;
|
|
9124
9167
|
}
|
|
9125
9168
|
@media (prefers-reduced-motion: reduce) {
|
|
9126
|
-
html:not(#__):not(#___) .cadmin .list-group-text
|
|
9169
|
+
html:not(#__):not(#___) .cadmin .list-group-text[href],
|
|
9170
|
+
html:not(#__):not(#___) .cadmin .list-group-text [href] {
|
|
9127
9171
|
transition: none;
|
|
9128
9172
|
}
|
|
9129
9173
|
}
|
|
9130
|
-
html:not(#__):not(#___) .cadmin .list-group-text
|
|
9174
|
+
html:not(#__):not(#___) .cadmin .list-group-text[href]:hover,
|
|
9175
|
+
html:not(#__):not(#___) .cadmin .list-group-text [href]:hover {
|
|
9131
9176
|
color: #272833;
|
|
9132
9177
|
}
|
|
9133
|
-
html:not(#__):not(#___) .cadmin .list-group-text
|
|
9178
|
+
html:not(#__):not(#___) .cadmin .list-group-text[href]:focus,
|
|
9179
|
+
html:not(#__):not(#___) .cadmin .list-group-text [href]:focus {
|
|
9134
9180
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
9135
9181
|
outline: 0;
|
|
9136
9182
|
}
|
|
@@ -9139,7 +9185,8 @@ html:not(#__):not(#___) .cadmin .list-group-subtext {
|
|
|
9139
9185
|
line-height: 1.45;
|
|
9140
9186
|
margin-bottom: 0;
|
|
9141
9187
|
}
|
|
9142
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext
|
|
9188
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext[href],
|
|
9189
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext [href] {
|
|
9143
9190
|
border-radius: 1px;
|
|
9144
9191
|
color: #6b6c7e;
|
|
9145
9192
|
display: inline-block;
|
|
@@ -9147,14 +9194,17 @@ html:not(#__):not(#___) .cadmin .list-group-subtext a {
|
|
|
9147
9194
|
transition: box-shadow 0.15s ease-in-out;
|
|
9148
9195
|
}
|
|
9149
9196
|
@media (prefers-reduced-motion: reduce) {
|
|
9150
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext
|
|
9197
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext[href],
|
|
9198
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext [href] {
|
|
9151
9199
|
transition: none;
|
|
9152
9200
|
}
|
|
9153
9201
|
}
|
|
9154
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext
|
|
9202
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext[href]:hover,
|
|
9203
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext [href]:hover {
|
|
9155
9204
|
color: #272833;
|
|
9156
9205
|
}
|
|
9157
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext
|
|
9206
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext[href]:focus,
|
|
9207
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext [href]:focus {
|
|
9158
9208
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
9159
9209
|
outline: 0;
|
|
9160
9210
|
}
|
|
@@ -14911,7 +14961,8 @@ html:not(#__):not(#___) .cadmin .sidebar-header .component-title {
|
|
|
14911
14961
|
font-size: 20px;
|
|
14912
14962
|
font-weight: 600;
|
|
14913
14963
|
}
|
|
14914
|
-
html:not(#__):not(#___) .cadmin .sidebar-header .component-title
|
|
14964
|
+
html:not(#__):not(#___) .cadmin .sidebar-header .component-title[href],
|
|
14965
|
+
html:not(#__):not(#___) .cadmin .sidebar-header .component-title [href] {
|
|
14915
14966
|
color: #272833;
|
|
14916
14967
|
}
|
|
14917
14968
|
html:not(#__):not(#___) .cadmin .sidebar-header .component-subtitle {
|
|
@@ -15009,7 +15060,8 @@ html:not(#__):not(#___) .cadmin .sidebar-light {
|
|
|
15009
15060
|
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-list-group .list-group-title {
|
|
15010
15061
|
font-size: 16px;
|
|
15011
15062
|
}
|
|
15012
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-list-group .list-group-title
|
|
15063
|
+
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-list-group .list-group-title[href],
|
|
15064
|
+
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-list-group .list-group-title [href] {
|
|
15013
15065
|
color: #272833;
|
|
15014
15066
|
}
|
|
15015
15067
|
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-panel {
|
|
@@ -15018,7 +15070,8 @@ html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-panel {
|
|
|
15018
15070
|
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dt {
|
|
15019
15071
|
color: #6b6c7e;
|
|
15020
15072
|
}
|
|
15021
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dd
|
|
15073
|
+
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dd[href],
|
|
15074
|
+
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dd [href] {
|
|
15022
15075
|
color: #272833;
|
|
15023
15076
|
}
|
|
15024
15077
|
html:not(#__):not(#___) .cadmin .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus {
|
|
@@ -15089,13 +15142,15 @@ html:not(#__):not(#___) .cadmin .sidebar-dark .close:hover {
|
|
|
15089
15142
|
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title {
|
|
15090
15143
|
color: inherit;
|
|
15091
15144
|
}
|
|
15092
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title
|
|
15145
|
+
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title[href],
|
|
15146
|
+
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title [href] {
|
|
15093
15147
|
color: inherit;
|
|
15094
15148
|
}
|
|
15095
15149
|
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle {
|
|
15096
15150
|
color: inherit;
|
|
15097
15151
|
}
|
|
15098
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle
|
|
15152
|
+
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle[href],
|
|
15153
|
+
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle [href] {
|
|
15099
15154
|
color: inherit;
|
|
15100
15155
|
}
|
|
15101
15156
|
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link {
|
|
@@ -17769,15 +17824,8 @@ html:not(#__):not(#___) .cadmin .treeview-item {
|
|
|
17769
17824
|
overflow-wrap: break-word;
|
|
17770
17825
|
word-wrap: break-word;
|
|
17771
17826
|
}
|
|
17772
|
-
html:not(#__):not(#___) .cadmin .treeview-item.disabled {
|
|
17773
|
-
cursor: not-allowed;
|
|
17774
|
-
opacity: 0.4;
|
|
17775
|
-
}
|
|
17776
|
-
html:not(#__):not(#___) .cadmin .treeview-item.disabled .treeview-dropping-bottom, html:not(#__):not(#___) .cadmin .treeview-item.disabled .treeview-dropping-middle, html:not(#__):not(#___) .cadmin .treeview-item.disabled .treeview-dropping-top {
|
|
17777
|
-
border-color: transparent;
|
|
17778
|
-
background-color: transparent;
|
|
17779
|
-
}
|
|
17780
17827
|
html:not(#__):not(#___) .cadmin .treeview-link {
|
|
17828
|
+
background-color: transparent;
|
|
17781
17829
|
cursor: pointer;
|
|
17782
17830
|
display: block;
|
|
17783
17831
|
border-color: transparent;
|
|
@@ -17788,6 +17836,7 @@ html:not(#__):not(#___) .cadmin .treeview-link {
|
|
|
17788
17836
|
min-width: 100%;
|
|
17789
17837
|
padding: 0;
|
|
17790
17838
|
position: relative;
|
|
17839
|
+
text-align: left;
|
|
17791
17840
|
-ms-user-select: none;
|
|
17792
17841
|
-moz-user-select: none;
|
|
17793
17842
|
-webkit-user-select: none;
|
|
@@ -17800,20 +17849,24 @@ html:not(#__):not(#___) .cadmin .treeview-link:focus {
|
|
|
17800
17849
|
box-shadow: inset 0 0 0 2px #80acff, inset 0 0 0 4px #fff;
|
|
17801
17850
|
outline: 0;
|
|
17802
17851
|
}
|
|
17852
|
+
html:not(#__):not(#___) .cadmin .treeview-link:disabled, html:not(#__):not(#___) .cadmin .treeview-link.disabled {
|
|
17853
|
+
cursor: not-allowed;
|
|
17854
|
+
}
|
|
17803
17855
|
html:not(#__):not(#___) .cadmin .treeview-link.treeview-dropping-bottom {
|
|
17804
|
-
|
|
17805
|
-
border-bottom-color: #80acff;
|
|
17856
|
+
box-shadow: 0 2px 0 0 #80acff;
|
|
17806
17857
|
}
|
|
17807
17858
|
html:not(#__):not(#___) .cadmin .treeview-link.treeview-dropping-middle {
|
|
17808
17859
|
background-color: #f0f5ff;
|
|
17809
17860
|
border-color: #80acff;
|
|
17810
17861
|
}
|
|
17811
17862
|
html:not(#__):not(#___) .cadmin .treeview-link.treeview-dropping-top {
|
|
17812
|
-
|
|
17813
|
-
border-top-width: 2px;
|
|
17863
|
+
box-shadow: 0 -2px 0 0 #80acff;
|
|
17814
17864
|
}
|
|
17815
17865
|
html:not(#__):not(#___) .cadmin .treeview-link.hover .component-action, html:not(#__):not(#___) .cadmin .treeview-link:hover .component-action, html:not(#__):not(#___) .cadmin .treeview-link.focus .component-action, html:not(#__):not(#___) .cadmin .treeview-link:focus .component-action {
|
|
17816
|
-
display:
|
|
17866
|
+
display: flex;
|
|
17867
|
+
}
|
|
17868
|
+
html:not(#__):not(#___) .cadmin .treeview-link:disabled .component-action, html:not(#__):not(#___) .cadmin .treeview-link.disabled .component-action {
|
|
17869
|
+
display: none;
|
|
17817
17870
|
}
|
|
17818
17871
|
html:not(#__):not(#___) .cadmin .treeview-link.show .component-expander .component-expanded-d-none, html:not(#__):not(#___) .cadmin .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
|
|
17819
17872
|
display: none;
|
|
@@ -17824,6 +17877,15 @@ html:not(#__):not(#___) .cadmin .treeview-link.show .component-expander .lexicon
|
|
|
17824
17877
|
html:not(#__):not(#___) .cadmin .treeview-nested-margins .treeview-group .treeview-item {
|
|
17825
17878
|
margin-left: 24px;
|
|
17826
17879
|
}
|
|
17880
|
+
html:not(#__):not(#___) .cadmin .treeview-item-dragging {
|
|
17881
|
+
cursor: not-allowed;
|
|
17882
|
+
opacity: 0.4;
|
|
17883
|
+
}
|
|
17884
|
+
html:not(#__):not(#___) .cadmin .treeview-item-dragging .treeview-link {
|
|
17885
|
+
background-color: transparent;
|
|
17886
|
+
border-color: transparent;
|
|
17887
|
+
box-shadow: none;
|
|
17888
|
+
}
|
|
17827
17889
|
html:not(#__):not(#___) .cadmin .treeview-dragging {
|
|
17828
17890
|
background-color: #fff;
|
|
17829
17891
|
border-color: #80acff;
|
|
@@ -17842,6 +17904,10 @@ html:not(#__):not(#___) .cadmin .treeview-light .component-expander {
|
|
|
17842
17904
|
html:not(#__):not(#___) .cadmin .treeview-light .component-expander:hover {
|
|
17843
17905
|
color: #0b5fff;
|
|
17844
17906
|
}
|
|
17907
|
+
html:not(#__):not(#___) .cadmin .treeview-light .component-expander:disabled, html:not(#__):not(#___) .cadmin .treeview-light .component-expander.disabled {
|
|
17908
|
+
color: #6b6c7e;
|
|
17909
|
+
opacity: 0.5;
|
|
17910
|
+
}
|
|
17845
17911
|
html:not(#__):not(#___) .cadmin .treeview-light .component-expander.btn-secondary {
|
|
17846
17912
|
background-color: #fff;
|
|
17847
17913
|
}
|
|
@@ -17860,6 +17926,10 @@ html:not(#__):not(#___) .cadmin .treeview-light .treeview-link.active {
|
|
|
17860
17926
|
background-color: #f1f2f5;
|
|
17861
17927
|
color: #272833;
|
|
17862
17928
|
}
|
|
17929
|
+
html:not(#__):not(#___) .cadmin .treeview-light .treeview-link:disabled, html:not(#__):not(#___) .cadmin .treeview-light .treeview-link.disabled {
|
|
17930
|
+
background-color: transparent;
|
|
17931
|
+
color: rgba(107, 108, 126, 0.5);
|
|
17932
|
+
}
|
|
17863
17933
|
html:not(#__):not(#___) .cadmin .treeview-dark .component-expander {
|
|
17864
17934
|
color: #a7a9bc;
|
|
17865
17935
|
}
|
|
@@ -17878,11 +17948,14 @@ html:not(#__):not(#___) .cadmin .treeview-dark .treeview-link.active {
|
|
|
17878
17948
|
}
|
|
17879
17949
|
html:not(#__):not(#___) .cadmin .treeview-dark .treeview-link:disabled, html:not(#__):not(#___) .cadmin .treeview-dark .treeview-link.disabled {
|
|
17880
17950
|
background-color: transparent;
|
|
17881
|
-
color: rgba(167, 169, 188, 0.
|
|
17951
|
+
color: rgba(167, 169, 188, 0.5);
|
|
17882
17952
|
}
|
|
17883
17953
|
html:not(#__):not(#___) .cadmin .treeview-dark .component-action {
|
|
17884
17954
|
color: #a7a9bc;
|
|
17885
17955
|
}
|
|
17956
|
+
html:not(#__):not(#___) .cadmin .treeview-dark .component-action:disabled, html:not(#__):not(#___) .cadmin .treeview-dark .component-action.disabled {
|
|
17957
|
+
color: #a7a9bc;
|
|
17958
|
+
}
|
|
17886
17959
|
html:not(#__):not(#___) .cadmin .bg-checkered {
|
|
17887
17960
|
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%);
|
|
17888
17961
|
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
|
|
@@ -24634,9 +24707,6 @@ html:not(#__):not(#___) .cadmin .stretched-link::after {
|
|
|
24634
24707
|
top: 0;
|
|
24635
24708
|
z-index: 1;
|
|
24636
24709
|
}
|
|
24637
|
-
html:not(#__):not(#___) .cadmin .text-monospace {
|
|
24638
|
-
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
24639
|
-
}
|
|
24640
24710
|
html:not(#__):not(#___) .cadmin .text-justify {
|
|
24641
24711
|
text-align: justify !important;
|
|
24642
24712
|
}
|
|
@@ -24713,27 +24783,71 @@ html:not(#__):not(#___) .cadmin .text-uppercase {
|
|
|
24713
24783
|
html:not(#__):not(#___) .cadmin .text-capitalize {
|
|
24714
24784
|
text-transform: capitalize !important;
|
|
24715
24785
|
}
|
|
24716
|
-
html:not(#__):not(#___) .cadmin .font-weight-
|
|
24717
|
-
|
|
24718
|
-
}
|
|
24719
|
-
html:not(#__):not(#___) .cadmin .font-weight-lighter {
|
|
24786
|
+
html:not(#__):not(#___) .cadmin .font-weight-lighter,
|
|
24787
|
+
html:not(#__):not(#___) .cadmin .text-weight-lighter {
|
|
24720
24788
|
font-weight: lighter !important;
|
|
24721
24789
|
}
|
|
24722
|
-
html:not(#__):not(#___) .cadmin .font-weight-
|
|
24790
|
+
html:not(#__):not(#___) .cadmin .font-weight-light,
|
|
24791
|
+
html:not(#__):not(#___) .cadmin .text-weight-light {
|
|
24792
|
+
font-weight: 300 !important;
|
|
24793
|
+
}
|
|
24794
|
+
html:not(#__):not(#___) .cadmin .font-weight-normal,
|
|
24795
|
+
html:not(#__):not(#___) .cadmin .text-weight-normal {
|
|
24723
24796
|
font-weight: 400 !important;
|
|
24724
24797
|
}
|
|
24725
|
-
html:not(#__):not(#___) .cadmin .font-weight-semi-bold
|
|
24798
|
+
html:not(#__):not(#___) .cadmin .font-weight-semi-bold,
|
|
24799
|
+
html:not(#__):not(#___) .cadmin .text-weight-semi-bold {
|
|
24726
24800
|
font-weight: 600 !important;
|
|
24727
24801
|
}
|
|
24728
|
-
html:not(#__):not(#___) .cadmin .font-weight-bold
|
|
24802
|
+
html:not(#__):not(#___) .cadmin .font-weight-bold,
|
|
24803
|
+
html:not(#__):not(#___) .cadmin .text-weight-bold {
|
|
24729
24804
|
font-weight: 700 !important;
|
|
24730
24805
|
}
|
|
24731
|
-
html:not(#__):not(#___) .cadmin .font-weight-bolder
|
|
24806
|
+
html:not(#__):not(#___) .cadmin .font-weight-bolder,
|
|
24807
|
+
html:not(#__):not(#___) .cadmin .text-weight-bolder {
|
|
24732
24808
|
font-weight: 900 !important;
|
|
24733
24809
|
}
|
|
24734
|
-
html:not(#__):not(#___) .cadmin .font-italic
|
|
24810
|
+
html:not(#__):not(#___) .cadmin .font-italic,
|
|
24811
|
+
html:not(#__):not(#___) .cadmin .text-italic {
|
|
24735
24812
|
font-style: italic !important;
|
|
24736
24813
|
}
|
|
24814
|
+
html:not(#__):not(#___) .cadmin .font-monospace,
|
|
24815
|
+
html:not(#__):not(#___) .cadmin .text-monospace {
|
|
24816
|
+
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
|
|
24817
|
+
}
|
|
24818
|
+
html:not(#__):not(#___) .cadmin .text-1 {
|
|
24819
|
+
font-size: 0.625rem;
|
|
24820
|
+
}
|
|
24821
|
+
html:not(#__):not(#___) .cadmin .text-2 {
|
|
24822
|
+
font-size: 0.75rem;
|
|
24823
|
+
}
|
|
24824
|
+
html:not(#__):not(#___) .cadmin .text-3 {
|
|
24825
|
+
font-size: 0.875rem;
|
|
24826
|
+
}
|
|
24827
|
+
html:not(#__):not(#___) .cadmin .text-4 {
|
|
24828
|
+
font-size: 1rem;
|
|
24829
|
+
}
|
|
24830
|
+
html:not(#__):not(#___) .cadmin .text-5 {
|
|
24831
|
+
font-size: 1.125rem;
|
|
24832
|
+
}
|
|
24833
|
+
html:not(#__):not(#___) .cadmin .text-6 {
|
|
24834
|
+
font-size: 1.25rem;
|
|
24835
|
+
}
|
|
24836
|
+
html:not(#__):not(#___) .cadmin .text-7 {
|
|
24837
|
+
font-size: 1.5rem;
|
|
24838
|
+
}
|
|
24839
|
+
html:not(#__):not(#___) .cadmin .text-8 {
|
|
24840
|
+
font-size: 1.75rem;
|
|
24841
|
+
}
|
|
24842
|
+
html:not(#__):not(#___) .cadmin .text-9 {
|
|
24843
|
+
font-size: 2rem;
|
|
24844
|
+
}
|
|
24845
|
+
html:not(#__):not(#___) .cadmin .text-10 {
|
|
24846
|
+
font-size: 2.25rem;
|
|
24847
|
+
}
|
|
24848
|
+
html:not(#__):not(#___) .cadmin .text-11 {
|
|
24849
|
+
font-size: 2.5rem;
|
|
24850
|
+
}
|
|
24737
24851
|
html:not(#__):not(#___) .cadmin .text-white {
|
|
24738
24852
|
color: #fff !important;
|
|
24739
24853
|
}
|