@clayui/css 3.108.0 → 3.110.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/CHANGELOG.md +38 -0
- package/lib/css/atlas.css +237 -36
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +229 -32
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +183 -12
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/bookmarks-full.svg +1 -8
- package/lib/images/icons/bookmarks.svg +1 -8
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/video-streaming.svg +11 -0
- package/package.json +2 -2
- package/src/images/icons/bookmarks-full.svg +1 -8
- package/src/images/icons/bookmarks.svg +1 -8
- package/src/images/icons/video-streaming.svg +11 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_menubar.scss +4 -4
- package/src/scss/atlas/variables/_panels.scss +20 -0
- package/src/scss/atlas/variables/_toggle-switch.scss +39 -0
- package/src/scss/cadmin/components/_dropdowns.scss +16 -0
- package/src/scss/cadmin/components/_toggle-switch.scss +32 -0
- package/src/scss/cadmin/variables/_dropdowns.scss +106 -0
- package/src/scss/cadmin/variables/_menubar.scss +4 -4
- package/src/scss/cadmin/variables/_modals.scss +4 -1
- package/src/scss/cadmin/variables/_tables.scss +3 -0
- package/src/scss/cadmin/variables/_toggle-switch.scss +68 -1
- package/src/scss/components/_panels.scss +77 -33
- package/src/scss/components/_tables.scss +7 -0
- package/src/scss/components/_toggle-switch.scss +32 -0
- package/src/scss/functions/_lx-icons-generated.scss +4 -2
- package/src/scss/mixins/_panels.scss +24 -0
- package/src/scss/mixins/_tables.scss +10 -0
- package/src/scss/mixins/_toggle-switch.scss +7 -0
- package/src/scss/variables/_dropdowns.scss +5 -5
- package/src/scss/variables/_modals.scss +4 -1
- package/src/scss/variables/_panels.scss +195 -0
- package/src/scss/variables/_tables.scss +24 -0
- package/src/scss/variables/_toggle-switch.scss +64 -1
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.110.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.110.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>
|
|
@@ -6386,6 +6386,125 @@ html:not(#__):not(#___) .cadmin .dropdown-menu > .list-unstyled, html:not(#__):n
|
|
|
6386
6386
|
html:not(#__):not(#___) .cadmin .dropdown-menu.show, html:not(#__):not(#___) .cadmin.dropdown-menu.show {
|
|
6387
6387
|
display: block;
|
|
6388
6388
|
}
|
|
6389
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-header {
|
|
6390
|
+
padding-bottom: 6px;
|
|
6391
|
+
padding-left: 28px;
|
|
6392
|
+
padding-right: 8px;
|
|
6393
|
+
padding-top: 5px;
|
|
6394
|
+
}
|
|
6395
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-subheader {
|
|
6396
|
+
padding-bottom: 7px;
|
|
6397
|
+
padding-left: 28px;
|
|
6398
|
+
padding-right: 8px;
|
|
6399
|
+
padding-top: 7px;
|
|
6400
|
+
}
|
|
6401
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-section {
|
|
6402
|
+
padding-left: 28px;
|
|
6403
|
+
padding-right: 8px;
|
|
6404
|
+
}
|
|
6405
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item {
|
|
6406
|
+
padding-bottom: 6px;
|
|
6407
|
+
padding-left: 28px;
|
|
6408
|
+
padding-right: 8px;
|
|
6409
|
+
padding-top: 5px;
|
|
6410
|
+
}
|
|
6411
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item .c-inner {
|
|
6412
|
+
flex-grow: 1;
|
|
6413
|
+
margin-bottom: -6px;
|
|
6414
|
+
margin-left: -28px;
|
|
6415
|
+
margin-right: -8px;
|
|
6416
|
+
margin-top: -5px;
|
|
6417
|
+
width: auto;
|
|
6418
|
+
}
|
|
6419
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item.autofit-row {
|
|
6420
|
+
padding-left: 24px;
|
|
6421
|
+
padding-right: 8px;
|
|
6422
|
+
}
|
|
6423
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll {
|
|
6424
|
+
font-size: 16px;
|
|
6425
|
+
height: 32px;
|
|
6426
|
+
padding: 0;
|
|
6427
|
+
position: absolute;
|
|
6428
|
+
text-align: center;
|
|
6429
|
+
z-index: 1;
|
|
6430
|
+
}
|
|
6431
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:hover, html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.hover {
|
|
6432
|
+
background-color: #f0f5ff;
|
|
6433
|
+
background-image: none;
|
|
6434
|
+
color: #272833;
|
|
6435
|
+
}
|
|
6436
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.focus, html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:focus-visible, .c-prefers-focus html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:focus {
|
|
6437
|
+
background-color: #f0f5ff;
|
|
6438
|
+
background-image: none;
|
|
6439
|
+
color: #272833;
|
|
6440
|
+
}
|
|
6441
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active {
|
|
6442
|
+
background-color: #f0f5ff;
|
|
6443
|
+
background-image: none;
|
|
6444
|
+
color: #272833;
|
|
6445
|
+
}
|
|
6446
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active label {
|
|
6447
|
+
color: #272833;
|
|
6448
|
+
}
|
|
6449
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:active .form-check-label {
|
|
6450
|
+
color: #272833;
|
|
6451
|
+
}
|
|
6452
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.active {
|
|
6453
|
+
background-color: #f0f5ff;
|
|
6454
|
+
background-image: none;
|
|
6455
|
+
color: #272833;
|
|
6456
|
+
}
|
|
6457
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.active label {
|
|
6458
|
+
color: #272833;
|
|
6459
|
+
}
|
|
6460
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.active .form-check-label {
|
|
6461
|
+
color: #272833;
|
|
6462
|
+
}
|
|
6463
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:disabled, html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.disabled {
|
|
6464
|
+
background-color: transparent;
|
|
6465
|
+
background-image: none;
|
|
6466
|
+
color: #a7a9bc;
|
|
6467
|
+
cursor: not-allowed;
|
|
6468
|
+
}
|
|
6469
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:disabled label,
|
|
6470
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll:disabled .form-check-label, html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.disabled label,
|
|
6471
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll.disabled .form-check-label {
|
|
6472
|
+
color: #a7a9bc;
|
|
6473
|
+
}
|
|
6474
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll .c-inner {
|
|
6475
|
+
flex-grow: 1;
|
|
6476
|
+
width: auto;
|
|
6477
|
+
}
|
|
6478
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-down {
|
|
6479
|
+
background-image: linear-gradient(to top, white 84%, rgba(255, 255, 255, 0) 100%);
|
|
6480
|
+
bottom: 6px;
|
|
6481
|
+
}
|
|
6482
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-down .c-inner {
|
|
6483
|
+
flex-grow: 1;
|
|
6484
|
+
width: auto;
|
|
6485
|
+
}
|
|
6486
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-up {
|
|
6487
|
+
background-image: linear-gradient(to bottom, white 84%, rgba(255, 255, 255, 0) 100%);
|
|
6488
|
+
top: 6px;
|
|
6489
|
+
}
|
|
6490
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-item-scroll-up .c-inner {
|
|
6491
|
+
flex-grow: 1;
|
|
6492
|
+
width: auto;
|
|
6493
|
+
}
|
|
6494
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu .dropdown-divider {
|
|
6495
|
+
margin: 5px 0;
|
|
6496
|
+
}
|
|
6497
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-start .dropdown-item-indicator-start {
|
|
6498
|
+
left: 8px;
|
|
6499
|
+
top: 8px;
|
|
6500
|
+
}
|
|
6501
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu.dropdown-menu-indicator-end .dropdown-item-indicator-end {
|
|
6502
|
+
right: 8px;
|
|
6503
|
+
top: 8px;
|
|
6504
|
+
}
|
|
6505
|
+
html:not(#__):not(#___) .cadmin .dropdown-menu-select.dropdown-menu-height-lg .inline-scroller {
|
|
6506
|
+
max-height: 432px;
|
|
6507
|
+
}
|
|
6389
6508
|
html:not(#__):not(#___) .cadmin .dropdown-menu-left, html:not(#__):not(#___) .cadmin.dropdown-menu-left {
|
|
6390
6509
|
left: 0;
|
|
6391
6510
|
right: auto;
|
|
@@ -10854,6 +10973,9 @@ html:not(#__):not(#___) .cadmin .modal, html:not(#__):not(#___) .cadmin.modal {
|
|
|
10854
10973
|
html:not(#__):not(#___) .cadmin .modal .modal-body, html:not(#__):not(#___) .cadmin.modal .modal-body {
|
|
10855
10974
|
padding: 8px 16px;
|
|
10856
10975
|
}
|
|
10976
|
+
html:not(#__):not(#___) .cadmin .modal .modal-body-iframe, html:not(#__):not(#___) .cadmin.modal .modal-body-iframe {
|
|
10977
|
+
padding: 0px;
|
|
10978
|
+
}
|
|
10857
10979
|
html:not(#__):not(#___) .cadmin .modal .modal-footer, html:not(#__):not(#___) .cadmin.modal .modal-footer {
|
|
10858
10980
|
padding: 8px;
|
|
10859
10981
|
}
|
|
@@ -10960,7 +11082,7 @@ html:not(#__):not(#___) .cadmin .modal-content {
|
|
|
10960
11082
|
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
|
|
10961
11083
|
display: flex;
|
|
10962
11084
|
flex-direction: column;
|
|
10963
|
-
max-height: calc(100vh -
|
|
11085
|
+
max-height: calc(100vh - 8px * 2);
|
|
10964
11086
|
outline: 0;
|
|
10965
11087
|
overflow: hidden;
|
|
10966
11088
|
pointer-events: auto;
|
|
@@ -12164,7 +12286,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md .menubar-collapse.co
|
|
|
12164
12286
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
12165
12287
|
border-radius: 4px;
|
|
12166
12288
|
color: #6b6c7e;
|
|
12167
|
-
letter-spacing: 0.
|
|
12289
|
+
letter-spacing: 0.016rem;
|
|
12168
12290
|
margin-bottom: 4px;
|
|
12169
12291
|
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;
|
|
12170
12292
|
}
|
|
@@ -12232,7 +12354,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent
|
|
|
12232
12354
|
color: rgba(0, 0, 0, 0.3);
|
|
12233
12355
|
box-shadow: none;
|
|
12234
12356
|
font-weight: 400;
|
|
12235
|
-
letter-spacing: 0.
|
|
12357
|
+
letter-spacing: 0.016rem;
|
|
12236
12358
|
}
|
|
12237
12359
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link:disabled::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled::before {
|
|
12238
12360
|
content: none;
|
|
@@ -12414,7 +12536,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg .menubar-collapse.co
|
|
|
12414
12536
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
12415
12537
|
border-radius: 4px;
|
|
12416
12538
|
color: #6b6c7e;
|
|
12417
|
-
letter-spacing: 0.
|
|
12539
|
+
letter-spacing: 0.016rem;
|
|
12418
12540
|
margin-bottom: 4px;
|
|
12419
12541
|
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;
|
|
12420
12542
|
}
|
|
@@ -12481,7 +12603,7 @@ html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent
|
|
|
12481
12603
|
color: rgba(0, 0, 0, 0.3);
|
|
12482
12604
|
box-shadow: none;
|
|
12483
12605
|
font-weight: 400;
|
|
12484
|
-
letter-spacing: 0.
|
|
12606
|
+
letter-spacing: 0.016rem;
|
|
12485
12607
|
}
|
|
12486
12608
|
html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled::before, html:not(#__):not(#___) .cadmin .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled::before {
|
|
12487
12609
|
content: none;
|
|
@@ -18205,7 +18327,7 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::befor
|
|
|
18205
18327
|
left: 0;
|
|
18206
18328
|
position: absolute;
|
|
18207
18329
|
top: 0;
|
|
18208
|
-
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
18330
|
+
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, opacity 100ms ease-in, right 100ms ease-in;
|
|
18209
18331
|
width: 48px;
|
|
18210
18332
|
}
|
|
18211
18333
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -18230,7 +18352,7 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::after
|
|
|
18230
18352
|
left: 4px;
|
|
18231
18353
|
position: absolute;
|
|
18232
18354
|
top: 4px;
|
|
18233
|
-
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
18355
|
+
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, opacity 100ms ease-in, right 100ms ease-in;
|
|
18234
18356
|
width: 16px;
|
|
18235
18357
|
}
|
|
18236
18358
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -18243,7 +18365,7 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .toggle-switch-check ~
|
|
|
18243
18365
|
}
|
|
18244
18366
|
|
|
18245
18367
|
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
|
|
18246
|
-
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
18368
|
+
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, opacity 100ms ease-in, right 100ms ease-in;
|
|
18247
18369
|
}
|
|
18248
18370
|
@media (prefers-reduced-motion: reduce) {
|
|
18249
18371
|
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
|
|
@@ -18257,7 +18379,7 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .toggle-switch-check ~
|
|
|
18257
18379
|
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
18258
18380
|
content: attr(data-label-off);
|
|
18259
18381
|
margin-left: 56px;
|
|
18260
|
-
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
18382
|
+
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, opacity 100ms ease-in, right 100ms ease-in;
|
|
18261
18383
|
white-space: nowrap;
|
|
18262
18384
|
}
|
|
18263
18385
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -18277,7 +18399,7 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggl
|
|
|
18277
18399
|
text-align: center;
|
|
18278
18400
|
text-indent: 0;
|
|
18279
18401
|
top: 4px;
|
|
18280
|
-
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, right 100ms ease-in;
|
|
18402
|
+
transition: background-color 100ms ease-in, border-color 100ms ease-in, box-shadow 150ms ease-in-out, color 100ms ease-in, left 100ms ease-in, opacity 100ms ease-in, right 100ms ease-in;
|
|
18281
18403
|
width: 16px;
|
|
18282
18404
|
z-index: 1;
|
|
18283
18405
|
}
|
|
@@ -18447,6 +18569,55 @@ html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-che
|
|
|
18447
18569
|
html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-label {
|
|
18448
18570
|
margin-right: 8px;
|
|
18449
18571
|
}
|
|
18572
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .simple-toggle-switch .toggle-switch-label, html:not(#__):not(#___) .cadmin .simple-toggle-switch.toggle-switch-sm .toggle-switch-label {
|
|
18573
|
+
max-width: calc(100% - 38px);
|
|
18574
|
+
}
|
|
18575
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check {
|
|
18576
|
+
height: 16px;
|
|
18577
|
+
width: 30px;
|
|
18578
|
+
}
|
|
18579
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar {
|
|
18580
|
+
height: 16px;
|
|
18581
|
+
line-height: 16px;
|
|
18582
|
+
}
|
|
18583
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar::before {
|
|
18584
|
+
width: 30px;
|
|
18585
|
+
}
|
|
18586
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar::after {
|
|
18587
|
+
bottom: 0;
|
|
18588
|
+
height: 12px;
|
|
18589
|
+
left: 2px;
|
|
18590
|
+
top: 2px;
|
|
18591
|
+
width: 12px;
|
|
18592
|
+
}
|
|
18593
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle {
|
|
18594
|
+
min-width: 30px;
|
|
18595
|
+
max-width: 30px;
|
|
18596
|
+
}
|
|
18597
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
18598
|
+
margin-left: 38px;
|
|
18599
|
+
}
|
|
18600
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
18601
|
+
font-size: 8px;
|
|
18602
|
+
height: 16px;
|
|
18603
|
+
left: 0;
|
|
18604
|
+
line-height: 16px;
|
|
18605
|
+
top: 0px;
|
|
18606
|
+
width: 16px;
|
|
18607
|
+
}
|
|
18608
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-off {
|
|
18609
|
+
left: 13px;
|
|
18610
|
+
}
|
|
18611
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check:checked ~ .toggle-switch-bar::after {
|
|
18612
|
+
left: 16px;
|
|
18613
|
+
}
|
|
18614
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check:checked ~ .toggle-switch-bar .button-icon {
|
|
18615
|
+
left: 14px;
|
|
18616
|
+
}
|
|
18617
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-label {
|
|
18618
|
+
font-size: 12px;
|
|
18619
|
+
max-width: calc(100% - 38px);
|
|
18620
|
+
}
|
|
18450
18621
|
html:not(#__):not(#___) .cadmin .tooltip {
|
|
18451
18622
|
display: block;
|
|
18452
18623
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|