@clayui/css 3.107.0 → 3.109.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 +2854 -0
- package/lib/css/atlas.css +160 -58
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +156 -58
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +130 -57
- 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/_tables.scss +2 -6
- package/src/scss/atlas/variables/_toggle-switch.scss +39 -0
- package/src/scss/cadmin/components/_modals.scss +11 -0
- package/src/scss/cadmin/components/_tables.scss +35 -30
- package/src/scss/cadmin/components/_toggle-switch.scss +32 -0
- package/src/scss/cadmin/variables/_modals.scss +25 -2
- package/src/scss/cadmin/variables/_tables.scss +70 -28
- package/src/scss/cadmin/variables/_toggle-switch.scss +68 -1
- package/src/scss/components/_modals.scss +8 -0
- package/src/scss/components/_tables.scss +42 -28
- package/src/scss/components/_toggle-switch.scss +32 -0
- package/src/scss/functions/_lx-icons-generated.scss +4 -2
- package/src/scss/mixins/_grid.scss +8 -0
- package/src/scss/mixins/_tables.scss +31 -2
- package/src/scss/mixins/_toggle-switch.scss +7 -0
- package/src/scss/variables/_modals.scss +25 -2
- package/src/scss/variables/_tables.scss +87 -25
- 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.109.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.109.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>
|
|
@@ -10840,6 +10840,27 @@ html:not(#__):not(#___) .cadmin .modal, html:not(#__):not(#___) .cadmin.modal {
|
|
|
10840
10840
|
width: 100%;
|
|
10841
10841
|
z-index: 1050;
|
|
10842
10842
|
}
|
|
10843
|
+
@media (max-width: 767.98px) {
|
|
10844
|
+
html:not(#__):not(#___) .cadmin .modal .close, html:not(#__):not(#___) .cadmin.modal .close {
|
|
10845
|
+
margin-right: -8px;
|
|
10846
|
+
}
|
|
10847
|
+
html:not(#__):not(#___) .cadmin .modal .modal-header, html:not(#__):not(#___) .cadmin.modal .modal-header {
|
|
10848
|
+
height: 48px;
|
|
10849
|
+
padding: 8px 16px;
|
|
10850
|
+
}
|
|
10851
|
+
html:not(#__):not(#___) .cadmin .modal .modal-title, html:not(#__):not(#___) .cadmin.modal .modal-title {
|
|
10852
|
+
font-size: 18px;
|
|
10853
|
+
}
|
|
10854
|
+
html:not(#__):not(#___) .cadmin .modal .modal-body, html:not(#__):not(#___) .cadmin.modal .modal-body {
|
|
10855
|
+
padding: 8px 16px;
|
|
10856
|
+
}
|
|
10857
|
+
html:not(#__):not(#___) .cadmin .modal .modal-body-iframe, html:not(#__):not(#___) .cadmin.modal .modal-body-iframe {
|
|
10858
|
+
padding: 0px;
|
|
10859
|
+
}
|
|
10860
|
+
html:not(#__):not(#___) .cadmin .modal .modal-footer, html:not(#__):not(#___) .cadmin.modal .modal-footer {
|
|
10861
|
+
padding: 8px;
|
|
10862
|
+
}
|
|
10863
|
+
}
|
|
10843
10864
|
html:not(#__):not(#___) .cadmin .modal-dialog {
|
|
10844
10865
|
margin: 8px;
|
|
10845
10866
|
position: relative;
|
|
@@ -10942,7 +10963,7 @@ html:not(#__):not(#___) .cadmin .modal-content {
|
|
|
10942
10963
|
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
|
|
10943
10964
|
display: flex;
|
|
10944
10965
|
flex-direction: column;
|
|
10945
|
-
max-height: calc(100vh -
|
|
10966
|
+
max-height: calc(100vh - 8px * 2);
|
|
10946
10967
|
outline: 0;
|
|
10947
10968
|
overflow: hidden;
|
|
10948
10969
|
pointer-events: auto;
|
|
@@ -10997,7 +11018,7 @@ html:not(#__):not(#___) .cadmin .modal-footer, html:not(#__):not(#___) .cadmin.m
|
|
|
10997
11018
|
padding-top: 12px;
|
|
10998
11019
|
}
|
|
10999
11020
|
html:not(#__):not(#___) .cadmin .modal-footer > *, html:not(#__):not(#___) .cadmin.modal-footer > * {
|
|
11000
|
-
margin: calc(8px * 0.5);
|
|
11021
|
+
margin: 0 calc(8px * 0.5);
|
|
11001
11022
|
}
|
|
11002
11023
|
html:not(#__):not(#___) .cadmin .modal-item-group {
|
|
11003
11024
|
align-items: center;
|
|
@@ -11039,6 +11060,7 @@ html:not(#__):not(#___) .cadmin .modal-item-last {
|
|
|
11039
11060
|
}
|
|
11040
11061
|
html:not(#__):not(#___) .cadmin .modal-footer > .modal-item-last, html:not(#__):not(#___) .cadmin.modal-footer > .modal-item-last {
|
|
11041
11062
|
margin-left: auto;
|
|
11063
|
+
margin-right: 0;
|
|
11042
11064
|
}
|
|
11043
11065
|
html:not(#__):not(#___) .cadmin .modal-title {
|
|
11044
11066
|
flex-grow: 1;
|
|
@@ -16359,8 +16381,8 @@ html:not(#__):not(#___) .cadmin th {
|
|
|
16359
16381
|
}
|
|
16360
16382
|
html:not(#__):not(#___) .cadmin caption {
|
|
16361
16383
|
color: #272833;
|
|
16362
|
-
padding-bottom:
|
|
16363
|
-
padding-top:
|
|
16384
|
+
padding-bottom: 8px 16px;
|
|
16385
|
+
padding-top: 8px 16px;
|
|
16364
16386
|
text-align: left;
|
|
16365
16387
|
}
|
|
16366
16388
|
html:not(#__):not(#___) .cadmin .table-head-title .inline-item-before {
|
|
@@ -16389,7 +16411,7 @@ html:not(#__):not(#___) .cadmin .table thead th,
|
|
|
16389
16411
|
html:not(#__):not(#___) .cadmin .table thead td {
|
|
16390
16412
|
border-bottom: 0px solid #e7e7ed;
|
|
16391
16413
|
border-top-width: 0;
|
|
16392
|
-
vertical-align:
|
|
16414
|
+
vertical-align: middle;
|
|
16393
16415
|
}
|
|
16394
16416
|
html:not(#__):not(#___) .cadmin .table thead th a[href] {
|
|
16395
16417
|
border-radius: 1px;
|
|
@@ -16416,20 +16438,15 @@ html:not(#__):not(#___) .c-prefers-focus .cadmin .table thead th a[href] {
|
|
|
16416
16438
|
html:not(#__):not(#___) .cadmin .table th:first-child,
|
|
16417
16439
|
html:not(#__):not(#___) .cadmin .table td:first-child,
|
|
16418
16440
|
html:not(#__):not(#___) .cadmin .table .table-column-start {
|
|
16419
|
-
padding-left:
|
|
16420
|
-
}
|
|
16421
|
-
html:not(#__):not(#___) .cadmin .table th:last-child,
|
|
16422
|
-
html:not(#__):not(#___) .cadmin .table td:last-child,
|
|
16423
|
-
html:not(#__):not(#___) .cadmin .table .table-column-end {
|
|
16424
|
-
padding-right: 12px;
|
|
16441
|
+
padding-left: 20px;
|
|
16425
16442
|
}
|
|
16426
16443
|
html:not(#__):not(#___) .cadmin .table th {
|
|
16427
16444
|
background-clip: padding-box;
|
|
16428
16445
|
border-top: 1px solid #e7e7ed;
|
|
16429
16446
|
color: #6b6c7e;
|
|
16430
16447
|
font-weight: 600;
|
|
16431
|
-
height:
|
|
16432
|
-
padding:
|
|
16448
|
+
height: 56px;
|
|
16449
|
+
padding: 8px 16px;
|
|
16433
16450
|
position: relative;
|
|
16434
16451
|
vertical-align: top;
|
|
16435
16452
|
}
|
|
@@ -16441,7 +16458,8 @@ html:not(#__):not(#___) .cadmin .table td {
|
|
|
16441
16458
|
border-right-width: 0;
|
|
16442
16459
|
border-style: solid;
|
|
16443
16460
|
border-top-width: 1px;
|
|
16444
|
-
|
|
16461
|
+
height: 56px;
|
|
16462
|
+
padding: 8px 16px;
|
|
16445
16463
|
position: relative;
|
|
16446
16464
|
vertical-align: middle;
|
|
16447
16465
|
}
|
|
@@ -16450,15 +16468,18 @@ html:not(#__):not(#___) .cadmin .table tbody + tbody {
|
|
|
16450
16468
|
}
|
|
16451
16469
|
html:not(#__):not(#___) .cadmin .table caption {
|
|
16452
16470
|
caption-side: top;
|
|
16453
|
-
padding-left:
|
|
16454
|
-
padding-right:
|
|
16471
|
+
padding-left: 16px;
|
|
16472
|
+
padding-right: 16px;
|
|
16455
16473
|
}
|
|
16456
16474
|
html:not(#__):not(#___) .cadmin .table .table-divider th,
|
|
16457
16475
|
html:not(#__):not(#___) .cadmin .table .table-divider td {
|
|
16476
|
+
background-color: #f1f2f5;
|
|
16458
16477
|
color: #6b6c7e;
|
|
16459
16478
|
font-size: 12px;
|
|
16460
16479
|
font-weight: 600;
|
|
16461
|
-
|
|
16480
|
+
height: 34px;
|
|
16481
|
+
line-height: 17px;
|
|
16482
|
+
padding: 8px 16px 8px 20px;
|
|
16462
16483
|
text-transform: uppercase;
|
|
16463
16484
|
}
|
|
16464
16485
|
html:not(#__):not(#___) .cadmin .table .table-active {
|
|
@@ -16488,8 +16509,8 @@ html:not(#__):not(#___) .cadmin .table .table-disabled .table-list-title {
|
|
|
16488
16509
|
}
|
|
16489
16510
|
html:not(#__):not(#___) .cadmin .table .autofit-col {
|
|
16490
16511
|
justify-content: center;
|
|
16491
|
-
padding-left:
|
|
16492
|
-
padding-right:
|
|
16512
|
+
padding-left: 16px;
|
|
16513
|
+
padding-right: 16px;
|
|
16493
16514
|
}
|
|
16494
16515
|
html:not(#__):not(#___) .cadmin .table .autofit-col:first-child {
|
|
16495
16516
|
padding-left: 0;
|
|
@@ -16513,15 +16534,25 @@ html:not(#__):not(#___) .cadmin .table .form-check {
|
|
|
16513
16534
|
html:not(#__):not(#___) .cadmin .table .quick-action-menu {
|
|
16514
16535
|
align-items: flex-start;
|
|
16515
16536
|
background-color: #fff;
|
|
16516
|
-
padding-bottom:
|
|
16517
|
-
padding-top:
|
|
16537
|
+
padding-bottom: 8px;
|
|
16538
|
+
padding-top: 8px;
|
|
16518
16539
|
}
|
|
16519
16540
|
html:not(#__):not(#___) .cadmin .table-caption-bottom caption {
|
|
16520
16541
|
caption-side: bottom;
|
|
16521
16542
|
}
|
|
16543
|
+
html:not(#__):not(#___) .cadmin .table-lg th,
|
|
16544
|
+
html:not(#__):not(#___) .cadmin .table-lg td {
|
|
16545
|
+
padding: 17px;
|
|
16546
|
+
}
|
|
16547
|
+
html:not(#__):not(#___) .cadmin .table-md th,
|
|
16548
|
+
html:not(#__):not(#___) .cadmin .table-md td {
|
|
16549
|
+
height: 48px;
|
|
16550
|
+
padding: 6px 16px;
|
|
16551
|
+
}
|
|
16522
16552
|
html:not(#__):not(#___) .cadmin .table-sm th,
|
|
16523
16553
|
html:not(#__):not(#___) .cadmin .table-sm td {
|
|
16524
|
-
|
|
16554
|
+
height: 32px;
|
|
16555
|
+
padding: 4px 16px;
|
|
16525
16556
|
}
|
|
16526
16557
|
html:not(#__):not(#___) .cadmin .table-bordered {
|
|
16527
16558
|
border: 1px solid #e7e7ed;
|
|
@@ -16534,14 +16565,23 @@ html:not(#__):not(#___) .cadmin .table-bordered th,
|
|
|
16534
16565
|
html:not(#__):not(#___) .cadmin .table-bordered td {
|
|
16535
16566
|
border: 1px solid #e7e7ed;
|
|
16536
16567
|
}
|
|
16568
|
+
html:not(#__):not(#___) .cadmin .table-head-bordered thead th,
|
|
16569
|
+
html:not(#__):not(#___) .cadmin .table-head-bordered thead td {
|
|
16570
|
+
border-left: 1px solid #e7e7ed;
|
|
16571
|
+
}
|
|
16572
|
+
html:not(#__):not(#___) .cadmin .table-head-bordered thead th:first-child,
|
|
16573
|
+
html:not(#__):not(#___) .cadmin .table-head-bordered thead td:first-child {
|
|
16574
|
+
border-left-width: 0;
|
|
16575
|
+
}
|
|
16537
16576
|
html:not(#__):not(#___) .cadmin .table-borderless th,
|
|
16538
16577
|
html:not(#__):not(#___) .cadmin .table-borderless td,
|
|
16539
16578
|
html:not(#__):not(#___) .cadmin .table-borderless thead th,
|
|
16540
16579
|
html:not(#__):not(#___) .cadmin .table-borderless tbody + tbody {
|
|
16541
16580
|
border: 0;
|
|
16542
16581
|
}
|
|
16543
|
-
html:not(#__):not(#___) .cadmin .table-striped tbody tr:nth-of-type(odd)
|
|
16544
|
-
html:not(#__):not(#___) .cadmin .table-striped tbody tr:nth-of-type(odd)
|
|
16582
|
+
html:not(#__):not(#___) .cadmin .table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider),
|
|
16583
|
+
html:not(#__):not(#___) .cadmin .table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td,
|
|
16584
|
+
html:not(#__):not(#___) .cadmin .table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) th {
|
|
16545
16585
|
background-color: #f7f8f9;
|
|
16546
16586
|
}
|
|
16547
16587
|
html:not(#__):not(#___) .cadmin .table-hover tbody tr:hover {
|
|
@@ -16596,10 +16636,6 @@ html:not(#__):not(#___) .cadmin tr.table-focus td:last-child::after {
|
|
|
16596
16636
|
html:not(#__):not(#___) .cadmin td.table-focus {
|
|
16597
16637
|
box-shadow: inset 0 0 0 2px #528eff, inset 0 0 0 4px #fff;
|
|
16598
16638
|
}
|
|
16599
|
-
html:not(#__):not(#___) .cadmin .table-striped tbody .table-disabled:nth-of-type(odd) td,
|
|
16600
|
-
html:not(#__):not(#___) .cadmin .table-striped tbody .table-disabled:nth-of-type(odd) th {
|
|
16601
|
-
background-color: #fff;
|
|
16602
|
-
}
|
|
16603
16639
|
html:not(#__):not(#___) .cadmin .table .thead-dark th {
|
|
16604
16640
|
background-color: #393a4a;
|
|
16605
16641
|
border-color: #4a4b60;
|
|
@@ -16622,7 +16658,9 @@ html:not(#__):not(#___) .cadmin .table-dark thead th {
|
|
|
16622
16658
|
html:not(#__):not(#___) .cadmin .table-dark.table-bordered {
|
|
16623
16659
|
border-width: 0;
|
|
16624
16660
|
}
|
|
16625
|
-
html:not(#__):not(#___) .cadmin .table-dark.table-striped tbody tr:nth-of-type(odd)
|
|
16661
|
+
html:not(#__):not(#___) .cadmin .table-dark.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider),
|
|
16662
|
+
html:not(#__):not(#___) .cadmin .table-dark.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) th,
|
|
16663
|
+
html:not(#__):not(#___) .cadmin .table-dark.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td {
|
|
16626
16664
|
background-color: rgba(255, 255, 255, 0.05);
|
|
16627
16665
|
}
|
|
16628
16666
|
html:not(#__):not(#___) .cadmin .table-dark.table-hover tbody tr:hover {
|
|
@@ -16876,10 +16914,10 @@ html:not(#__):not(#___) .cadmin .table-list tfoot td {
|
|
|
16876
16914
|
}
|
|
16877
16915
|
html:not(#__):not(#___) .cadmin .table-list .table-divider th,
|
|
16878
16916
|
html:not(#__):not(#___) .cadmin .table-list .table-divider td {
|
|
16879
|
-
padding-bottom:
|
|
16880
|
-
padding-left:
|
|
16881
|
-
padding-right:
|
|
16882
|
-
padding-top:
|
|
16917
|
+
padding-bottom: 8px;
|
|
16918
|
+
padding-left: 20px;
|
|
16919
|
+
padding-right: 16px;
|
|
16920
|
+
padding-top: 8px;
|
|
16883
16921
|
}
|
|
16884
16922
|
html:not(#__):not(#___) .cadmin .table-list .table-active {
|
|
16885
16923
|
background-color: #f0f5ff;
|
|
@@ -16921,8 +16959,9 @@ html:not(#__):not(#___) .cadmin .table.table-list.table-bordered td:first-child,
|
|
|
16921
16959
|
html:not(#__):not(#___) .cadmin .table.table-list.table-bordered .table-column-start {
|
|
16922
16960
|
border-left-width: 0;
|
|
16923
16961
|
}
|
|
16924
|
-
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody tr:nth-of-type(odd)
|
|
16925
|
-
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody tr:nth-of-type(odd)
|
|
16962
|
+
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider),
|
|
16963
|
+
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td,
|
|
16964
|
+
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) th {
|
|
16926
16965
|
background-color: #f7f8f9;
|
|
16927
16966
|
}
|
|
16928
16967
|
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody tr:hover {
|
|
@@ -16943,11 +16982,6 @@ html:not(#__):not(#___) .cadmin .table-list.table-hover .table-disabled {
|
|
|
16943
16982
|
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-disabled:hover {
|
|
16944
16983
|
background-color: #fff;
|
|
16945
16984
|
}
|
|
16946
|
-
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody .table-disabled:nth-of-type(odd),
|
|
16947
|
-
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody .table-disabled:nth-of-type(odd) td,
|
|
16948
|
-
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody .table-disabled:nth-of-type(odd) th {
|
|
16949
|
-
background-color: #fff;
|
|
16950
|
-
}
|
|
16951
16985
|
html:not(#__):not(#___) .cadmin .table-list-title {
|
|
16952
16986
|
color: #272833;
|
|
16953
16987
|
font-size: 14px;
|
|
@@ -17124,16 +17158,6 @@ html:not(#__):not(#___) .cadmin .thead-valign-top thead td,
|
|
|
17124
17158
|
html:not(#__):not(#___) .cadmin .thead-valign-top thead th {
|
|
17125
17159
|
vertical-align: top;
|
|
17126
17160
|
}
|
|
17127
|
-
html:not(#__):not(#___) .cadmin .table-nested-rows th:first-child,
|
|
17128
|
-
html:not(#__):not(#___) .cadmin .table-nested-rows td:first-child,
|
|
17129
|
-
html:not(#__):not(#___) .cadmin .table-nested-rows .table-column-start {
|
|
17130
|
-
padding-left: 20px;
|
|
17131
|
-
}
|
|
17132
|
-
html:not(#__):not(#___) .cadmin .table-nested-rows th:last-child,
|
|
17133
|
-
html:not(#__):not(#___) .cadmin .table-nested-rows td:last-child,
|
|
17134
|
-
html:not(#__):not(#___) .cadmin .table-nested-rows .table-column-end {
|
|
17135
|
-
padding-right: 20px;
|
|
17136
|
-
}
|
|
17137
17161
|
html:not(#__):not(#___) .cadmin .table-nested-rows .autofit-col {
|
|
17138
17162
|
padding-left: 2px;
|
|
17139
17163
|
padding-right: 2px;
|
|
@@ -18184,7 +18208,7 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::befor
|
|
|
18184
18208
|
left: 0;
|
|
18185
18209
|
position: absolute;
|
|
18186
18210
|
top: 0;
|
|
18187
|
-
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;
|
|
18211
|
+
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;
|
|
18188
18212
|
width: 48px;
|
|
18189
18213
|
}
|
|
18190
18214
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -18209,7 +18233,7 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar::after
|
|
|
18209
18233
|
left: 4px;
|
|
18210
18234
|
position: absolute;
|
|
18211
18235
|
top: 4px;
|
|
18212
|
-
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;
|
|
18236
|
+
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;
|
|
18213
18237
|
width: 16px;
|
|
18214
18238
|
}
|
|
18215
18239
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -18222,7 +18246,7 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .toggle-switch-check ~
|
|
|
18222
18246
|
}
|
|
18223
18247
|
|
|
18224
18248
|
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
|
|
18225
|
-
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;
|
|
18249
|
+
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;
|
|
18226
18250
|
}
|
|
18227
18251
|
@media (prefers-reduced-motion: reduce) {
|
|
18228
18252
|
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::before {
|
|
@@ -18236,7 +18260,7 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .toggle-switch-check ~
|
|
|
18236
18260
|
html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
18237
18261
|
content: attr(data-label-off);
|
|
18238
18262
|
margin-left: 56px;
|
|
18239
|
-
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;
|
|
18263
|
+
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;
|
|
18240
18264
|
white-space: nowrap;
|
|
18241
18265
|
}
|
|
18242
18266
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -18256,7 +18280,7 @@ html:not(#__):not(#___) .cadmin .toggle-switch-check ~ .toggle-switch-bar .toggl
|
|
|
18256
18280
|
text-align: center;
|
|
18257
18281
|
text-indent: 0;
|
|
18258
18282
|
top: 4px;
|
|
18259
|
-
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;
|
|
18283
|
+
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;
|
|
18260
18284
|
width: 16px;
|
|
18261
18285
|
z-index: 1;
|
|
18262
18286
|
}
|
|
@@ -18426,6 +18450,55 @@ html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-che
|
|
|
18426
18450
|
html:not(#__):not(#___) .cadmin .simple-toggle-switch-reverse .toggle-switch-label {
|
|
18427
18451
|
margin-right: 8px;
|
|
18428
18452
|
}
|
|
18453
|
+
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 {
|
|
18454
|
+
max-width: calc(100% - 38px);
|
|
18455
|
+
}
|
|
18456
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check {
|
|
18457
|
+
height: 16px;
|
|
18458
|
+
width: 30px;
|
|
18459
|
+
}
|
|
18460
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar {
|
|
18461
|
+
height: 16px;
|
|
18462
|
+
line-height: 16px;
|
|
18463
|
+
}
|
|
18464
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar::before {
|
|
18465
|
+
width: 30px;
|
|
18466
|
+
}
|
|
18467
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar::after {
|
|
18468
|
+
bottom: 0;
|
|
18469
|
+
height: 12px;
|
|
18470
|
+
left: 2px;
|
|
18471
|
+
top: 2px;
|
|
18472
|
+
width: 12px;
|
|
18473
|
+
}
|
|
18474
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle {
|
|
18475
|
+
min-width: 30px;
|
|
18476
|
+
max-width: 30px;
|
|
18477
|
+
}
|
|
18478
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-handle::after {
|
|
18479
|
+
margin-left: 38px;
|
|
18480
|
+
}
|
|
18481
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon {
|
|
18482
|
+
font-size: 8px;
|
|
18483
|
+
height: 16px;
|
|
18484
|
+
left: 0;
|
|
18485
|
+
line-height: 16px;
|
|
18486
|
+
top: 0px;
|
|
18487
|
+
width: 16px;
|
|
18488
|
+
}
|
|
18489
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check ~ .toggle-switch-bar .toggle-switch-icon-off {
|
|
18490
|
+
left: 13px;
|
|
18491
|
+
}
|
|
18492
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check:checked ~ .toggle-switch-bar::after {
|
|
18493
|
+
left: 16px;
|
|
18494
|
+
}
|
|
18495
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-check:checked ~ .toggle-switch-bar .button-icon {
|
|
18496
|
+
left: 14px;
|
|
18497
|
+
}
|
|
18498
|
+
html:not(#__):not(#___) .cadmin .toggle-switch-sm .toggle-switch-label {
|
|
18499
|
+
font-size: 12px;
|
|
18500
|
+
max-width: calc(100% - 38px);
|
|
18501
|
+
}
|
|
18429
18502
|
html:not(#__):not(#___) .cadmin .tooltip {
|
|
18430
18503
|
display: block;
|
|
18431
18504
|
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;
|