@clayui/css 3.145.0 → 3.148.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/css/atlas.css +81 -293
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +81 -276
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +45 -276
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +1 -0
- package/src/scss/atlas/variables/_pagination.scss +5 -1
- package/src/scss/cadmin/components/_form-validation.scss +4 -0
- package/src/scss/cadmin/components/_forms.scss +19 -0
- package/src/scss/cadmin/components/_pagination.scss +8 -6
- package/src/scss/cadmin/components/_slideout.scss +0 -12
- package/src/scss/cadmin/components/_utilities.scss +4 -0
- package/src/scss/cadmin/variables/_forms.scss +22 -0
- package/src/scss/cadmin/variables/_globals.scss +6 -5
- package/src/scss/cadmin/variables/_pagination.scss +2 -0
- package/src/scss/cadmin/variables/_sidebar.scss +2 -2
- package/src/scss/cadmin/variables/_slideout.scss +96 -30
- package/src/scss/cadmin/variables/_stickers.scss +15 -0
- package/src/scss/cadmin/variables/_utilities.scss +11 -0
- package/src/scss/components/_form-validation.scss +4 -0
- package/src/scss/components/_forms.scss +16 -0
- package/src/scss/components/_pagination.scss +8 -6
- package/src/scss/components/_slideout.scss +3 -11
- package/src/scss/components/_utilities.scss +4 -0
- package/src/scss/mixins/_globals.scss +8 -0
- package/src/scss/mixins/_sidebar.scss +67 -0
- package/src/scss/mixins/_slideout.scss +16 -0
- package/src/scss/variables/_drilldown.scss +1 -1
- package/src/scss/variables/_forms.scss +22 -0
- package/src/scss/variables/_globals.scss +6 -5
- package/src/scss/variables/_pagination.scss +2 -0
- package/src/scss/variables/_slideout.scss +96 -30
- package/src/scss/variables/_stickers.scss +15 -0
- package/src/scss/variables/_utilities.scss +11 -0
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.148.0
|
|
4
4
|
*
|
|
5
5
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
6
6
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
|
-
* Clay 3.
|
|
19
|
+
* Clay 3.148.0
|
|
20
20
|
*
|
|
21
21
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
22
22
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -5253,6 +5253,15 @@ html:not(#__):not(#___) .cadmin .sticker-outside.sticker-top-right.sticker-xl {
|
|
|
5253
5253
|
left: auto;
|
|
5254
5254
|
right: calc(-48px / 2);
|
|
5255
5255
|
}
|
|
5256
|
+
html:not(#__):not(#___) .cadmin .sticker-xxl {
|
|
5257
|
+
font-size: 2.5rem;
|
|
5258
|
+
height: 5rem;
|
|
5259
|
+
line-height: 5rem;
|
|
5260
|
+
width: 5rem;
|
|
5261
|
+
}
|
|
5262
|
+
html:not(#__):not(#___) .cadmin .sticker-xxl .lexicon-icon {
|
|
5263
|
+
font-size: 1.5rem;
|
|
5264
|
+
}
|
|
5256
5265
|
html:not(#__):not(#___) .cadmin .sticker-primary {
|
|
5257
5266
|
background-color: #fff;
|
|
5258
5267
|
color: #0b5fff;
|
|
@@ -7055,10 +7064,21 @@ html:not(#__):not(#___) .cadmin label {
|
|
|
7055
7064
|
html:not(#__):not(#___) .cadmin label[for] {
|
|
7056
7065
|
cursor: pointer;
|
|
7057
7066
|
}
|
|
7067
|
+
html:not(#__):not(#___) .cadmin label + .form-feedback-group {
|
|
7068
|
+
margin-bottom: 12px;
|
|
7069
|
+
}
|
|
7058
7070
|
html:not(#__):not(#___) .cadmin label + .form-text {
|
|
7059
7071
|
margin-bottom: 4px;
|
|
7060
7072
|
margin-top: 0;
|
|
7061
7073
|
}
|
|
7074
|
+
html:not(#__):not(#___) .cadmin label .form-help-text {
|
|
7075
|
+
color: #9b92a5;
|
|
7076
|
+
display: inline;
|
|
7077
|
+
font-size: 14px;
|
|
7078
|
+
font-weight: 400;
|
|
7079
|
+
margin-left: 8px;
|
|
7080
|
+
margin-top: 0;
|
|
7081
|
+
}
|
|
7062
7082
|
html:not(#__):not(#___) .cadmin label .reference-mark {
|
|
7063
7083
|
color: #b95000;
|
|
7064
7084
|
font-size: 6px;
|
|
@@ -9958,6 +9978,12 @@ html:not(#__):not(#___) .cadmin .form-text.blockquote::before {
|
|
|
9958
9978
|
top: 0;
|
|
9959
9979
|
width: 2px;
|
|
9960
9980
|
}
|
|
9981
|
+
html:not(#__):not(#___) .cadmin .form-help-text {
|
|
9982
|
+
color: #6b6c7e;
|
|
9983
|
+
display: block;
|
|
9984
|
+
font-size: 14px;
|
|
9985
|
+
margin-top: 4px;
|
|
9986
|
+
}
|
|
9961
9987
|
html:not(#__):not(#___) .cadmin .has-error .custom-control-label,
|
|
9962
9988
|
html:not(#__):not(#___) .cadmin .has-error .form-check-label {
|
|
9963
9989
|
color: #da1414;
|
|
@@ -15131,106 +15157,6 @@ html:not(#__):not(#___) .cadmin .pagination-results {
|
|
|
15131
15157
|
overflow-wrap: break-word;
|
|
15132
15158
|
word-wrap: break-word;
|
|
15133
15159
|
}
|
|
15134
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .page-link {
|
|
15135
|
-
font-size: 12px;
|
|
15136
|
-
height: 24px;
|
|
15137
|
-
line-height: 1;
|
|
15138
|
-
padding-bottom: 0;
|
|
15139
|
-
padding-right: 8px;
|
|
15140
|
-
padding-left: 8px;
|
|
15141
|
-
padding-top: 0;
|
|
15142
|
-
}
|
|
15143
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .page-link > .c-inner {
|
|
15144
|
-
margin-bottom: 0;
|
|
15145
|
-
margin-left: -8px;
|
|
15146
|
-
margin-right: -8px;
|
|
15147
|
-
margin-top: 0;
|
|
15148
|
-
}
|
|
15149
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .page-item:first-child .page-link,
|
|
15150
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .page-link-first {
|
|
15151
|
-
border-bottom-left-radius: 5px;
|
|
15152
|
-
border-top-left-radius: 5px;
|
|
15153
|
-
}
|
|
15154
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .page-item:last-child .page-link,
|
|
15155
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .page-link-last {
|
|
15156
|
-
border-bottom-right-radius: 5px;
|
|
15157
|
-
border-top-right-radius: 5px;
|
|
15158
|
-
}
|
|
15159
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page {
|
|
15160
|
-
border-radius: 5px;
|
|
15161
|
-
}
|
|
15162
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page > a,
|
|
15163
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page > button {
|
|
15164
|
-
font-size: 12px;
|
|
15165
|
-
height: 24px;
|
|
15166
|
-
line-height: 1;
|
|
15167
|
-
padding-bottom: 0;
|
|
15168
|
-
padding-left: 10px;
|
|
15169
|
-
padding-right: 10px;
|
|
15170
|
-
padding-top: 0;
|
|
15171
|
-
}
|
|
15172
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page > a > .c-inner,
|
|
15173
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page > button > .c-inner {
|
|
15174
|
-
margin-bottom: 0;
|
|
15175
|
-
margin-left: -10px;
|
|
15176
|
-
margin-right: -10px;
|
|
15177
|
-
margin-top: 0;
|
|
15178
|
-
}
|
|
15179
|
-
html:not(#__):not(#___) .cadmin .pagination-sm .pagination-items-per-page + .pagination-results {
|
|
15180
|
-
font-size: 12px;
|
|
15181
|
-
line-height: 1;
|
|
15182
|
-
padding: 0 10px;
|
|
15183
|
-
}
|
|
15184
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .page-link {
|
|
15185
|
-
font-size: 18px;
|
|
15186
|
-
height: 44px;
|
|
15187
|
-
line-height: 1;
|
|
15188
|
-
padding-bottom: 0;
|
|
15189
|
-
padding-left: 16px;
|
|
15190
|
-
padding-right: 16px;
|
|
15191
|
-
padding-top: 0;
|
|
15192
|
-
}
|
|
15193
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .page-link > .c-inner {
|
|
15194
|
-
margin-bottom: 0;
|
|
15195
|
-
margin-left: -16px;
|
|
15196
|
-
margin-right: -16px;
|
|
15197
|
-
margin-top: 0;
|
|
15198
|
-
}
|
|
15199
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .page-item:first-child .page-link,
|
|
15200
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .page-link-first {
|
|
15201
|
-
border-bottom-left-radius: 5px;
|
|
15202
|
-
border-top-left-radius: 5px;
|
|
15203
|
-
}
|
|
15204
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .page-item:last-child .page-link,
|
|
15205
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .page-link-last {
|
|
15206
|
-
border-bottom-right-radius: 5px;
|
|
15207
|
-
border-top-right-radius: 5px;
|
|
15208
|
-
}
|
|
15209
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page {
|
|
15210
|
-
border-radius: 5px;
|
|
15211
|
-
}
|
|
15212
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page > a,
|
|
15213
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page > button {
|
|
15214
|
-
font-size: 18px;
|
|
15215
|
-
height: 44px;
|
|
15216
|
-
line-height: 1;
|
|
15217
|
-
padding-bottom: 0;
|
|
15218
|
-
padding-left: 10px;
|
|
15219
|
-
padding-right: 10px;
|
|
15220
|
-
padding-top: 0;
|
|
15221
|
-
}
|
|
15222
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page > a > .c-inner,
|
|
15223
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page > button > .c-inner {
|
|
15224
|
-
margin-bottom: 0;
|
|
15225
|
-
margin-left: -10px;
|
|
15226
|
-
margin-right: -10px;
|
|
15227
|
-
margin-top: 0;
|
|
15228
|
-
}
|
|
15229
|
-
html:not(#__):not(#___) .cadmin .pagination-lg .pagination-items-per-page + .pagination-results {
|
|
15230
|
-
font-size: 18px;
|
|
15231
|
-
line-height: 1;
|
|
15232
|
-
padding: 0 10px;
|
|
15233
|
-
}
|
|
15234
15160
|
html:not(#__):not(#___) .cadmin .panel {
|
|
15235
15161
|
background-color: #fff;
|
|
15236
15162
|
border-color: transparent;
|
|
@@ -16560,7 +16486,6 @@ html:not(#__):not(#___) .cadmin .sidebar-dd {
|
|
|
16560
16486
|
}
|
|
16561
16487
|
html:not(#__):not(#___) .cadmin .sidebar-sm {
|
|
16562
16488
|
font-size: 0.875rem;
|
|
16563
|
-
font-size: 0.875rem;
|
|
16564
16489
|
}
|
|
16565
16490
|
html:not(#__):not(#___) .cadmin .sidebar-light {
|
|
16566
16491
|
background-color: #fff;
|
|
@@ -16568,11 +16493,6 @@ html:not(#__):not(#___) .cadmin .sidebar-light {
|
|
|
16568
16493
|
border-left-width: 0;
|
|
16569
16494
|
box-shadow: -4px 0 8px -4px rgba(0, 0, 0, 0.1);
|
|
16570
16495
|
color: #272833;
|
|
16571
|
-
background-color: #fff;
|
|
16572
|
-
border-color: #e7e7ed;
|
|
16573
|
-
border-left-width: 0;
|
|
16574
|
-
box-shadow: -4px 0 8px -4px rgba(0, 0, 0, 0.1);
|
|
16575
|
-
color: #272833;
|
|
16576
16496
|
}
|
|
16577
16497
|
html:not(#__):not(#___) .cadmin .sidenav-start .sidebar-light,
|
|
16578
16498
|
html:not(#__):not(#___) .cadmin .sidenav-left .sidebar-light {
|
|
@@ -16580,11 +16500,11 @@ html:not(#__):not(#___) .cadmin .sidenav-left .sidebar-light {
|
|
|
16580
16500
|
}
|
|
16581
16501
|
|
|
16582
16502
|
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-header {
|
|
16583
|
-
background-color:
|
|
16503
|
+
background-color: #fff;
|
|
16584
16504
|
border: 0px solid #e7e7ed;
|
|
16585
16505
|
}
|
|
16586
16506
|
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-footer {
|
|
16587
|
-
background-color:
|
|
16507
|
+
background-color: #fff;
|
|
16588
16508
|
border: 0px solid #e7e7ed;
|
|
16589
16509
|
}
|
|
16590
16510
|
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-panel {
|
|
@@ -16642,56 +16562,9 @@ html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar
|
|
|
16642
16562
|
html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-overlay {
|
|
16643
16563
|
background-color: #fff;
|
|
16644
16564
|
}
|
|
16645
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-header {
|
|
16646
|
-
background-color: inherit;
|
|
16647
|
-
border: 0px solid #e7e7ed;
|
|
16648
|
-
}
|
|
16649
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-footer {
|
|
16650
|
-
background-color: inherit;
|
|
16651
|
-
border: 0px solid #e7e7ed;
|
|
16652
|
-
}
|
|
16653
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidenav-start {
|
|
16654
|
-
box-shadow: 4px 0 8px -4px rgba(0, 0, 0, 0.1);
|
|
16655
|
-
}
|
|
16656
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dt {
|
|
16657
|
-
color: #6b6c7e;
|
|
16658
|
-
}
|
|
16659
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dd .href {
|
|
16660
|
-
color: #272833;
|
|
16661
|
-
}
|
|
16662
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-panel {
|
|
16663
|
-
background-color: #f1f2f5;
|
|
16664
|
-
}
|
|
16665
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .panel-unstyled .header .link:focus {
|
|
16666
|
-
box-shadow: 0 0 0 4px #fff, 0 0 0 6px #5791ff;
|
|
16667
|
-
}
|
|
16668
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-list-group .component-title {
|
|
16669
|
-
font-size: 16px;
|
|
16670
|
-
}
|
|
16671
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-list-group .component-title .href {
|
|
16672
|
-
color: #272833;
|
|
16673
|
-
}
|
|
16674
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar {
|
|
16675
|
-
background-color: #fff;
|
|
16676
|
-
border-color: #cdced9;
|
|
16677
|
-
}
|
|
16678
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-nav .nav-link {
|
|
16679
|
-
color: #6b6c7e;
|
|
16680
|
-
}
|
|
16681
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-nav .nav-link:hover {
|
|
16682
|
-
color: #6b6c7e;
|
|
16683
|
-
}
|
|
16684
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-nav .nav-link:active {
|
|
16685
|
-
color: #272833;
|
|
16686
|
-
}
|
|
16687
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .component-navigation-bar .navbar-nav .nav-link:disabled {
|
|
16688
|
-
color: #a7a9bc;
|
|
16689
|
-
}
|
|
16690
16565
|
html:not(#__):not(#___) .cadmin .sidebar-dark {
|
|
16691
16566
|
background-color: #272833;
|
|
16692
16567
|
color: #fff;
|
|
16693
|
-
background-color: #272833;
|
|
16694
|
-
color: #fff;
|
|
16695
16568
|
}
|
|
16696
16569
|
html:not(#__):not(#___) .cadmin .sidebar-dark .close {
|
|
16697
16570
|
color: #a7a9bc;
|
|
@@ -16753,61 +16626,9 @@ html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:disabled:act
|
|
|
16753
16626
|
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link.show {
|
|
16754
16627
|
color: #fff;
|
|
16755
16628
|
}
|
|
16756
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title {
|
|
16757
|
-
color: inherit;
|
|
16758
|
-
}
|
|
16759
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title .href {
|
|
16760
|
-
color: inherit;
|
|
16761
|
-
}
|
|
16762
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle {
|
|
16763
|
-
color: inherit;
|
|
16764
|
-
}
|
|
16765
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle .href {
|
|
16766
|
-
color: inherit;
|
|
16767
|
-
}
|
|
16768
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .close {
|
|
16769
|
-
color: #a7a9bc;
|
|
16770
|
-
}
|
|
16771
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .close:hover {
|
|
16772
|
-
color: #fff;
|
|
16773
|
-
}
|
|
16774
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link {
|
|
16775
|
-
border-radius: 4px;
|
|
16776
|
-
color: #a7a9bc;
|
|
16777
|
-
transition: box-shadow 0.15s ease-in-out;
|
|
16778
|
-
}
|
|
16779
|
-
@media (prefers-reduced-motion: reduce) {
|
|
16780
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link {
|
|
16781
|
-
transition: none;
|
|
16782
|
-
}
|
|
16783
|
-
}
|
|
16784
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .sidebar-dark .nav-nested .nav-link {
|
|
16785
|
-
transition: none;
|
|
16786
|
-
}
|
|
16787
|
-
|
|
16788
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:hover {
|
|
16789
|
-
color: #fff;
|
|
16790
|
-
}
|
|
16791
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:focus {
|
|
16792
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #5791ff;
|
|
16793
|
-
outline: 0;
|
|
16794
|
-
}
|
|
16795
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:active {
|
|
16796
|
-
color: #fff;
|
|
16797
|
-
}
|
|
16798
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:disabled {
|
|
16799
|
-
box-shadow: none;
|
|
16800
|
-
color: #a7a9bc;
|
|
16801
|
-
opacity: 0.65;
|
|
16802
|
-
}
|
|
16803
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link:disabled:active {
|
|
16804
|
-
pointer-events: none;
|
|
16805
|
-
}
|
|
16806
16629
|
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 {
|
|
16807
16630
|
background-color: #393a4a;
|
|
16808
16631
|
color: #fff;
|
|
16809
|
-
background-color: #393a4a;
|
|
16810
|
-
color: #fff;
|
|
16811
16632
|
}
|
|
16812
16633
|
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .close {
|
|
16813
16634
|
color: #a7a9bc;
|
|
@@ -16869,56 +16690,6 @@ html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:disabled:
|
|
|
16869
16690
|
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link[aria-expanded=true], html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link.show {
|
|
16870
16691
|
color: #fff;
|
|
16871
16692
|
}
|
|
16872
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-title {
|
|
16873
|
-
color: inherit;
|
|
16874
|
-
}
|
|
16875
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-title .href {
|
|
16876
|
-
color: inherit;
|
|
16877
|
-
}
|
|
16878
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-subtitle {
|
|
16879
|
-
color: inherit;
|
|
16880
|
-
}
|
|
16881
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-subtitle .href {
|
|
16882
|
-
color: inherit;
|
|
16883
|
-
}
|
|
16884
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .close {
|
|
16885
|
-
color: #a7a9bc;
|
|
16886
|
-
}
|
|
16887
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .close:hover {
|
|
16888
|
-
color: #fff;
|
|
16889
|
-
}
|
|
16890
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link {
|
|
16891
|
-
border-radius: 4px;
|
|
16892
|
-
color: #a7a9bc;
|
|
16893
|
-
transition: box-shadow 0.15s ease-in-out;
|
|
16894
|
-
}
|
|
16895
|
-
@media (prefers-reduced-motion: reduce) {
|
|
16896
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link {
|
|
16897
|
-
transition: none;
|
|
16898
|
-
}
|
|
16899
|
-
}
|
|
16900
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .sidebar-dark-l2 .nav-nested .nav-link {
|
|
16901
|
-
transition: none;
|
|
16902
|
-
}
|
|
16903
|
-
|
|
16904
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:hover {
|
|
16905
|
-
color: #fff;
|
|
16906
|
-
}
|
|
16907
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:focus {
|
|
16908
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #5791ff;
|
|
16909
|
-
outline: 0;
|
|
16910
|
-
}
|
|
16911
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:active {
|
|
16912
|
-
color: #fff;
|
|
16913
|
-
}
|
|
16914
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:disabled {
|
|
16915
|
-
box-shadow: none;
|
|
16916
|
-
color: #a7a9bc;
|
|
16917
|
-
opacity: 0.65;
|
|
16918
|
-
}
|
|
16919
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link:disabled:active {
|
|
16920
|
-
pointer-events: none;
|
|
16921
|
-
}
|
|
16922
16693
|
html:not(#__):not(#___) .cadmin .c-slideout-start .sidebar-light {
|
|
16923
16694
|
box-shadow: 0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
16924
16695
|
}
|
|
@@ -16987,10 +16758,6 @@ html:not(#__):not(#___) .cadmin .c-slideout .sidebar {
|
|
|
16987
16758
|
flex-shrink: 0;
|
|
16988
16759
|
position: relative;
|
|
16989
16760
|
width: 320px;
|
|
16990
|
-
display: none;
|
|
16991
|
-
flex-shrink: 0;
|
|
16992
|
-
position: relative;
|
|
16993
|
-
width: 320px;
|
|
16994
16761
|
}
|
|
16995
16762
|
html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-body {
|
|
16996
16763
|
flex-grow: 1;
|
|
@@ -16999,12 +16766,15 @@ html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-body {
|
|
|
16999
16766
|
html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-footer {
|
|
17000
16767
|
border-top-width: 1px;
|
|
17001
16768
|
}
|
|
17002
|
-
|
|
17003
|
-
|
|
17004
|
-
|
|
17005
|
-
|
|
17006
|
-
|
|
17007
|
-
|
|
16769
|
+
@supports (position: sticky) {
|
|
16770
|
+
@media (max-height: 700px) {
|
|
16771
|
+
html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-header.sticky-top {
|
|
16772
|
+
position: static;
|
|
16773
|
+
}
|
|
16774
|
+
html:not(#__):not(#___) .cadmin .c-slideout .sidebar .sidebar-footer.sticky-bottom {
|
|
16775
|
+
position: static;
|
|
16776
|
+
}
|
|
16777
|
+
}
|
|
17008
16778
|
}
|
|
17009
16779
|
html:not(#__):not(#___) .cadmin .c-slideout .sidebar.c-slideout-show {
|
|
17010
16780
|
display: flex;
|
|
@@ -17034,7 +16804,6 @@ html:not(#__):not(#___) .cadmin .c-slideout .tbar-stacked.c-slideout-transition
|
|
|
17034
16804
|
@media (max-width: 767.98px) {
|
|
17035
16805
|
html:not(#__):not(#___) .cadmin .c-slideout .sidebar {
|
|
17036
16806
|
width: 280px;
|
|
17037
|
-
width: 280px;
|
|
17038
16807
|
}
|
|
17039
16808
|
}
|
|
17040
16809
|
html:not(#__):not(#___) .cadmin .c-slideout-start {
|
|
@@ -17048,8 +16817,6 @@ html:not(#__):not(#___) .cadmin .c-slideout-start.c-slideout-tbar-shown .sidebar
|
|
|
17048
16817
|
html:not(#__):not(#___) .cadmin .c-slideout-start .sidebar {
|
|
17049
16818
|
left: -360px;
|
|
17050
16819
|
width: 320px;
|
|
17051
|
-
left: -360px;
|
|
17052
|
-
width: 320px;
|
|
17053
16820
|
}
|
|
17054
16821
|
html:not(#__):not(#___) .cadmin .c-slideout-start .sidebar.c-slideout-show {
|
|
17055
16822
|
left: 0;
|
|
@@ -17067,8 +16834,6 @@ html:not(#__):not(#___) .cadmin .c-slideout-start .tbar-stacked.c-slideout-show
|
|
|
17067
16834
|
html:not(#__):not(#___) .cadmin .c-slideout-start .sidebar {
|
|
17068
16835
|
left: -320px;
|
|
17069
16836
|
width: 280px;
|
|
17070
|
-
left: -320px;
|
|
17071
|
-
width: 280px;
|
|
17072
16837
|
}
|
|
17073
16838
|
html:not(#__):not(#___) .cadmin .c-slideout-start .tbar-stacked {
|
|
17074
16839
|
left: -40px;
|
|
@@ -17084,7 +16849,6 @@ html:not(#__):not(#___) .cadmin .c-slideout-end.c-slideout-tbar-shown .sidebar {
|
|
|
17084
16849
|
}
|
|
17085
16850
|
html:not(#__):not(#___) .cadmin .c-slideout-end .sidebar {
|
|
17086
16851
|
right: -360px;
|
|
17087
|
-
right: -360px;
|
|
17088
16852
|
}
|
|
17089
16853
|
html:not(#__):not(#___) .cadmin .c-slideout-end .sidebar.c-slideout-show {
|
|
17090
16854
|
right: 0;
|
|
@@ -17105,7 +16869,6 @@ html:not(#__):not(#___) .cadmin .c-slideout-end .c-horizontal-resizer {
|
|
|
17105
16869
|
}
|
|
17106
16870
|
html:not(#__):not(#___) .cadmin .c-slideout-end .sidebar {
|
|
17107
16871
|
right: -320px;
|
|
17108
|
-
right: -320px;
|
|
17109
16872
|
}
|
|
17110
16873
|
html:not(#__):not(#___) .cadmin .c-slideout-end .tbar-stacked {
|
|
17111
16874
|
right: -40px;
|
|
@@ -19934,6 +19697,12 @@ html:not(#__):not(#___) .cadmin .c-focus-inset:focus:not(:disabled):not(.disable
|
|
|
19934
19697
|
border-color: #5791ff;
|
|
19935
19698
|
outline: 0;
|
|
19936
19699
|
}
|
|
19700
|
+
html:not(#__):not(#___) .cadmin .c-focus-trap {
|
|
19701
|
+
background: inherit;
|
|
19702
|
+
color: inherit;
|
|
19703
|
+
display: contents;
|
|
19704
|
+
font: inherit;
|
|
19705
|
+
}
|
|
19937
19706
|
html:not(#__):not(#___) .cadmin .autofit-row {
|
|
19938
19707
|
display: flex;
|
|
19939
19708
|
flex-wrap: nowrap;
|