@clayui/css 3.104.0 → 3.105.1-alpha.8
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 +490 -120
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +457 -47
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +451 -80
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/bookmarks-full.svg +9 -0
- package/lib/images/icons/bookmarks.svg +1 -2
- package/lib/images/icons/download.svg +2 -2
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/import-list.svg +2 -3
- package/lib/images/icons/import.svg +1 -2
- package/lib/images/icons/key.svg +9 -0
- package/lib/images/icons/upload-multiple.svg +2 -3
- package/lib/images/icons/upload.svg +1 -2
- package/package.json +2 -2
- package/src/images/icons/bookmarks-full.svg +9 -0
- package/src/images/icons/bookmarks.svg +1 -2
- package/src/images/icons/download.svg +2 -2
- package/src/images/icons/import-list.svg +2 -3
- package/src/images/icons/import.svg +1 -2
- package/src/images/icons/key.svg +9 -0
- package/src/images/icons/upload-multiple.svg +2 -3
- package/src/images/icons/upload.svg +1 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_dropdowns.scss +1 -1
- package/src/scss/atlas/variables/_range.scss +13 -11
- package/src/scss/cadmin/components/_clay-color.scss +42 -0
- package/src/scss/cadmin/components/_custom-forms.scss +1 -2
- package/src/scss/cadmin/components/_input-groups.scss +4 -0
- package/src/scss/cadmin/components/_tables.scss +14 -0
- package/src/scss/cadmin/variables/_clay-color.scss +157 -1
- package/src/scss/cadmin/variables/_custom-forms.scss +25 -2
- package/src/scss/cadmin/variables/_dropdowns.scss +1 -1
- package/src/scss/cadmin/variables/_forms.scss +23 -0
- package/src/scss/cadmin/variables/_globals.scss +6 -0
- package/src/scss/cadmin/variables/_tables.scss +45 -0
- package/src/scss/components/_clay-color.scss +42 -0
- package/src/scss/components/_custom-forms.scss +1 -2
- package/src/scss/components/_input-groups.scss +4 -0
- package/src/scss/components/_range.scss +2 -2
- package/src/scss/components/_tables.scss +14 -0
- package/src/scss/functions/_lx-icons-generated.scss +10 -6
- package/src/scss/mixins/_forms.scss +224 -5
- package/src/scss/mixins/_input-groups.scss +5 -1
- package/src/scss/mixins/_links.scss +1 -1
- package/src/scss/mixins/_tables.scss +27 -3
- package/src/scss/variables/_clay-color.scss +157 -1
- package/src/scss/variables/_custom-forms.scss +24 -1
- package/src/scss/variables/_dropdowns.scss +6 -0
- package/src/scss/variables/_forms.scss +31 -0
- package/src/scss/variables/_globals.scss +6 -0
- package/src/scss/variables/_range.scss +33 -1
- package/src/scss/variables/_tables.scss +45 -0
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.105.1-alpha.8+41563f2b8
|
|
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.105.1-alpha.8+41563f2b8
|
|
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>
|
|
@@ -249,15 +249,31 @@ html:not(#__):not(#___) .cadmin sup {
|
|
|
249
249
|
top: -0.5em;
|
|
250
250
|
}
|
|
251
251
|
html:not(#__):not(#___) .cadmin a {
|
|
252
|
+
border-radius: 1px;
|
|
252
253
|
color: #0b5fff;
|
|
253
254
|
cursor: pointer;
|
|
254
255
|
text-decoration: none;
|
|
255
256
|
text-underline-offset: 0.23em;
|
|
257
|
+
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;
|
|
256
258
|
}
|
|
259
|
+
@media (prefers-reduced-motion: reduce) {
|
|
260
|
+
html:not(#__):not(#___) .cadmin a {
|
|
261
|
+
transition: none;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin a {
|
|
265
|
+
transition: none;
|
|
266
|
+
}
|
|
267
|
+
|
|
257
268
|
html:not(#__):not(#___) .cadmin a:hover, html:not(#__):not(#___) .cadmin a.hover {
|
|
258
269
|
color: #004ad7;
|
|
259
270
|
text-decoration: underline;
|
|
260
271
|
}
|
|
272
|
+
html:not(#__):not(#___) .cadmin a.focus, html:not(#__):not(#___) .cadmin a:focus-visible,
|
|
273
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin a {
|
|
274
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
275
|
+
outline: 0;
|
|
276
|
+
}
|
|
261
277
|
html:not(#__):not(#___) .cadmin pre,
|
|
262
278
|
html:not(#__):not(#___) .cadmin code,
|
|
263
279
|
html:not(#__):not(#___) .cadmin kbd,
|
|
@@ -4991,12 +5007,12 @@ html:not(#__):not(#___) .cadmin .card-title {
|
|
|
4991
5007
|
margin-bottom: 0;
|
|
4992
5008
|
}
|
|
4993
5009
|
html:not(#__):not(#___) .cadmin .card-title[href],
|
|
4994
|
-
html:not(#__):not(#___) .cadmin .card-title [href] {
|
|
5010
|
+
html:not(#__):not(#___) .cadmin .card-title a[href] {
|
|
4995
5011
|
color: #272833;
|
|
4996
5012
|
}
|
|
4997
5013
|
html:not(#__):not(#___) .cadmin .card-title[href]:hover, html:not(#__):not(#___) .cadmin .card-title[href].hover,
|
|
4998
|
-
html:not(#__):not(#___) .cadmin .card-title [href]:hover,
|
|
4999
|
-
html:not(#__):not(#___) .cadmin .card-title [href].hover {
|
|
5014
|
+
html:not(#__):not(#___) .cadmin .card-title a[href]:hover,
|
|
5015
|
+
html:not(#__):not(#___) .cadmin .card-title a[href].hover {
|
|
5000
5016
|
color: #272833;
|
|
5001
5017
|
}
|
|
5002
5018
|
html:not(#__):not(#___) .cadmin .card-subtitle {
|
|
@@ -5007,12 +5023,12 @@ html:not(#__):not(#___) .cadmin .card-subtitle {
|
|
|
5007
5023
|
margin-top: 0;
|
|
5008
5024
|
}
|
|
5009
5025
|
html:not(#__):not(#___) .cadmin .card-subtitle[href],
|
|
5010
|
-
html:not(#__):not(#___) .cadmin .card-subtitle [href] {
|
|
5026
|
+
html:not(#__):not(#___) .cadmin .card-subtitle a[href] {
|
|
5011
5027
|
color: #6b6c7e;
|
|
5012
5028
|
}
|
|
5013
5029
|
html:not(#__):not(#___) .cadmin .card-subtitle[href]:hover, html:not(#__):not(#___) .cadmin .card-subtitle[href].hover,
|
|
5014
|
-
html:not(#__):not(#___) .cadmin .card-subtitle [href]:hover,
|
|
5015
|
-
html:not(#__):not(#___) .cadmin .card-subtitle [href].hover {
|
|
5030
|
+
html:not(#__):not(#___) .cadmin .card-subtitle a[href]:hover,
|
|
5031
|
+
html:not(#__):not(#___) .cadmin .card-subtitle a[href].hover {
|
|
5016
5032
|
color: #6b6c7e;
|
|
5017
5033
|
}
|
|
5018
5034
|
html:not(#__):not(#___) .cadmin .card-text:last-child {
|
|
@@ -5969,7 +5985,7 @@ html:not(#__):not(#___) .cadmin .dropdown-section .custom-control-label {
|
|
|
5969
5985
|
color: #6b6c7e;
|
|
5970
5986
|
}
|
|
5971
5987
|
html:not(#__):not(#___) .cadmin .dropdown-section .custom-control-label-text {
|
|
5972
|
-
padding-left:
|
|
5988
|
+
padding-left: 28px;
|
|
5973
5989
|
}
|
|
5974
5990
|
html:not(#__):not(#___) .cadmin .dropdown-section.active .custom-control-label {
|
|
5975
5991
|
color: #272833;
|
|
@@ -6529,6 +6545,12 @@ html:not(#__):not(#___) .c-prefers-focus .cadmin .form-control {
|
|
|
6529
6545
|
color: #272833;
|
|
6530
6546
|
outline: 0;
|
|
6531
6547
|
}
|
|
6548
|
+
html:not(#__):not(#___) .cadmin .form-control:focus-within:has(input:focus) {
|
|
6549
|
+
background-color: #f0f5ff;
|
|
6550
|
+
border-color: #80acff;
|
|
6551
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
6552
|
+
color: #272833;
|
|
6553
|
+
}
|
|
6532
6554
|
html:not(#__):not(#___) .cadmin .form-control:disabled, html:not(#__):not(#___) .cadmin .form-control.disabled {
|
|
6533
6555
|
background-color: #f1f2f5;
|
|
6534
6556
|
border-color: #f1f2f5;
|
|
@@ -7442,30 +7464,30 @@ html:not(#__):not(#___) .cadmin .component-title {
|
|
|
7442
7464
|
margin-top: calc((32px - (1em * 1.25)) / 2);
|
|
7443
7465
|
}
|
|
7444
7466
|
html:not(#__):not(#___) .cadmin .component-title[href],
|
|
7445
|
-
html:not(#__):not(#___) .cadmin .component-title [href] {
|
|
7467
|
+
html:not(#__):not(#___) .cadmin .component-title a[href] {
|
|
7446
7468
|
border-radius: 1px;
|
|
7447
7469
|
color: #272833;
|
|
7448
7470
|
transition: box-shadow 0.15s ease-in-out;
|
|
7449
7471
|
}
|
|
7450
7472
|
@media (prefers-reduced-motion: reduce) {
|
|
7451
7473
|
html:not(#__):not(#___) .cadmin .component-title[href],
|
|
7452
|
-
html:not(#__):not(#___) .cadmin .component-title [href] {
|
|
7474
|
+
html:not(#__):not(#___) .cadmin .component-title a[href] {
|
|
7453
7475
|
transition: none;
|
|
7454
7476
|
}
|
|
7455
7477
|
}
|
|
7456
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .component-title[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .component-title [href] {
|
|
7478
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .component-title[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .component-title a[href] {
|
|
7457
7479
|
transition: none;
|
|
7458
7480
|
}
|
|
7459
7481
|
|
|
7460
7482
|
html:not(#__):not(#___) .cadmin .component-title[href]:hover, html:not(#__):not(#___) .cadmin .component-title[href].hover,
|
|
7461
|
-
html:not(#__):not(#___) .cadmin .component-title [href]:hover,
|
|
7462
|
-
html:not(#__):not(#___) .cadmin .component-title [href].hover {
|
|
7483
|
+
html:not(#__):not(#___) .cadmin .component-title a[href]:hover,
|
|
7484
|
+
html:not(#__):not(#___) .cadmin .component-title a[href].hover {
|
|
7463
7485
|
color: #060608;
|
|
7464
7486
|
}
|
|
7465
7487
|
html:not(#__):not(#___) .cadmin .component-title[href].focus, html:not(#__):not(#___) .cadmin .component-title[href]:focus-visible,
|
|
7466
|
-
html:not(#__):not(#___) .c-prefers-focus .cadmin .component-title[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .component-title [href],
|
|
7467
|
-
html:not(#__):not(#___) .cadmin .component-title [href].focus,
|
|
7468
|
-
html:not(#__):not(#___) .cadmin .component-title [href]:focus-visible {
|
|
7488
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .component-title[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .component-title a[href],
|
|
7489
|
+
html:not(#__):not(#___) .cadmin .component-title a[href].focus,
|
|
7490
|
+
html:not(#__):not(#___) .cadmin .component-title a[href]:focus-visible {
|
|
7469
7491
|
color: #060608;
|
|
7470
7492
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
7471
7493
|
outline: 0;
|
|
@@ -7477,30 +7499,30 @@ html:not(#__):not(#___) .cadmin .component-subtitle {
|
|
|
7477
7499
|
margin-bottom: 0;
|
|
7478
7500
|
}
|
|
7479
7501
|
html:not(#__):not(#___) .cadmin .component-subtitle[href],
|
|
7480
|
-
html:not(#__):not(#___) .cadmin .component-subtitle [href] {
|
|
7502
|
+
html:not(#__):not(#___) .cadmin .component-subtitle a[href] {
|
|
7481
7503
|
border-radius: 1px;
|
|
7482
7504
|
color: #6b6c7e;
|
|
7483
7505
|
transition: box-shadow 0.15s ease-in-out;
|
|
7484
7506
|
}
|
|
7485
7507
|
@media (prefers-reduced-motion: reduce) {
|
|
7486
7508
|
html:not(#__):not(#___) .cadmin .component-subtitle[href],
|
|
7487
|
-
html:not(#__):not(#___) .cadmin .component-subtitle [href] {
|
|
7509
|
+
html:not(#__):not(#___) .cadmin .component-subtitle a[href] {
|
|
7488
7510
|
transition: none;
|
|
7489
7511
|
}
|
|
7490
7512
|
}
|
|
7491
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .component-subtitle[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .component-subtitle [href] {
|
|
7513
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .component-subtitle[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .component-subtitle a[href] {
|
|
7492
7514
|
transition: none;
|
|
7493
7515
|
}
|
|
7494
7516
|
|
|
7495
7517
|
html:not(#__):not(#___) .cadmin .component-subtitle[href]:hover, html:not(#__):not(#___) .cadmin .component-subtitle[href].hover,
|
|
7496
|
-
html:not(#__):not(#___) .cadmin .component-subtitle [href]:hover,
|
|
7497
|
-
html:not(#__):not(#___) .cadmin .component-subtitle [href].hover {
|
|
7518
|
+
html:not(#__):not(#___) .cadmin .component-subtitle a[href]:hover,
|
|
7519
|
+
html:not(#__):not(#___) .cadmin .component-subtitle a[href].hover {
|
|
7498
7520
|
color: #272833;
|
|
7499
7521
|
}
|
|
7500
7522
|
html:not(#__):not(#___) .cadmin .component-subtitle[href].focus, html:not(#__):not(#___) .cadmin .component-subtitle[href]:focus-visible,
|
|
7501
|
-
html:not(#__):not(#___) .c-prefers-focus .cadmin .component-subtitle[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .component-subtitle [href],
|
|
7502
|
-
html:not(#__):not(#___) .cadmin .component-subtitle [href].focus,
|
|
7503
|
-
html:not(#__):not(#___) .cadmin .component-subtitle [href]:focus-visible {
|
|
7523
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .component-subtitle[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .component-subtitle a[href],
|
|
7524
|
+
html:not(#__):not(#___) .cadmin .component-subtitle a[href].focus,
|
|
7525
|
+
html:not(#__):not(#___) .cadmin .component-subtitle a[href]:focus-visible {
|
|
7504
7526
|
color: #272833;
|
|
7505
7527
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
7506
7528
|
outline: 0;
|
|
@@ -7689,7 +7711,6 @@ html:not(#__):not(#___) .cadmin .clay-range-input .clay-range-thumb {
|
|
|
7689
7711
|
width: 24px;
|
|
7690
7712
|
position: absolute;
|
|
7691
7713
|
top: 50%;
|
|
7692
|
-
visibility: hidden;
|
|
7693
7714
|
margin-top: calc(24px * -0.5);
|
|
7694
7715
|
right: calc(24px * -0.5);
|
|
7695
7716
|
}
|
|
@@ -7789,11 +7810,28 @@ html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range.focus, htm
|
|
|
7789
7810
|
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-range-input {
|
|
7790
7811
|
outline: 0;
|
|
7791
7812
|
}
|
|
7813
|
+
html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range.focus ~ .clay-range-progress .clay-range-thumb, html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .clay-range-thumb,
|
|
7814
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-range-input ~ .clay-range-progress .clay-range-thumb {
|
|
7815
|
+
box-shadow: inset 0 0 0 2px #528eff, inset 0 0 0 4px #fff;
|
|
7816
|
+
}
|
|
7792
7817
|
html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip, html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .tooltip,
|
|
7793
7818
|
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-range-input ~ .clay-range-progress .tooltip {
|
|
7794
7819
|
visibility: visible;
|
|
7795
7820
|
opacity: 1;
|
|
7796
7821
|
}
|
|
7822
|
+
html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range.focus::-moz-range-thumb, html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range:focus-visible::-moz-range-thumb,
|
|
7823
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-range-input::-moz-range-thumb {
|
|
7824
|
+
box-shadow: inset 0 0 0 2px #528eff, inset 0 0 0 4px #fff;
|
|
7825
|
+
}
|
|
7826
|
+
html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range.focus::-ms-thumb, html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range:focus-visible::-ms-thumb,
|
|
7827
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-range-input::-ms-thumb {
|
|
7828
|
+
box-shadow: inset 0 0 0 2px #528eff, inset 0 0 0 4px #fff;
|
|
7829
|
+
}
|
|
7830
|
+
html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range.focus::-webkit-slider-thumb, html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range:focus-visible::-webkit-slider-thumb,
|
|
7831
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-range-input::-webkit-slider-thumb {
|
|
7832
|
+
box-shadow: inset 0 0 0 2px #528eff, inset 0 0 0 4px #fff;
|
|
7833
|
+
}
|
|
7834
|
+
|
|
7797
7835
|
html:not(#__):not(#___) .cadmin .clay-range-input .form-control-range:disabled {
|
|
7798
7836
|
color: #a7a9bc;
|
|
7799
7837
|
cursor: not-allowed;
|
|
@@ -7888,7 +7926,7 @@ html:not(#__):not(#___) .cadmin .clay-color > .input-group-item > .input-group-t
|
|
|
7888
7926
|
padding-right: 0;
|
|
7889
7927
|
}
|
|
7890
7928
|
html:not(#__):not(#___) .cadmin .clay-color-dropdown-menu {
|
|
7891
|
-
max-height:
|
|
7929
|
+
max-height: 500px;
|
|
7892
7930
|
max-width: none;
|
|
7893
7931
|
padding-bottom: 0;
|
|
7894
7932
|
padding-left: 16px;
|
|
@@ -8089,6 +8127,255 @@ html:not(#__):not(#___) .cadmin .clay-color-range-pointer {
|
|
|
8089
8127
|
margin-top: -7px;
|
|
8090
8128
|
top: 50%;
|
|
8091
8129
|
}
|
|
8130
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input {
|
|
8131
|
+
border-radius: 100px;
|
|
8132
|
+
}
|
|
8133
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .clay-range-track {
|
|
8134
|
+
border-radius: inherit;
|
|
8135
|
+
height: 8px;
|
|
8136
|
+
margin-top: -4px;
|
|
8137
|
+
}
|
|
8138
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .clay-range-progress {
|
|
8139
|
+
background-color: transparent;
|
|
8140
|
+
border-radius: inherit;
|
|
8141
|
+
height: 8px;
|
|
8142
|
+
margin-top: -4px;
|
|
8143
|
+
width: 100%;
|
|
8144
|
+
}
|
|
8145
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .clay-range-thumb {
|
|
8146
|
+
background-color: currentColor;
|
|
8147
|
+
border-width: 0;
|
|
8148
|
+
box-shadow: 0 0 0 2px #fff;
|
|
8149
|
+
height: 10px;
|
|
8150
|
+
margin-top: -5px;
|
|
8151
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
8152
|
+
visibility: hidden;
|
|
8153
|
+
width: 10px;
|
|
8154
|
+
}
|
|
8155
|
+
@media (prefers-reduced-motion: reduce) {
|
|
8156
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .clay-range-thumb {
|
|
8157
|
+
transition: none;
|
|
8158
|
+
}
|
|
8159
|
+
}
|
|
8160
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .clay-color-slider .clay-range-input .clay-range-thumb {
|
|
8161
|
+
transition: none;
|
|
8162
|
+
}
|
|
8163
|
+
|
|
8164
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range {
|
|
8165
|
+
background-color: inherit;
|
|
8166
|
+
border-radius: inherit;
|
|
8167
|
+
color: inherit;
|
|
8168
|
+
height: 8px;
|
|
8169
|
+
content: "10px";
|
|
8170
|
+
}
|
|
8171
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-moz-range-thumb {
|
|
8172
|
+
visibility: visible;
|
|
8173
|
+
background-color: currentColor;
|
|
8174
|
+
border-width: 0;
|
|
8175
|
+
box-shadow: 0 0 0 2px #fff;
|
|
8176
|
+
height: 10px;
|
|
8177
|
+
margin-top: -5px;
|
|
8178
|
+
width: 10px;
|
|
8179
|
+
}
|
|
8180
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-moz-range-track {
|
|
8181
|
+
-moz-appearance: none;
|
|
8182
|
+
appearance: none;
|
|
8183
|
+
height: 100%;
|
|
8184
|
+
}
|
|
8185
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-ms-fill-lower {
|
|
8186
|
+
background-color: transparent;
|
|
8187
|
+
}
|
|
8188
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-ms-fill-upper {
|
|
8189
|
+
background-color: transparent;
|
|
8190
|
+
}
|
|
8191
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-ms-thumb {
|
|
8192
|
+
visibility: visible;
|
|
8193
|
+
}
|
|
8194
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-ms-tooltip {
|
|
8195
|
+
display: none;
|
|
8196
|
+
}
|
|
8197
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-ms-track {
|
|
8198
|
+
background-color: transparent;
|
|
8199
|
+
border-color: transparent;
|
|
8200
|
+
border-style: solid;
|
|
8201
|
+
border-width: 0;
|
|
8202
|
+
color: transparent;
|
|
8203
|
+
height: 100%;
|
|
8204
|
+
}
|
|
8205
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-webkit-slider-runnable-track {
|
|
8206
|
+
-webkit-appearance: none;
|
|
8207
|
+
-moz-appearance: none;
|
|
8208
|
+
-webkit-appearance: none;
|
|
8209
|
+
appearance: none;
|
|
8210
|
+
}
|
|
8211
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-webkit-slider-runnable-track::-ms-expand {
|
|
8212
|
+
display: none;
|
|
8213
|
+
}
|
|
8214
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range::-webkit-slider-thumb {
|
|
8215
|
+
visibility: visible;
|
|
8216
|
+
background-color: currentColor;
|
|
8217
|
+
border-width: 0;
|
|
8218
|
+
box-shadow: 0 0 0 2px #fff;
|
|
8219
|
+
height: 10px;
|
|
8220
|
+
margin-top: -5px;
|
|
8221
|
+
width: 10px;
|
|
8222
|
+
}
|
|
8223
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range:hover ~ .clay-range-progress .tooltip {
|
|
8224
|
+
visibility: visible;
|
|
8225
|
+
opacity: 1;
|
|
8226
|
+
}
|
|
8227
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range.focus ~ .clay-range-progress .clay-range-thumb, html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .clay-range-thumb,
|
|
8228
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-color-slider .clay-range-input ~ .clay-range-progress .clay-range-thumb {
|
|
8229
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
8230
|
+
}
|
|
8231
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip, html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .tooltip,
|
|
8232
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-color-slider .clay-range-input ~ .clay-range-progress .tooltip {
|
|
8233
|
+
visibility: visible;
|
|
8234
|
+
opacity: 1;
|
|
8235
|
+
}
|
|
8236
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range.focus::-moz-range-thumb, html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range:focus-visible::-moz-range-thumb,
|
|
8237
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-color-slider .clay-range-input::-moz-range-thumb {
|
|
8238
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
8239
|
+
}
|
|
8240
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range.focus::-ms-thumb, html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range:focus-visible::-ms-thumb,
|
|
8241
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-color-slider .clay-range-input::-ms-thumb {
|
|
8242
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
8243
|
+
}
|
|
8244
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range.focus::-webkit-slider-thumb, html:not(#__):not(#___) .cadmin .clay-color-slider .clay-range-input .form-control-range:focus-visible::-webkit-slider-thumb,
|
|
8245
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-color-slider .clay-range-input::-webkit-slider-thumb {
|
|
8246
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
8247
|
+
}
|
|
8248
|
+
|
|
8249
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input {
|
|
8250
|
+
color: #26affd;
|
|
8251
|
+
}
|
|
8252
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .clay-range-track {
|
|
8253
|
+
background-image: linear-gradient(270deg, #fc0d1b 0%, #fc22d6 18.23%, #1824fb 34.25%, #2bf6fd 50.28%, #2bfd2e 67.58%, #fcfd37 81.22%, #fc121b 100%);
|
|
8254
|
+
}
|
|
8255
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range {
|
|
8256
|
+
content: "";
|
|
8257
|
+
}
|
|
8258
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range::-moz-range-track {
|
|
8259
|
+
-moz-appearance: none;
|
|
8260
|
+
appearance: none;
|
|
8261
|
+
height: 100%;
|
|
8262
|
+
}
|
|
8263
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range::-ms-fill-lower {
|
|
8264
|
+
background-color: transparent;
|
|
8265
|
+
}
|
|
8266
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range::-ms-fill-upper {
|
|
8267
|
+
background-color: transparent;
|
|
8268
|
+
}
|
|
8269
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range::-ms-tooltip {
|
|
8270
|
+
display: none;
|
|
8271
|
+
}
|
|
8272
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range::-ms-track {
|
|
8273
|
+
background-color: transparent;
|
|
8274
|
+
border-color: transparent;
|
|
8275
|
+
border-style: solid;
|
|
8276
|
+
border-width: 0;
|
|
8277
|
+
color: transparent;
|
|
8278
|
+
height: 100%;
|
|
8279
|
+
}
|
|
8280
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range::-webkit-slider-runnable-track {
|
|
8281
|
+
-webkit-appearance: none;
|
|
8282
|
+
appearance: none;
|
|
8283
|
+
height: 100%;
|
|
8284
|
+
}
|
|
8285
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range:hover ~ .clay-range-progress .tooltip {
|
|
8286
|
+
visibility: visible;
|
|
8287
|
+
opacity: 1;
|
|
8288
|
+
}
|
|
8289
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip, html:not(#__):not(#___) .cadmin .clay-color-slider-hue .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .tooltip,
|
|
8290
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-color-slider-hue .clay-range-input ~ .clay-range-progress .tooltip {
|
|
8291
|
+
visibility: visible;
|
|
8292
|
+
opacity: 1;
|
|
8293
|
+
}
|
|
8294
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input {
|
|
8295
|
+
color: #000;
|
|
8296
|
+
}
|
|
8297
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .clay-range-track {
|
|
8298
|
+
background-color: #fff;
|
|
8299
|
+
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%);
|
|
8300
|
+
background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
|
|
8301
|
+
background-size: 8px 8px;
|
|
8302
|
+
}
|
|
8303
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .clay-range-progress {
|
|
8304
|
+
background-image: linear-gradient(90deg, transparent 0%, currentcolor 100%);
|
|
8305
|
+
}
|
|
8306
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range {
|
|
8307
|
+
color: inherit;
|
|
8308
|
+
content: "";
|
|
8309
|
+
}
|
|
8310
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range::-moz-range-track {
|
|
8311
|
+
-moz-appearance: none;
|
|
8312
|
+
appearance: none;
|
|
8313
|
+
height: 100%;
|
|
8314
|
+
}
|
|
8315
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range::-ms-fill-lower {
|
|
8316
|
+
background-color: transparent;
|
|
8317
|
+
}
|
|
8318
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range::-ms-fill-upper {
|
|
8319
|
+
background-color: transparent;
|
|
8320
|
+
}
|
|
8321
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range::-ms-tooltip {
|
|
8322
|
+
display: none;
|
|
8323
|
+
}
|
|
8324
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range::-ms-track {
|
|
8325
|
+
background-color: transparent;
|
|
8326
|
+
border-color: transparent;
|
|
8327
|
+
border-style: solid;
|
|
8328
|
+
border-width: 0;
|
|
8329
|
+
color: transparent;
|
|
8330
|
+
height: 100%;
|
|
8331
|
+
}
|
|
8332
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range::-webkit-slider-runnable-track {
|
|
8333
|
+
-webkit-appearance: none;
|
|
8334
|
+
appearance: none;
|
|
8335
|
+
height: 100%;
|
|
8336
|
+
}
|
|
8337
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range:hover ~ .clay-range-progress .tooltip {
|
|
8338
|
+
visibility: visible;
|
|
8339
|
+
opacity: 1;
|
|
8340
|
+
}
|
|
8341
|
+
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range.focus ~ .clay-range-progress .tooltip, html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range:focus-visible ~ .clay-range-progress .tooltip,
|
|
8342
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .clay-color-slider-alpha .clay-range-input ~ .clay-range-progress .tooltip {
|
|
8343
|
+
visibility: visible;
|
|
8344
|
+
opacity: 1;
|
|
8345
|
+
}
|
|
8346
|
+
html:not(#__):not(#___) .cadmin .clay-color-form-group {
|
|
8347
|
+
display: flex;
|
|
8348
|
+
align-items: center;
|
|
8349
|
+
margin-top: 4px;
|
|
8350
|
+
margin-bottom: 16px;
|
|
8351
|
+
}
|
|
8352
|
+
html:not(#__):not(#___) .cadmin .clay-color-form-group .clay-range {
|
|
8353
|
+
flex-grow: 1;
|
|
8354
|
+
flex-shrink: 0;
|
|
8355
|
+
margin-right: 16px;
|
|
8356
|
+
width: 144px;
|
|
8357
|
+
}
|
|
8358
|
+
html:not(#__):not(#___) .cadmin .clay-color-form-group .form-control {
|
|
8359
|
+
padding-left: 0;
|
|
8360
|
+
padding-right: 10%;
|
|
8361
|
+
text-align: right;
|
|
8362
|
+
}
|
|
8363
|
+
html:not(#__):not(#___) .cadmin .clay-color-form-group .input-group {
|
|
8364
|
+
align-items: stretch;
|
|
8365
|
+
display: flex;
|
|
8366
|
+
flex-wrap: wrap;
|
|
8367
|
+
position: relative;
|
|
8368
|
+
width: 100%;
|
|
8369
|
+
}
|
|
8370
|
+
html:not(#__):not(#___) .cadmin .clay-color-form-group .input-group .btn-unstyled {
|
|
8371
|
+
color: inherit;
|
|
8372
|
+
}
|
|
8373
|
+
html:not(#__):not(#___) .cadmin .clay-color-form-group .input-group .input-group-inset-item-before {
|
|
8374
|
+
font-weight: 600;
|
|
8375
|
+
padding-left: 10%;
|
|
8376
|
+
padding-right: 0;
|
|
8377
|
+
min-width: 18px;
|
|
8378
|
+
}
|
|
8092
8379
|
html:not(#__):not(#___) .cadmin .form-group-sm .clay-color.input-group > .input-group-item > .input-group-inset-item-before, html:not(#__):not(#___) .cadmin .clay-color.input-group-sm > .input-group-item > .input-group-inset-item-before {
|
|
8093
8380
|
padding-left: 12px;
|
|
8094
8381
|
}
|
|
@@ -8102,8 +8389,25 @@ html:not(#__):not(#___) .cadmin .form-group-sm .clay-color.input-group > .input-
|
|
|
8102
8389
|
width: 20px;
|
|
8103
8390
|
}
|
|
8104
8391
|
html:not(#__):not(#___) .cadmin .form-file {
|
|
8392
|
+
border-radius: 4px;
|
|
8105
8393
|
display: flex;
|
|
8106
8394
|
position: relative;
|
|
8395
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
8396
|
+
}
|
|
8397
|
+
@media (prefers-reduced-motion: reduce) {
|
|
8398
|
+
html:not(#__):not(#___) .cadmin .form-file {
|
|
8399
|
+
transition: none;
|
|
8400
|
+
}
|
|
8401
|
+
}
|
|
8402
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .form-file {
|
|
8403
|
+
transition: none;
|
|
8404
|
+
}
|
|
8405
|
+
|
|
8406
|
+
html:not(#__):not(#___) .cadmin .form-file:focus-within:has(input:focus) {
|
|
8407
|
+
background-color: #f0f5ff;
|
|
8408
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
8409
|
+
outline: 0;
|
|
8410
|
+
z-index: 1;
|
|
8107
8411
|
}
|
|
8108
8412
|
html:not(#__):not(#___) .cadmin .form-file-input {
|
|
8109
8413
|
cursor: pointer;
|
|
@@ -8156,7 +8460,7 @@ html:not(#__):not(#___) .cadmin .custom-control-label {
|
|
|
8156
8460
|
}
|
|
8157
8461
|
html:not(#__):not(#___) .cadmin .custom-control-label::before {
|
|
8158
8462
|
background-color: #fff;
|
|
8159
|
-
border-color: #
|
|
8463
|
+
border-color: #6b6c7e;
|
|
8160
8464
|
border-style: solid;
|
|
8161
8465
|
border-width: 1px;
|
|
8162
8466
|
box-shadow: none;
|
|
@@ -8196,7 +8500,8 @@ html:not(#__):not(#___) .cadmin label.custom-control-label {
|
|
|
8196
8500
|
font-size: 14px;
|
|
8197
8501
|
}
|
|
8198
8502
|
html:not(#__):not(#___) .cadmin .custom-control-label-text {
|
|
8199
|
-
|
|
8503
|
+
display: block;
|
|
8504
|
+
padding-left: calc( 16px + 8px );
|
|
8200
8505
|
}
|
|
8201
8506
|
html:not(#__):not(#___) .cadmin .custom-control-label-text small,
|
|
8202
8507
|
html:not(#__):not(#___) .cadmin .custom-control-label-text .small {
|
|
@@ -8207,7 +8512,7 @@ html:not(#__):not(#___) .cadmin .custom-control-primary .custom-control-label-te
|
|
|
8207
8512
|
}
|
|
8208
8513
|
html:not(#__):not(#___) .cadmin .custom-control-label::before {
|
|
8209
8514
|
background-color: #fff;
|
|
8210
|
-
border-color: #
|
|
8515
|
+
border-color: #6b6c7e;
|
|
8211
8516
|
border-style: solid;
|
|
8212
8517
|
border-width: 1px;
|
|
8213
8518
|
box-shadow: none;
|
|
@@ -8255,12 +8560,12 @@ html:not(#__):not(#___) .cadmin .custom-control-input {
|
|
|
8255
8560
|
}
|
|
8256
8561
|
html:not(#__):not(#___) .cadmin .custom-control-input:focus-visible ~ .custom-control-label::before,
|
|
8257
8562
|
html:not(#__):not(#___) .c-prefers-focus .cadmin .custom-control-input ~ .custom-control-label::before {
|
|
8258
|
-
border-color: #
|
|
8563
|
+
border-color: #6b6c7e;
|
|
8259
8564
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
8260
8565
|
}
|
|
8261
8566
|
html:not(#__):not(#___) .cadmin .custom-control-input:active ~ .custom-control-label::before {
|
|
8262
8567
|
background-color: #fff;
|
|
8263
|
-
border-color: #
|
|
8568
|
+
border-color: #6b6c7e;
|
|
8264
8569
|
color: #fff;
|
|
8265
8570
|
}
|
|
8266
8571
|
html:not(#__):not(#___) .cadmin .custom-control-input[disabled], html:not(#__):not(#___) .cadmin .custom-control-input:disabled {
|
|
@@ -9232,6 +9537,25 @@ html:not(#__):not(#___) .cadmin .input-group-item-shrink {
|
|
|
9232
9537
|
flex-grow: 0;
|
|
9233
9538
|
width: auto;
|
|
9234
9539
|
}
|
|
9540
|
+
html:not(#__):not(#___) .cadmin .input-group-item-focusable {
|
|
9541
|
+
border-radius: 4px;
|
|
9542
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
9543
|
+
}
|
|
9544
|
+
@media (prefers-reduced-motion: reduce) {
|
|
9545
|
+
html:not(#__):not(#___) .cadmin .input-group-item-focusable {
|
|
9546
|
+
transition: none;
|
|
9547
|
+
}
|
|
9548
|
+
}
|
|
9549
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .input-group-item-focusable {
|
|
9550
|
+
transition: none;
|
|
9551
|
+
}
|
|
9552
|
+
|
|
9553
|
+
html:not(#__):not(#___) .cadmin .input-group-item-focusable:focus-within:has(input:focus) {
|
|
9554
|
+
background-color: #f0f5ff;
|
|
9555
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
9556
|
+
outline: 0;
|
|
9557
|
+
z-index: 1;
|
|
9558
|
+
}
|
|
9235
9559
|
html:not(#__):not(#___) .cadmin .input-group-text {
|
|
9236
9560
|
align-items: center;
|
|
9237
9561
|
background-color: #e7e7ed;
|
|
@@ -9713,7 +10037,7 @@ html:not(#__):not(#___) .cadmin .list-group-title {
|
|
|
9713
10037
|
margin-top: -4px;
|
|
9714
10038
|
}
|
|
9715
10039
|
html:not(#__):not(#___) .cadmin .list-group-title[href],
|
|
9716
|
-
html:not(#__):not(#___) .cadmin .list-group-title [href] {
|
|
10040
|
+
html:not(#__):not(#___) .cadmin .list-group-title a[href] {
|
|
9717
10041
|
border-radius: 1px;
|
|
9718
10042
|
color: #272833;
|
|
9719
10043
|
display: inline-block;
|
|
@@ -9723,23 +10047,23 @@ html:not(#__):not(#___) .cadmin .list-group-title [href] {
|
|
|
9723
10047
|
}
|
|
9724
10048
|
@media (prefers-reduced-motion: reduce) {
|
|
9725
10049
|
html:not(#__):not(#___) .cadmin .list-group-title[href],
|
|
9726
|
-
html:not(#__):not(#___) .cadmin .list-group-title [href] {
|
|
10050
|
+
html:not(#__):not(#___) .cadmin .list-group-title a[href] {
|
|
9727
10051
|
transition: none;
|
|
9728
10052
|
}
|
|
9729
10053
|
}
|
|
9730
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-title[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-title [href] {
|
|
10054
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-title[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-title a[href] {
|
|
9731
10055
|
transition: none;
|
|
9732
10056
|
}
|
|
9733
10057
|
|
|
9734
10058
|
html:not(#__):not(#___) .cadmin .list-group-title[href]:hover, html:not(#__):not(#___) .cadmin .list-group-title[href].hover,
|
|
9735
|
-
html:not(#__):not(#___) .cadmin .list-group-title [href]:hover,
|
|
9736
|
-
html:not(#__):not(#___) .cadmin .list-group-title [href].hover {
|
|
10059
|
+
html:not(#__):not(#___) .cadmin .list-group-title a[href]:hover,
|
|
10060
|
+
html:not(#__):not(#___) .cadmin .list-group-title a[href].hover {
|
|
9737
10061
|
color: #272833;
|
|
9738
10062
|
}
|
|
9739
10063
|
html:not(#__):not(#___) .cadmin .list-group-title[href].focus, html:not(#__):not(#___) .cadmin .list-group-title[href]:focus-visible,
|
|
9740
|
-
html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-title[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-title [href],
|
|
9741
|
-
html:not(#__):not(#___) .cadmin .list-group-title [href].focus,
|
|
9742
|
-
html:not(#__):not(#___) .cadmin .list-group-title [href]:focus-visible {
|
|
10064
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-title[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-title a[href],
|
|
10065
|
+
html:not(#__):not(#___) .cadmin .list-group-title a[href].focus,
|
|
10066
|
+
html:not(#__):not(#___) .cadmin .list-group-title a[href]:focus-visible {
|
|
9743
10067
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
9744
10068
|
outline: 0;
|
|
9745
10069
|
}
|
|
@@ -9748,7 +10072,7 @@ html:not(#__):not(#___) .cadmin .list-group-subtitle {
|
|
|
9748
10072
|
margin-bottom: 0;
|
|
9749
10073
|
}
|
|
9750
10074
|
html:not(#__):not(#___) .cadmin .list-group-subtitle[href],
|
|
9751
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle [href] {
|
|
10075
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle a[href] {
|
|
9752
10076
|
border-radius: 1px;
|
|
9753
10077
|
color: #6b6c7e;
|
|
9754
10078
|
display: inline-block;
|
|
@@ -9757,23 +10081,23 @@ html:not(#__):not(#___) .cadmin .list-group-subtitle [href] {
|
|
|
9757
10081
|
}
|
|
9758
10082
|
@media (prefers-reduced-motion: reduce) {
|
|
9759
10083
|
html:not(#__):not(#___) .cadmin .list-group-subtitle[href],
|
|
9760
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle [href] {
|
|
10084
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle a[href] {
|
|
9761
10085
|
transition: none;
|
|
9762
10086
|
}
|
|
9763
10087
|
}
|
|
9764
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-subtitle[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-subtitle [href] {
|
|
10088
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-subtitle[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-subtitle a[href] {
|
|
9765
10089
|
transition: none;
|
|
9766
10090
|
}
|
|
9767
10091
|
|
|
9768
10092
|
html:not(#__):not(#___) .cadmin .list-group-subtitle[href]:hover, html:not(#__):not(#___) .cadmin .list-group-subtitle[href].hover,
|
|
9769
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle [href]:hover,
|
|
9770
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle [href].hover {
|
|
10093
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle a[href]:hover,
|
|
10094
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle a[href].hover {
|
|
9771
10095
|
color: #272833;
|
|
9772
10096
|
}
|
|
9773
10097
|
html:not(#__):not(#___) .cadmin .list-group-subtitle[href].focus, html:not(#__):not(#___) .cadmin .list-group-subtitle[href]:focus-visible,
|
|
9774
|
-
html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-subtitle[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-subtitle [href],
|
|
9775
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle [href].focus,
|
|
9776
|
-
html:not(#__):not(#___) .cadmin .list-group-subtitle [href]:focus-visible {
|
|
10098
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-subtitle[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-subtitle a[href],
|
|
10099
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle a[href].focus,
|
|
10100
|
+
html:not(#__):not(#___) .cadmin .list-group-subtitle a[href]:focus-visible {
|
|
9777
10101
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
9778
10102
|
outline: 0;
|
|
9779
10103
|
}
|
|
@@ -9782,7 +10106,7 @@ html:not(#__):not(#___) .cadmin .list-group-text {
|
|
|
9782
10106
|
margin-bottom: 0;
|
|
9783
10107
|
}
|
|
9784
10108
|
html:not(#__):not(#___) .cadmin .list-group-text[href],
|
|
9785
|
-
html:not(#__):not(#___) .cadmin .list-group-text [href] {
|
|
10109
|
+
html:not(#__):not(#___) .cadmin .list-group-text a[href] {
|
|
9786
10110
|
border-radius: 1px;
|
|
9787
10111
|
color: #6b6c7e;
|
|
9788
10112
|
display: inline-block;
|
|
@@ -9791,23 +10115,23 @@ html:not(#__):not(#___) .cadmin .list-group-text [href] {
|
|
|
9791
10115
|
}
|
|
9792
10116
|
@media (prefers-reduced-motion: reduce) {
|
|
9793
10117
|
html:not(#__):not(#___) .cadmin .list-group-text[href],
|
|
9794
|
-
html:not(#__):not(#___) .cadmin .list-group-text [href] {
|
|
10118
|
+
html:not(#__):not(#___) .cadmin .list-group-text a[href] {
|
|
9795
10119
|
transition: none;
|
|
9796
10120
|
}
|
|
9797
10121
|
}
|
|
9798
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-text[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-text [href] {
|
|
10122
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-text[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-text a[href] {
|
|
9799
10123
|
transition: none;
|
|
9800
10124
|
}
|
|
9801
10125
|
|
|
9802
10126
|
html:not(#__):not(#___) .cadmin .list-group-text[href]:hover, html:not(#__):not(#___) .cadmin .list-group-text[href].hover,
|
|
9803
|
-
html:not(#__):not(#___) .cadmin .list-group-text [href]:hover,
|
|
9804
|
-
html:not(#__):not(#___) .cadmin .list-group-text [href].hover {
|
|
10127
|
+
html:not(#__):not(#___) .cadmin .list-group-text a[href]:hover,
|
|
10128
|
+
html:not(#__):not(#___) .cadmin .list-group-text a[href].hover {
|
|
9805
10129
|
color: #272833;
|
|
9806
10130
|
}
|
|
9807
10131
|
html:not(#__):not(#___) .cadmin .list-group-text[href].focus, html:not(#__):not(#___) .cadmin .list-group-text[href]:focus-visible,
|
|
9808
|
-
html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-text[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-text [href],
|
|
9809
|
-
html:not(#__):not(#___) .cadmin .list-group-text [href].focus,
|
|
9810
|
-
html:not(#__):not(#___) .cadmin .list-group-text [href]:focus-visible {
|
|
10132
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-text[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-text a[href],
|
|
10133
|
+
html:not(#__):not(#___) .cadmin .list-group-text a[href].focus,
|
|
10134
|
+
html:not(#__):not(#___) .cadmin .list-group-text a[href]:focus-visible {
|
|
9811
10135
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
9812
10136
|
outline: 0;
|
|
9813
10137
|
}
|
|
@@ -9817,7 +10141,7 @@ html:not(#__):not(#___) .cadmin .list-group-subtext {
|
|
|
9817
10141
|
margin-top: 8px;
|
|
9818
10142
|
}
|
|
9819
10143
|
html:not(#__):not(#___) .cadmin .list-group-subtext[href],
|
|
9820
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext [href] {
|
|
10144
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext a[href] {
|
|
9821
10145
|
border-radius: 1px;
|
|
9822
10146
|
color: #6b6c7e;
|
|
9823
10147
|
display: inline-block;
|
|
@@ -9826,23 +10150,23 @@ html:not(#__):not(#___) .cadmin .list-group-subtext [href] {
|
|
|
9826
10150
|
}
|
|
9827
10151
|
@media (prefers-reduced-motion: reduce) {
|
|
9828
10152
|
html:not(#__):not(#___) .cadmin .list-group-subtext[href],
|
|
9829
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext [href] {
|
|
10153
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext a[href] {
|
|
9830
10154
|
transition: none;
|
|
9831
10155
|
}
|
|
9832
10156
|
}
|
|
9833
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-subtext[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-subtext [href] {
|
|
10157
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-subtext[href], html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .list-group-subtext a[href] {
|
|
9834
10158
|
transition: none;
|
|
9835
10159
|
}
|
|
9836
10160
|
|
|
9837
10161
|
html:not(#__):not(#___) .cadmin .list-group-subtext[href]:hover, html:not(#__):not(#___) .cadmin .list-group-subtext[href].hover,
|
|
9838
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext [href]:hover,
|
|
9839
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext [href].hover {
|
|
10162
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext a[href]:hover,
|
|
10163
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext a[href].hover {
|
|
9840
10164
|
color: #272833;
|
|
9841
10165
|
}
|
|
9842
10166
|
html:not(#__):not(#___) .cadmin .list-group-subtext[href].focus, html:not(#__):not(#___) .cadmin .list-group-subtext[href]:focus-visible,
|
|
9843
|
-
html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-subtext[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-subtext [href],
|
|
9844
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext [href].focus,
|
|
9845
|
-
html:not(#__):not(#___) .cadmin .list-group-subtext [href]:focus-visible {
|
|
10167
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-subtext[href], html:not(#__):not(#___) .c-prefers-focus .cadmin .list-group-subtext a[href],
|
|
10168
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext a[href].focus,
|
|
10169
|
+
html:not(#__):not(#___) .cadmin .list-group-subtext a[href]:focus-visible {
|
|
9846
10170
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
9847
10171
|
outline: 0;
|
|
9848
10172
|
}
|
|
@@ -15270,7 +15594,7 @@ html:not(#__):not(#___) .cadmin .sidebar-header .component-title {
|
|
|
15270
15594
|
font-weight: 600;
|
|
15271
15595
|
}
|
|
15272
15596
|
html:not(#__):not(#___) .cadmin .sidebar-header .component-title[href],
|
|
15273
|
-
html:not(#__):not(#___) .cadmin .sidebar-header .component-title [href] {
|
|
15597
|
+
html:not(#__):not(#___) .cadmin .sidebar-header .component-title a[href] {
|
|
15274
15598
|
color: #272833;
|
|
15275
15599
|
}
|
|
15276
15600
|
html:not(#__):not(#___) .cadmin .sidebar-header .component-subtitle {
|
|
@@ -15379,7 +15703,7 @@ html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dt {
|
|
|
15379
15703
|
color: #6b6c7e;
|
|
15380
15704
|
}
|
|
15381
15705
|
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dd[href],
|
|
15382
|
-
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dd [href] {
|
|
15706
|
+
html:not(#__):not(#___) .cadmin .sidebar-light .sidebar-dd a[href] {
|
|
15383
15707
|
color: #272833;
|
|
15384
15708
|
}
|
|
15385
15709
|
html:not(#__):not(#___) .cadmin .sidebar-light .panel-unstyled .panel-header.panel-header-link.focus, html:not(#__):not(#___) .cadmin .sidebar-light .panel-unstyled .panel-header.panel-header-link:focus-visible,
|
|
@@ -15440,14 +15764,14 @@ html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title {
|
|
|
15440
15764
|
color: inherit;
|
|
15441
15765
|
}
|
|
15442
15766
|
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title[href],
|
|
15443
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title [href] {
|
|
15767
|
+
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-title a[href] {
|
|
15444
15768
|
color: inherit;
|
|
15445
15769
|
}
|
|
15446
15770
|
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle {
|
|
15447
15771
|
color: inherit;
|
|
15448
15772
|
}
|
|
15449
15773
|
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle[href],
|
|
15450
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle [href] {
|
|
15774
|
+
html:not(#__):not(#___) .cadmin .sidebar-dark .sidebar-header .component-subtitle a[href] {
|
|
15451
15775
|
color: inherit;
|
|
15452
15776
|
}
|
|
15453
15777
|
html:not(#__):not(#___) .cadmin .sidebar-dark .nav-nested .nav-link {
|
|
@@ -15503,14 +15827,14 @@ html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-titl
|
|
|
15503
15827
|
color: inherit;
|
|
15504
15828
|
}
|
|
15505
15829
|
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-title[href],
|
|
15506
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-title [href] {
|
|
15830
|
+
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-title a[href] {
|
|
15507
15831
|
color: inherit;
|
|
15508
15832
|
}
|
|
15509
15833
|
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-subtitle {
|
|
15510
15834
|
color: inherit;
|
|
15511
15835
|
}
|
|
15512
15836
|
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-subtitle[href],
|
|
15513
|
-
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-subtitle [href] {
|
|
15837
|
+
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .sidebar-header .component-subtitle a[href] {
|
|
15514
15838
|
color: inherit;
|
|
15515
15839
|
}
|
|
15516
15840
|
html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link {
|
|
@@ -15734,25 +16058,25 @@ html:not(#__):not(#___) .cadmin .table thead td {
|
|
|
15734
16058
|
border-top-width: 0;
|
|
15735
16059
|
vertical-align: bottom;
|
|
15736
16060
|
}
|
|
15737
|
-
html:not(#__):not(#___) .cadmin .table thead th [href] {
|
|
16061
|
+
html:not(#__):not(#___) .cadmin .table thead th a[href] {
|
|
15738
16062
|
border-radius: 1px;
|
|
15739
16063
|
color: #6b6c7e;
|
|
15740
16064
|
transition: box-shadow 0.15s ease-in-out;
|
|
15741
16065
|
}
|
|
15742
16066
|
@media (prefers-reduced-motion: reduce) {
|
|
15743
|
-
html:not(#__):not(#___) .cadmin .table thead th [href] {
|
|
16067
|
+
html:not(#__):not(#___) .cadmin .table thead th a[href] {
|
|
15744
16068
|
transition: none;
|
|
15745
16069
|
}
|
|
15746
16070
|
}
|
|
15747
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .table thead th [href] {
|
|
16071
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .table thead th a[href] {
|
|
15748
16072
|
transition: none;
|
|
15749
16073
|
}
|
|
15750
16074
|
|
|
15751
|
-
html:not(#__):not(#___) .cadmin .table thead th [href]:hover, html:not(#__):not(#___) .cadmin .table thead th [href].hover {
|
|
16075
|
+
html:not(#__):not(#___) .cadmin .table thead th a[href]:hover, html:not(#__):not(#___) .cadmin .table thead th a[href].hover {
|
|
15752
16076
|
color: #272833;
|
|
15753
16077
|
}
|
|
15754
|
-
html:not(#__):not(#___) .cadmin .table thead th [href].focus, html:not(#__):not(#___) .cadmin .table thead th [href]:focus-visible,
|
|
15755
|
-
html:not(#__):not(#___) .c-prefers-focus .cadmin .table thead th [href] {
|
|
16078
|
+
html:not(#__):not(#___) .cadmin .table thead th a[href].focus, html:not(#__):not(#___) .cadmin .table thead th a[href]:focus-visible,
|
|
16079
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .table thead th a[href] {
|
|
15756
16080
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #528eff;
|
|
15757
16081
|
outline: 0;
|
|
15758
16082
|
}
|
|
@@ -15837,8 +16161,8 @@ html:not(#__):not(#___) .cadmin .table .table-disabled td {
|
|
|
15837
16161
|
background-color: #fff;
|
|
15838
16162
|
cursor: not-allowed;
|
|
15839
16163
|
}
|
|
15840
|
-
html:not(#__):not(#___) .cadmin .table .table-disabled th [href],
|
|
15841
|
-
html:not(#__):not(#___) .cadmin .table .table-disabled td [href] {
|
|
16164
|
+
html:not(#__):not(#___) .cadmin .table .table-disabled th a[href],
|
|
16165
|
+
html:not(#__):not(#___) .cadmin .table .table-disabled td a[href] {
|
|
15842
16166
|
color: #a7a9bc;
|
|
15843
16167
|
pointer-events: none;
|
|
15844
16168
|
}
|
|
@@ -15859,6 +16183,15 @@ html:not(#__):not(#___) .cadmin .table .autofit-col:first-child {
|
|
|
15859
16183
|
html:not(#__):not(#___) .cadmin .table .autofit-col:last-child {
|
|
15860
16184
|
padding-right: 0;
|
|
15861
16185
|
}
|
|
16186
|
+
html:not(#__):not(#___) .cadmin .table .component-drag {
|
|
16187
|
+
font-size: 14px;
|
|
16188
|
+
height: 16px;
|
|
16189
|
+
width: 16px;
|
|
16190
|
+
}
|
|
16191
|
+
html:not(#__):not(#___) .cadmin .table .component-drag.focus, html:not(#__):not(#___) .cadmin .table .component-drag:focus-visible,
|
|
16192
|
+
html:not(#__):not(#___) .c-prefers-focus .cadmin .table .component-drag {
|
|
16193
|
+
box-shadow: inset 0 0 0 2px #528eff, inset 0 0 0 4px #fff;
|
|
16194
|
+
}
|
|
15862
16195
|
html:not(#__):not(#___) .cadmin .table .custom-control,
|
|
15863
16196
|
html:not(#__):not(#___) .cadmin .table .form-check {
|
|
15864
16197
|
margin-bottom: 0;
|
|
@@ -16226,8 +16559,8 @@ html:not(#__):not(#___) .cadmin .table-list .table-disabled td {
|
|
|
16226
16559
|
background-color: #fff;
|
|
16227
16560
|
color: #a7a9bc;
|
|
16228
16561
|
}
|
|
16229
|
-
html:not(#__):not(#___) .cadmin .table-list .table-disabled th [href],
|
|
16230
|
-
html:not(#__):not(#___) .cadmin .table-list .table-disabled td [href] {
|
|
16562
|
+
html:not(#__):not(#___) .cadmin .table-list .table-disabled th a[href],
|
|
16563
|
+
html:not(#__):not(#___) .cadmin .table-list .table-disabled td a[href] {
|
|
16231
16564
|
color: #a7a9bc;
|
|
16232
16565
|
pointer-events: none;
|
|
16233
16566
|
}
|
|
@@ -16471,6 +16804,44 @@ html:not(#__):not(#___) .cadmin .thead-valign-top thead td,
|
|
|
16471
16804
|
html:not(#__):not(#___) .cadmin .thead-valign-top thead th {
|
|
16472
16805
|
vertical-align: top;
|
|
16473
16806
|
}
|
|
16807
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows th:first-child,
|
|
16808
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows td:first-child,
|
|
16809
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows .table-column-start {
|
|
16810
|
+
padding-left: 20px;
|
|
16811
|
+
}
|
|
16812
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows th:last-child,
|
|
16813
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows td:last-child,
|
|
16814
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows .table-column-end {
|
|
16815
|
+
padding-right: 20px;
|
|
16816
|
+
}
|
|
16817
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows .autofit-col {
|
|
16818
|
+
padding-left: 2px;
|
|
16819
|
+
padding-right: 2px;
|
|
16820
|
+
min-width: 28px;
|
|
16821
|
+
}
|
|
16822
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows .autofit-col-checkbox {
|
|
16823
|
+
padding-right: 10px;
|
|
16824
|
+
}
|
|
16825
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows .autofit-col-icon {
|
|
16826
|
+
padding-right: 10px;
|
|
16827
|
+
}
|
|
16828
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows .component-drag {
|
|
16829
|
+
left: 2px;
|
|
16830
|
+
position: absolute;
|
|
16831
|
+
top: 50%;
|
|
16832
|
+
transform: translateY(-50%);
|
|
16833
|
+
}
|
|
16834
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows .component-toggle {
|
|
16835
|
+
font-size: 14px;
|
|
16836
|
+
height: 24px;
|
|
16837
|
+
width: 24px;
|
|
16838
|
+
}
|
|
16839
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows .component-action.show .collapse-icon-closed {
|
|
16840
|
+
display: none;
|
|
16841
|
+
}
|
|
16842
|
+
html:not(#__):not(#___) .cadmin .table-nested-rows .component-action:not(.show) .collapse-icon-open {
|
|
16843
|
+
display: none;
|
|
16844
|
+
}
|
|
16474
16845
|
html:not(#__):not(#___) .cadmin .show-quick-actions-on-hover tr:not(.table-active):not(.table-disabled):hover .quick-action-menu {
|
|
16475
16846
|
display: flex;
|
|
16476
16847
|
}
|