@clayui/css 3.56.0 → 3.58.1
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 +237 -235
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +216 -214
- 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 +234 -227
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/flags-ca-ES-valencia.svg +13 -0
- package/lib/images/icons/folder-lock-line.svg +11 -0
- package/lib/images/icons/folder-lock.svg +10 -0
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/images/icons/flags-ca-ES-valencia.svg +13 -0
- package/src/images/icons/folder-lock-line.svg +11 -0
- package/src/images/icons/folder-lock.svg +10 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_multi-step-nav.scss +3 -1
- package/src/scss/atlas/variables/_tables.scss +1 -1
- package/src/scss/cadmin/components/_tables.scss +9 -500
- package/src/scss/cadmin/components/_treeview.scss +67 -16
- package/src/scss/cadmin/variables/_tables.scss +497 -52
- package/src/scss/cadmin/variables/_treeview.scss +29 -7
- package/src/scss/components/_tables.scss +8 -498
- package/src/scss/components/_treeview.scss +60 -16
- package/src/scss/functions/_lx-icons-generated.scss +6 -0
- package/src/scss/mixins/_tables.scss +333 -0
- package/src/scss/variables/_tables.scss +423 -61
- package/src/scss/variables/_treeview.scss +30 -7
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.58.1
|
|
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.58.1
|
|
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>
|
|
@@ -15645,30 +15645,40 @@ html:not(#__):not(#___) .cadmin .table {
|
|
|
15645
15645
|
html:not(#__):not(#___) .cadmin .table thead {
|
|
15646
15646
|
background-color: #fff;
|
|
15647
15647
|
}
|
|
15648
|
-
html:not(#__):not(#___) .cadmin .table thead
|
|
15649
|
-
html:not(#__):not(#___) .cadmin .table thead
|
|
15648
|
+
html:not(#__):not(#___) .cadmin .table thead th,
|
|
15649
|
+
html:not(#__):not(#___) .cadmin .table thead td {
|
|
15650
15650
|
background-color: #fff;
|
|
15651
|
-
border-bottom:
|
|
15651
|
+
border-bottom: 0px solid #e7e7ed;
|
|
15652
15652
|
border-top-width: 0;
|
|
15653
15653
|
vertical-align: bottom;
|
|
15654
15654
|
}
|
|
15655
|
-
html:not(#__):not(#___) .cadmin .table thead th
|
|
15655
|
+
html:not(#__):not(#___) .cadmin .table thead th [href] {
|
|
15656
15656
|
border-radius: 1px;
|
|
15657
15657
|
color: #6b6c7e;
|
|
15658
15658
|
transition: box-shadow 0.15s ease-in-out;
|
|
15659
15659
|
}
|
|
15660
15660
|
@media (prefers-reduced-motion: reduce) {
|
|
15661
|
-
html:not(#__):not(#___) .cadmin .table thead th
|
|
15661
|
+
html:not(#__):not(#___) .cadmin .table thead th [href] {
|
|
15662
15662
|
transition: none;
|
|
15663
15663
|
}
|
|
15664
15664
|
}
|
|
15665
|
-
html:not(#__):not(#___) .cadmin .table thead th
|
|
15665
|
+
html:not(#__):not(#___) .cadmin .table thead th [href]:hover {
|
|
15666
15666
|
color: #272833;
|
|
15667
15667
|
}
|
|
15668
|
-
html:not(#__):not(#___) .cadmin .table thead th
|
|
15668
|
+
html:not(#__):not(#___) .cadmin .table thead th [href]:focus {
|
|
15669
15669
|
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
15670
15670
|
outline: 0;
|
|
15671
15671
|
}
|
|
15672
|
+
html:not(#__):not(#___) .cadmin .table th:first-child,
|
|
15673
|
+
html:not(#__):not(#___) .cadmin .table td:first-child,
|
|
15674
|
+
html:not(#__):not(#___) .cadmin .table .table-column-start {
|
|
15675
|
+
padding-left: 12px;
|
|
15676
|
+
}
|
|
15677
|
+
html:not(#__):not(#___) .cadmin .table th:last-child,
|
|
15678
|
+
html:not(#__):not(#___) .cadmin .table td:last-child,
|
|
15679
|
+
html:not(#__):not(#___) .cadmin .table .table-column-end {
|
|
15680
|
+
padding-right: 12px;
|
|
15681
|
+
}
|
|
15672
15682
|
html:not(#__):not(#___) .cadmin .table th {
|
|
15673
15683
|
background-clip: padding-box;
|
|
15674
15684
|
border-top: 1px solid #e7e7ed;
|
|
@@ -15682,30 +15692,20 @@ html:not(#__):not(#___) .cadmin .table th {
|
|
|
15682
15692
|
html:not(#__):not(#___) .cadmin .table td {
|
|
15683
15693
|
background-clip: padding-box;
|
|
15684
15694
|
border-bottom-width: 1px;
|
|
15695
|
+
border-color: #e7e7ed;
|
|
15685
15696
|
border-left-width: 0;
|
|
15686
15697
|
border-right-width: 0;
|
|
15687
|
-
border-top-width: 1px;
|
|
15688
|
-
border-color: #e7e7ed;
|
|
15689
15698
|
border-style: solid;
|
|
15699
|
+
border-top-width: 1px;
|
|
15690
15700
|
padding: 12px;
|
|
15691
15701
|
position: relative;
|
|
15692
15702
|
vertical-align: middle;
|
|
15693
15703
|
}
|
|
15694
|
-
html:not(#__):not(#___) .cadmin .table td:first-child,
|
|
15695
|
-
html:not(#__):not(#___) .cadmin .table th:first-child,
|
|
15696
|
-
html:not(#__):not(#___) .cadmin .table .table-cell-start {
|
|
15697
|
-
padding-left: 12px;
|
|
15698
|
-
}
|
|
15699
|
-
html:not(#__):not(#___) .cadmin .table td:last-child,
|
|
15700
|
-
html:not(#__):not(#___) .cadmin .table th:last-child,
|
|
15701
|
-
html:not(#__):not(#___) .cadmin .table .table-cell-end {
|
|
15702
|
-
padding-right: 12px;
|
|
15703
|
-
}
|
|
15704
15704
|
html:not(#__):not(#___) .cadmin .table tbody {
|
|
15705
15705
|
background-color: #fff;
|
|
15706
15706
|
}
|
|
15707
|
-
html:not(#__):not(#___) .cadmin .table tbody
|
|
15708
|
-
html:not(#__):not(#___) .cadmin .table tbody
|
|
15707
|
+
html:not(#__):not(#___) .cadmin .table tbody th,
|
|
15708
|
+
html:not(#__):not(#___) .cadmin .table tbody td {
|
|
15709
15709
|
background-color: #fff;
|
|
15710
15710
|
}
|
|
15711
15711
|
html:not(#__):not(#___) .cadmin .table tbody + tbody {
|
|
@@ -15714,8 +15714,8 @@ html:not(#__):not(#___) .cadmin .table tbody + tbody {
|
|
|
15714
15714
|
html:not(#__):not(#___) .cadmin .table tfoot {
|
|
15715
15715
|
background-color: #fff;
|
|
15716
15716
|
}
|
|
15717
|
-
html:not(#__):not(#___) .cadmin .table tfoot
|
|
15718
|
-
html:not(#__):not(#___) .cadmin .table tfoot
|
|
15717
|
+
html:not(#__):not(#___) .cadmin .table tfoot th,
|
|
15718
|
+
html:not(#__):not(#___) .cadmin .table tfoot td {
|
|
15719
15719
|
background-color: #fff;
|
|
15720
15720
|
}
|
|
15721
15721
|
html:not(#__):not(#___) .cadmin .table caption {
|
|
@@ -15723,6 +15723,44 @@ html:not(#__):not(#___) .cadmin .table caption {
|
|
|
15723
15723
|
padding-left: 12px;
|
|
15724
15724
|
padding-right: 12px;
|
|
15725
15725
|
}
|
|
15726
|
+
html:not(#__):not(#___) .cadmin .table .table-divider th,
|
|
15727
|
+
html:not(#__):not(#___) .cadmin .table .table-divider td {
|
|
15728
|
+
background-color: #f7f8f9;
|
|
15729
|
+
color: #6b6c7e;
|
|
15730
|
+
font-size: 12px;
|
|
15731
|
+
font-weight: 600;
|
|
15732
|
+
padding: 7px 12px;
|
|
15733
|
+
text-transform: uppercase;
|
|
15734
|
+
}
|
|
15735
|
+
html:not(#__):not(#___) .cadmin .table .table-active {
|
|
15736
|
+
background-color: #f0f5ff;
|
|
15737
|
+
}
|
|
15738
|
+
html:not(#__):not(#___) .cadmin .table .table-active th,
|
|
15739
|
+
html:not(#__):not(#___) .cadmin .table .table-active td {
|
|
15740
|
+
background-color: #f0f5ff;
|
|
15741
|
+
}
|
|
15742
|
+
html:not(#__):not(#___) .cadmin .table .table-active .quick-action-menu {
|
|
15743
|
+
background-color: #f1f2f5;
|
|
15744
|
+
}
|
|
15745
|
+
html:not(#__):not(#___) .cadmin .table .table-disabled {
|
|
15746
|
+
color: #a7a9bc;
|
|
15747
|
+
}
|
|
15748
|
+
html:not(#__):not(#___) .cadmin .table .table-disabled th,
|
|
15749
|
+
html:not(#__):not(#___) .cadmin .table .table-disabled td {
|
|
15750
|
+
background-color: #fff;
|
|
15751
|
+
cursor: not-allowed;
|
|
15752
|
+
}
|
|
15753
|
+
html:not(#__):not(#___) .cadmin .table .table-disabled th [href],
|
|
15754
|
+
html:not(#__):not(#___) .cadmin .table .table-disabled td [href] {
|
|
15755
|
+
color: #a7a9bc;
|
|
15756
|
+
pointer-events: none;
|
|
15757
|
+
}
|
|
15758
|
+
html:not(#__):not(#___) .cadmin .table .table-disabled .table-title {
|
|
15759
|
+
color: #a7a9bc;
|
|
15760
|
+
}
|
|
15761
|
+
html:not(#__):not(#___) .cadmin .table .table-disabled .table-list-title {
|
|
15762
|
+
color: #a7a9bc;
|
|
15763
|
+
}
|
|
15726
15764
|
html:not(#__):not(#___) .cadmin .table .autofit-col {
|
|
15727
15765
|
justify-content: center;
|
|
15728
15766
|
padding-left: 12px;
|
|
@@ -15738,6 +15776,12 @@ html:not(#__):not(#___) .cadmin .table .custom-control,
|
|
|
15738
15776
|
html:not(#__):not(#___) .cadmin .table .form-check {
|
|
15739
15777
|
margin-bottom: 0;
|
|
15740
15778
|
}
|
|
15779
|
+
html:not(#__):not(#___) .cadmin .table .quick-action-menu {
|
|
15780
|
+
align-items: flex-start;
|
|
15781
|
+
background-color: #fff;
|
|
15782
|
+
padding-bottom: 12px;
|
|
15783
|
+
padding-top: 12px;
|
|
15784
|
+
}
|
|
15741
15785
|
html:not(#__):not(#___) .cadmin .table-caption-bottom caption {
|
|
15742
15786
|
caption-side: bottom;
|
|
15743
15787
|
}
|
|
@@ -15748,15 +15792,13 @@ html:not(#__):not(#___) .cadmin .table-sm td {
|
|
|
15748
15792
|
html:not(#__):not(#___) .cadmin .table-bordered {
|
|
15749
15793
|
border: 1px solid #e7e7ed;
|
|
15750
15794
|
}
|
|
15751
|
-
html:not(#__):not(#___) .cadmin .table-bordered thead
|
|
15752
|
-
html:not(#__):not(#___) .cadmin .table-bordered thead
|
|
15753
|
-
border-bottom-width:
|
|
15754
|
-
border-top-width: 1px;
|
|
15795
|
+
html:not(#__):not(#___) .cadmin .table-bordered thead th,
|
|
15796
|
+
html:not(#__):not(#___) .cadmin .table-bordered thead td {
|
|
15797
|
+
border-bottom-width: calc(2 * 1px);
|
|
15755
15798
|
}
|
|
15756
|
-
html:not(#__):not(#___) .cadmin .table-bordered
|
|
15757
|
-
html:not(#__):not(#___) .cadmin .table-bordered
|
|
15799
|
+
html:not(#__):not(#___) .cadmin .table-bordered th,
|
|
15800
|
+
html:not(#__):not(#___) .cadmin .table-bordered td {
|
|
15758
15801
|
border: 1px solid #e7e7ed;
|
|
15759
|
-
border-width: 1px;
|
|
15760
15802
|
}
|
|
15761
15803
|
html:not(#__):not(#___) .cadmin .table-borderless th,
|
|
15762
15804
|
html:not(#__):not(#___) .cadmin .table-borderless td,
|
|
@@ -15768,12 +15810,28 @@ html:not(#__):not(#___) .cadmin .table-striped tbody tr:nth-of-type(odd) td,
|
|
|
15768
15810
|
html:not(#__):not(#___) .cadmin .table-striped tbody tr:nth-of-type(odd) th {
|
|
15769
15811
|
background-color: #f7f8f9;
|
|
15770
15812
|
}
|
|
15771
|
-
html:not(#__):not(#___) .cadmin .table-hover tbody tr:hover
|
|
15772
|
-
|
|
15773
|
-
|
|
15813
|
+
html:not(#__):not(#___) .cadmin .table-hover tbody tr:hover {
|
|
15814
|
+
background-color: #f0f5ff;
|
|
15815
|
+
color: #272833;
|
|
15816
|
+
}
|
|
15817
|
+
html:not(#__):not(#___) .cadmin .table-hover tbody tr:hover th,
|
|
15818
|
+
html:not(#__):not(#___) .cadmin .table-hover tbody tr:hover td {
|
|
15819
|
+
background-color: #f0f5ff;
|
|
15774
15820
|
color: #272833;
|
|
15821
|
+
}
|
|
15822
|
+
html:not(#__):not(#___) .cadmin .table-hover tbody tr:hover .quick-action-menu {
|
|
15775
15823
|
background-color: #f0f5ff;
|
|
15776
15824
|
}
|
|
15825
|
+
html:not(#__):not(#___) .cadmin .table-hover .table-active:hover .quick-action-menu {
|
|
15826
|
+
background-color: #f1f2f5;
|
|
15827
|
+
}
|
|
15828
|
+
html:not(#__):not(#___) .cadmin .table-hover .table-disabled:hover {
|
|
15829
|
+
background-color: #fff;
|
|
15830
|
+
}
|
|
15831
|
+
html:not(#__):not(#___) .cadmin .table-hover .table-disabled:hover th,
|
|
15832
|
+
html:not(#__):not(#___) .cadmin .table-hover .table-disabled:hover td {
|
|
15833
|
+
background-color: #fff;
|
|
15834
|
+
}
|
|
15777
15835
|
html:not(#__):not(#___) .cadmin .table-primary,
|
|
15778
15836
|
html:not(#__):not(#___) .cadmin .table-primary > th,
|
|
15779
15837
|
html:not(#__):not(#___) .cadmin .table-primary > td {
|
|
@@ -15918,40 +15976,6 @@ html:not(#__):not(#___) .cadmin .table-hover .table-dark:hover > td,
|
|
|
15918
15976
|
html:not(#__):not(#___) .cadmin .table-hover .table-dark:hover > th {
|
|
15919
15977
|
background-color: #b6b6ba;
|
|
15920
15978
|
}
|
|
15921
|
-
html:not(#__):not(#___) .cadmin .table-active,
|
|
15922
|
-
html:not(#__):not(#___) .cadmin .table-active > th,
|
|
15923
|
-
html:not(#__):not(#___) .cadmin .table-active > td {
|
|
15924
|
-
background-color: #f0f5ff;
|
|
15925
|
-
}
|
|
15926
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-active:hover {
|
|
15927
|
-
background-color: #d6e4ff;
|
|
15928
|
-
}
|
|
15929
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-active:hover > td,
|
|
15930
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-active:hover > th {
|
|
15931
|
-
background-color: #d6e4ff;
|
|
15932
|
-
}
|
|
15933
|
-
html:not(#__):not(#___) .cadmin .table-disabled {
|
|
15934
|
-
color: #a7a9bc;
|
|
15935
|
-
}
|
|
15936
|
-
html:not(#__):not(#___) .cadmin .table-disabled > td,
|
|
15937
|
-
html:not(#__):not(#___) .cadmin .table-disabled > th {
|
|
15938
|
-
background-color: #fff;
|
|
15939
|
-
cursor: not-allowed;
|
|
15940
|
-
}
|
|
15941
|
-
html:not(#__):not(#___) .cadmin .table-disabled > td a,
|
|
15942
|
-
html:not(#__):not(#___) .cadmin .table-disabled > th a {
|
|
15943
|
-
color: #a7a9bc;
|
|
15944
|
-
pointer-events: none;
|
|
15945
|
-
}
|
|
15946
|
-
html:not(#__):not(#___) .cadmin .table-disabled .table-title,
|
|
15947
|
-
html:not(#__):not(#___) .cadmin .table-disabled .table-list-title {
|
|
15948
|
-
color: #a7a9bc;
|
|
15949
|
-
}
|
|
15950
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-disabled:hover,
|
|
15951
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-disabled:hover > td,
|
|
15952
|
-
html:not(#__):not(#___) .cadmin .table-hover .table-disabled:hover > th {
|
|
15953
|
-
background-color: #fff;
|
|
15954
|
-
}
|
|
15955
15979
|
html:not(#__):not(#___) .cadmin .table-striped tbody .table-disabled:nth-of-type(odd) td,
|
|
15956
15980
|
html:not(#__):not(#___) .cadmin .table-striped tbody .table-disabled:nth-of-type(odd) th {
|
|
15957
15981
|
background-color: #fff;
|
|
@@ -16054,8 +16078,8 @@ html:not(#__):not(#___) .cadmin .table-action-link:hover {
|
|
|
16054
16078
|
}
|
|
16055
16079
|
html:not(#__):not(#___) .cadmin .table-action-link:focus {
|
|
16056
16080
|
background-color: rgba(0, 0, 0, 0.02);
|
|
16057
|
-
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
16058
16081
|
color: #272833;
|
|
16082
|
+
box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
|
|
16059
16083
|
outline: 0;
|
|
16060
16084
|
}
|
|
16061
16085
|
html:not(#__):not(#___) .cadmin .table-action-link:active {
|
|
@@ -16080,9 +16104,6 @@ html:not(#__):not(#___) .cadmin .table-responsive-sm {
|
|
|
16080
16104
|
overflow-x: auto;
|
|
16081
16105
|
width: 100%;
|
|
16082
16106
|
}
|
|
16083
|
-
html:not(#__):not(#___) .cadmin .table-responsive-sm > .table-bordered {
|
|
16084
|
-
border-width: 0;
|
|
16085
|
-
}
|
|
16086
16107
|
}
|
|
16087
16108
|
html:not(#__):not(#___) .cadmin .table-responsive-md {
|
|
16088
16109
|
margin-bottom: 24px;
|
|
@@ -16094,9 +16115,6 @@ html:not(#__):not(#___) .cadmin .table-responsive-md {
|
|
|
16094
16115
|
overflow-x: auto;
|
|
16095
16116
|
width: 100%;
|
|
16096
16117
|
}
|
|
16097
|
-
html:not(#__):not(#___) .cadmin .table-responsive-md > .table-bordered {
|
|
16098
|
-
border-width: 0;
|
|
16099
|
-
}
|
|
16100
16118
|
}
|
|
16101
16119
|
html:not(#__):not(#___) .cadmin .table-responsive-lg {
|
|
16102
16120
|
margin-bottom: 24px;
|
|
@@ -16108,9 +16126,6 @@ html:not(#__):not(#___) .cadmin .table-responsive-lg {
|
|
|
16108
16126
|
overflow-x: auto;
|
|
16109
16127
|
width: 100%;
|
|
16110
16128
|
}
|
|
16111
|
-
html:not(#__):not(#___) .cadmin .table-responsive-lg > .table-bordered {
|
|
16112
|
-
border-width: 0;
|
|
16113
|
-
}
|
|
16114
16129
|
}
|
|
16115
16130
|
html:not(#__):not(#___) .cadmin .table-responsive-xl {
|
|
16116
16131
|
margin-bottom: 24px;
|
|
@@ -16122,9 +16137,6 @@ html:not(#__):not(#___) .cadmin .table-responsive-xl {
|
|
|
16122
16137
|
overflow-x: auto;
|
|
16123
16138
|
width: 100%;
|
|
16124
16139
|
}
|
|
16125
|
-
html:not(#__):not(#___) .cadmin .table-responsive-xl > .table-bordered {
|
|
16126
|
-
border-width: 0;
|
|
16127
|
-
}
|
|
16128
16140
|
}
|
|
16129
16141
|
html:not(#__):not(#___) .cadmin .table-responsive {
|
|
16130
16142
|
margin-bottom: 24px;
|
|
@@ -16133,18 +16145,29 @@ html:not(#__):not(#___) .cadmin .table-responsive {
|
|
|
16133
16145
|
overflow-x: auto;
|
|
16134
16146
|
width: 100%;
|
|
16135
16147
|
}
|
|
16136
|
-
html:not(#__):not(#___) .cadmin .table-responsive > .table-bordered {
|
|
16137
|
-
border-width: 0;
|
|
16138
|
-
}
|
|
16139
16148
|
html:not(#__):not(#___) .cadmin .table-list {
|
|
16140
16149
|
border-collapse: separate;
|
|
16141
16150
|
border-color: #e7e7ed;
|
|
16151
|
+
border-radius: 4px;
|
|
16142
16152
|
border-style: solid;
|
|
16143
16153
|
border-width: 1px 1px;
|
|
16144
|
-
border-radius: 4px;
|
|
16145
16154
|
color: #272833;
|
|
16146
16155
|
margin-bottom: 1px;
|
|
16147
16156
|
}
|
|
16157
|
+
html:not(#__):not(#___) .cadmin .table-list thead {
|
|
16158
|
+
background-color: #fff;
|
|
16159
|
+
}
|
|
16160
|
+
html:not(#__):not(#___) .cadmin .table-list thead th,
|
|
16161
|
+
html:not(#__):not(#___) .cadmin .table-list thead td {
|
|
16162
|
+
background-color: #fff;
|
|
16163
|
+
border-bottom-width: 0;
|
|
16164
|
+
}
|
|
16165
|
+
html:not(#__):not(#___) .cadmin .table-list th,
|
|
16166
|
+
html:not(#__):not(#___) .cadmin .table-list td {
|
|
16167
|
+
border-color: #e7e7ed;
|
|
16168
|
+
border-style: solid;
|
|
16169
|
+
border-width: 1px 0 0 0;
|
|
16170
|
+
}
|
|
16148
16171
|
html:not(#__):not(#___) .cadmin .table-list thead:first-child tr:first-child th,
|
|
16149
16172
|
html:not(#__):not(#___) .cadmin .table-list thead:first-child tr:first-child td,
|
|
16150
16173
|
html:not(#__):not(#___) .cadmin .table-list tbody:first-child tr:first-child th,
|
|
@@ -16157,151 +16180,156 @@ html:not(#__):not(#___) .cadmin .table-list caption:first-child + thead tr:first
|
|
|
16157
16180
|
}
|
|
16158
16181
|
html:not(#__):not(#___) .cadmin .table-list thead:first-child tr:first-child th:first-child,
|
|
16159
16182
|
html:not(#__):not(#___) .cadmin .table-list thead:first-child tr:first-child td:first-child,
|
|
16160
|
-
html:not(#__):not(#___) .cadmin .table-list thead:first-child tr:first-child .table-cell-start,
|
|
16161
16183
|
html:not(#__):not(#___) .cadmin .table-list tbody:first-child tr:first-child th:first-child,
|
|
16162
16184
|
html:not(#__):not(#___) .cadmin .table-list tbody:first-child tr:first-child td:first-child,
|
|
16163
|
-
html:not(#__):not(#___) .cadmin .table-list tbody:first-child tr:first-child .table-cell-start,
|
|
16164
16185
|
html:not(#__):not(#___) .cadmin .table-list tfoot:first-child tr:first-child th:first-child,
|
|
16165
16186
|
html:not(#__):not(#___) .cadmin .table-list tfoot:first-child tr:first-child td:first-child,
|
|
16166
|
-
html:not(#__):not(#___) .cadmin .table-list tfoot:first-child tr:first-child .table-cell-start,
|
|
16167
16187
|
html:not(#__):not(#___) .cadmin .table-list caption:first-child + thead tr:first-child th:first-child,
|
|
16168
|
-
html:not(#__):not(#___) .cadmin .table-list caption:first-child + thead tr:first-child td:first-child
|
|
16169
|
-
|
|
16170
|
-
border-top-left-radius: 4px;
|
|
16188
|
+
html:not(#__):not(#___) .cadmin .table-list caption:first-child + thead tr:first-child td:first-child {
|
|
16189
|
+
border-top-left-radius: calc(4px - 1px);
|
|
16171
16190
|
}
|
|
16172
16191
|
html:not(#__):not(#___) .cadmin .table-list thead:first-child tr:first-child th:last-child,
|
|
16173
16192
|
html:not(#__):not(#___) .cadmin .table-list thead:first-child tr:first-child td:last-child,
|
|
16174
|
-
html:not(#__):not(#___) .cadmin .table-list thead:first-child tr:first-child .table-cell-start,
|
|
16175
16193
|
html:not(#__):not(#___) .cadmin .table-list tbody:first-child tr:first-child th:last-child,
|
|
16176
16194
|
html:not(#__):not(#___) .cadmin .table-list tbody:first-child tr:first-child td:last-child,
|
|
16177
|
-
html:not(#__):not(#___) .cadmin .table-list tbody:first-child tr:first-child .table-cell-start,
|
|
16178
16195
|
html:not(#__):not(#___) .cadmin .table-list tfoot:first-child tr:first-child th:last-child,
|
|
16179
16196
|
html:not(#__):not(#___) .cadmin .table-list tfoot:first-child tr:first-child td:last-child,
|
|
16180
|
-
html:not(#__):not(#___) .cadmin .table-list tfoot:first-child tr:first-child .table-cell-start,
|
|
16181
16197
|
html:not(#__):not(#___) .cadmin .table-list caption:first-child + thead tr:first-child th:last-child,
|
|
16182
|
-
html:not(#__):not(#___) .cadmin .table-list caption:first-child + thead tr:first-child td:last-child
|
|
16183
|
-
|
|
16184
|
-
border-top-right-radius: 4px;
|
|
16198
|
+
html:not(#__):not(#___) .cadmin .table-list caption:first-child + thead tr:first-child td:last-child {
|
|
16199
|
+
border-top-right-radius: calc(4px - 1px);
|
|
16185
16200
|
}
|
|
16186
|
-
html:not(#__):not(#___) .cadmin .table-list
|
|
16187
|
-
|
|
16188
|
-
|
|
16189
|
-
html:not(#__):not(#___) .cadmin .table-list
|
|
16190
|
-
|
|
16191
|
-
html:not(#__):not(#___) .cadmin .table-list tfoot th {
|
|
16192
|
-
border-color: #e7e7ed;
|
|
16193
|
-
border-style: solid;
|
|
16194
|
-
border-width: 1px 0 0 0;
|
|
16201
|
+
html:not(#__):not(#___) .cadmin .table-list .table-row-start .table-cell-start {
|
|
16202
|
+
border-top-left-radius: calc(4px - 1px);
|
|
16203
|
+
}
|
|
16204
|
+
html:not(#__):not(#___) .cadmin .table-list .table-row-start .table-cell-end {
|
|
16205
|
+
border-top-right-radius: calc(4px - 1px);
|
|
16195
16206
|
}
|
|
16196
16207
|
html:not(#__):not(#___) .cadmin .table-list thead:last-child tr:last-child th:first-child,
|
|
16197
16208
|
html:not(#__):not(#___) .cadmin .table-list thead:last-child tr:last-child td:first-child,
|
|
16198
|
-
html:not(#__):not(#___) .cadmin .table-list thead:last-child tr:last-child .table-cell-start,
|
|
16199
16209
|
html:not(#__):not(#___) .cadmin .table-list tbody:last-child tr:last-child th:first-child,
|
|
16200
16210
|
html:not(#__):not(#___) .cadmin .table-list tbody:last-child tr:last-child td:first-child,
|
|
16201
|
-
html:not(#__):not(#___) .cadmin .table-list tbody:last-child tr:last-child .table-cell-start,
|
|
16202
16211
|
html:not(#__):not(#___) .cadmin .table-list tfoot:last-child tr:last-child th:first-child,
|
|
16203
|
-
html:not(#__):not(#___) .cadmin .table-list tfoot:last-child tr:last-child td:first-child
|
|
16204
|
-
|
|
16205
|
-
border-bottom-left-radius: 4px;
|
|
16212
|
+
html:not(#__):not(#___) .cadmin .table-list tfoot:last-child tr:last-child td:first-child {
|
|
16213
|
+
border-bottom-left-radius: calc(4px - 1px);
|
|
16206
16214
|
}
|
|
16207
16215
|
html:not(#__):not(#___) .cadmin .table-list thead:last-child tr:last-child th:last-child,
|
|
16208
16216
|
html:not(#__):not(#___) .cadmin .table-list thead:last-child tr:last-child td:last-child,
|
|
16209
|
-
html:not(#__):not(#___) .cadmin .table-list thead:last-child tr:last-child .table-cell-end,
|
|
16210
16217
|
html:not(#__):not(#___) .cadmin .table-list tbody:last-child tr:last-child th:last-child,
|
|
16211
16218
|
html:not(#__):not(#___) .cadmin .table-list tbody:last-child tr:last-child td:last-child,
|
|
16212
|
-
html:not(#__):not(#___) .cadmin .table-list tbody:last-child tr:last-child .table-cell-end,
|
|
16213
16219
|
html:not(#__):not(#___) .cadmin .table-list tfoot:last-child tr:last-child th:last-child,
|
|
16214
|
-
html:not(#__):not(#___) .cadmin .table-list tfoot:last-child tr:last-child td:last-child
|
|
16215
|
-
|
|
16216
|
-
border-bottom-right-radius: 4px;
|
|
16220
|
+
html:not(#__):not(#___) .cadmin .table-list tfoot:last-child tr:last-child td:last-child {
|
|
16221
|
+
border-bottom-right-radius: calc(4px - 1px);
|
|
16217
16222
|
}
|
|
16218
|
-
html:not(#__):not(#___) .cadmin .table-list
|
|
16219
|
-
|
|
16223
|
+
html:not(#__):not(#___) .cadmin .table-list .table-row-end .table-cell-start {
|
|
16224
|
+
border-bottom-left-radius: calc(4px - 1px);
|
|
16220
16225
|
}
|
|
16221
|
-
html:not(#__):not(#___) .cadmin .table-list
|
|
16222
|
-
|
|
16223
|
-
background-color: #fff;
|
|
16226
|
+
html:not(#__):not(#___) .cadmin .table-list .table-row-end .table-cell-end {
|
|
16227
|
+
border-bottom-right-radius: calc(4px - 1px);
|
|
16224
16228
|
}
|
|
16225
16229
|
html:not(#__):not(#___) .cadmin .table-list tbody {
|
|
16226
16230
|
background-color: #fff;
|
|
16227
16231
|
}
|
|
16228
|
-
html:not(#__):not(#___) .cadmin .table-list tbody
|
|
16229
|
-
html:not(#__):not(#___) .cadmin .table-list tbody
|
|
16232
|
+
html:not(#__):not(#___) .cadmin .table-list tbody th,
|
|
16233
|
+
html:not(#__):not(#___) .cadmin .table-list tbody td {
|
|
16230
16234
|
background-color: #fff;
|
|
16231
16235
|
vertical-align: middle;
|
|
16232
16236
|
}
|
|
16233
16237
|
html:not(#__):not(#___) .cadmin .table-list tfoot {
|
|
16234
16238
|
background-color: #fff;
|
|
16235
16239
|
}
|
|
16236
|
-
html:not(#__):not(#___) .cadmin .table-list tfoot
|
|
16237
|
-
html:not(#__):not(#___) .cadmin .table-list tfoot
|
|
16240
|
+
html:not(#__):not(#___) .cadmin .table-list tfoot th,
|
|
16241
|
+
html:not(#__):not(#___) .cadmin .table-list tfoot td {
|
|
16238
16242
|
background-color: #fff;
|
|
16239
16243
|
vertical-align: middle;
|
|
16240
16244
|
}
|
|
16241
|
-
html:not(#__):not(#___) .cadmin .table-list .table-
|
|
16242
|
-
|
|
16245
|
+
html:not(#__):not(#___) .cadmin .table-list .table-divider th,
|
|
16246
|
+
html:not(#__):not(#___) .cadmin .table-list .table-divider td {
|
|
16247
|
+
padding-bottom: 7px;
|
|
16248
|
+
padding-left: 12px;
|
|
16249
|
+
padding-right: 12px;
|
|
16250
|
+
padding-top: 7px;
|
|
16243
16251
|
}
|
|
16244
|
-
html:not(#__):not(#___) .cadmin .table-list .table-
|
|
16245
|
-
|
|
16252
|
+
html:not(#__):not(#___) .cadmin .table-list .table-active {
|
|
16253
|
+
background-color: #f0f5ff;
|
|
16246
16254
|
}
|
|
16247
|
-
html:not(#__):not(#___) .cadmin .table-list .table-
|
|
16248
|
-
|
|
16255
|
+
html:not(#__):not(#___) .cadmin .table-list .table-active th,
|
|
16256
|
+
html:not(#__):not(#___) .cadmin .table-list .table-active td {
|
|
16257
|
+
background-color: #f0f5ff;
|
|
16249
16258
|
}
|
|
16250
|
-
html:not(#__):not(#___) .cadmin .table-list .table-
|
|
16251
|
-
|
|
16259
|
+
html:not(#__):not(#___) .cadmin .table-list .table-active .quick-action-menu {
|
|
16260
|
+
background-color: #f0f5ff;
|
|
16261
|
+
}
|
|
16262
|
+
html:not(#__):not(#___) .cadmin .table-list .table-disabled {
|
|
16263
|
+
background-color: #fff;
|
|
16264
|
+
color: #a7a9bc;
|
|
16265
|
+
}
|
|
16266
|
+
html:not(#__):not(#___) .cadmin .table-list .table-disabled th,
|
|
16267
|
+
html:not(#__):not(#___) .cadmin .table-list .table-disabled td {
|
|
16268
|
+
background-color: #fff;
|
|
16269
|
+
color: #a7a9bc;
|
|
16270
|
+
}
|
|
16271
|
+
html:not(#__):not(#___) .cadmin .table-list .table-disabled th [href],
|
|
16272
|
+
html:not(#__):not(#___) .cadmin .table-list .table-disabled td [href] {
|
|
16273
|
+
color: #a7a9bc;
|
|
16274
|
+
pointer-events: none;
|
|
16275
|
+
}
|
|
16276
|
+
html:not(#__):not(#___) .cadmin .table-list .table-disabled .table-title {
|
|
16277
|
+
color: #a7a9bc;
|
|
16278
|
+
}
|
|
16279
|
+
html:not(#__):not(#___) .cadmin .table-list .table-disabled .table-list-title {
|
|
16280
|
+
color: #a7a9bc;
|
|
16281
|
+
}
|
|
16282
|
+
html:not(#__):not(#___) .cadmin .table-list .quick-action-menu {
|
|
16283
|
+
align-items: center;
|
|
16284
|
+
background-color: #fff;
|
|
16285
|
+
bottom: 0;
|
|
16286
|
+
top: 0;
|
|
16287
|
+
}
|
|
16288
|
+
html:not(#__):not(#___) .cadmin .table.table-list.table-bordered thead th,
|
|
16289
|
+
html:not(#__):not(#___) .cadmin .table.table-list.table-bordered thead td {
|
|
16290
|
+
border-bottom-width: 0;
|
|
16252
16291
|
}
|
|
16253
|
-
html:not(#__):not(#___) .cadmin .table-list.table-bordered
|
|
16254
|
-
html:not(#__):not(#___) .cadmin .table-list.table-bordered
|
|
16255
|
-
html:not(#__):not(#___) .cadmin .table-list.table-bordered tbody th,
|
|
16256
|
-
html:not(#__):not(#___) .cadmin .table-list.table-bordered tbody td,
|
|
16257
|
-
html:not(#__):not(#___) .cadmin .table-list.table-bordered tfoot th,
|
|
16258
|
-
html:not(#__):not(#___) .cadmin .table-list.table-bordered tfoot td {
|
|
16292
|
+
html:not(#__):not(#___) .cadmin .table.table-list.table-bordered th,
|
|
16293
|
+
html:not(#__):not(#___) .cadmin .table.table-list.table-bordered td {
|
|
16259
16294
|
border-left-width: 1px;
|
|
16260
16295
|
}
|
|
16261
|
-
html:not(#__):not(#___) .cadmin .table-list.table-bordered th:first-child,
|
|
16262
|
-
html:not(#__):not(#___) .cadmin .table-list.table-bordered td:first-child
|
|
16296
|
+
html:not(#__):not(#___) .cadmin .table.table-list.table-bordered th:first-child,
|
|
16297
|
+
html:not(#__):not(#___) .cadmin .table.table-list.table-bordered td:first-child,
|
|
16298
|
+
html:not(#__):not(#___) .cadmin .table.table-list.table-bordered .table-column-start {
|
|
16263
16299
|
border-left-width: 0;
|
|
16264
16300
|
}
|
|
16265
16301
|
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody tr:nth-of-type(odd) td,
|
|
16266
16302
|
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody tr:nth-of-type(odd) th {
|
|
16267
16303
|
background-color: #f7f8f9;
|
|
16268
16304
|
}
|
|
16269
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody tr:hover
|
|
16270
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody tr:hover td,
|
|
16271
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody tr:hover th {
|
|
16305
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody tr:hover {
|
|
16272
16306
|
background-color: #f0f5ff;
|
|
16273
16307
|
}
|
|
16274
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover
|
|
16275
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover
|
|
16276
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-active:hover > td {
|
|
16308
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody tr:hover th,
|
|
16309
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody tr:hover td {
|
|
16277
16310
|
background-color: #f0f5ff;
|
|
16278
16311
|
}
|
|
16279
|
-
html:not(#__):not(#___) .cadmin .table-list
|
|
16280
|
-
html:not(#__):not(#___) .cadmin .table-list .table-active > th,
|
|
16281
|
-
html:not(#__):not(#___) .cadmin .table-list .table-active > td {
|
|
16312
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody tr:hover .quick-action-menu {
|
|
16282
16313
|
background-color: #f0f5ff;
|
|
16283
16314
|
}
|
|
16284
|
-
html:not(#__):not(#___) .cadmin .table-list .table-
|
|
16285
|
-
background-color: #
|
|
16286
|
-
color: #a7a9bc;
|
|
16315
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-active:hover {
|
|
16316
|
+
background-color: #f0f5ff;
|
|
16287
16317
|
}
|
|
16288
|
-
html:not(#__):not(#___) .cadmin .table-list .table-
|
|
16289
|
-
html:not(#__):not(#___) .cadmin .table-list .table-
|
|
16290
|
-
background-color: #
|
|
16291
|
-
cursor: not-allowed;
|
|
16318
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-active:hover th,
|
|
16319
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-active:hover td {
|
|
16320
|
+
background-color: #f0f5ff;
|
|
16292
16321
|
}
|
|
16293
|
-
html:not(#__):not(#___) .cadmin .table-list .table-
|
|
16294
|
-
|
|
16295
|
-
color: #a7a9bc;
|
|
16296
|
-
pointer-events: none;
|
|
16322
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-active:hover .quick-action-menu {
|
|
16323
|
+
background-color: #f0f5ff;
|
|
16297
16324
|
}
|
|
16298
|
-
html:not(#__):not(#___) .cadmin .table-list
|
|
16299
|
-
|
|
16300
|
-
|
|
16325
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-disabled {
|
|
16326
|
+
background-color: #fff;
|
|
16327
|
+
}
|
|
16328
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-disabled:hover {
|
|
16329
|
+
background-color: #fff;
|
|
16301
16330
|
}
|
|
16302
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-disabled:hover,
|
|
16303
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-disabled:hover
|
|
16304
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-disabled:hover > th {
|
|
16331
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-disabled:hover th,
|
|
16332
|
+
html:not(#__):not(#___) .cadmin .table-list.table-hover .table-disabled:hover td {
|
|
16305
16333
|
background-color: #fff;
|
|
16306
16334
|
}
|
|
16307
16335
|
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody .table-disabled:nth-of-type(odd),
|
|
@@ -16401,22 +16429,6 @@ html:not(#__):not(#___) .cadmin .table-heading-nowrap thead td,
|
|
|
16401
16429
|
html:not(#__):not(#___) .cadmin .table-heading-nowrap thead th {
|
|
16402
16430
|
white-space: nowrap;
|
|
16403
16431
|
}
|
|
16404
|
-
html:not(#__):not(#___) .cadmin .table .table-divider td,
|
|
16405
|
-
html:not(#__):not(#___) .cadmin .table .table-divider th {
|
|
16406
|
-
background-color: #f7f8f9;
|
|
16407
|
-
color: #6b6c7e;
|
|
16408
|
-
font-size: 12px;
|
|
16409
|
-
font-weight: 600;
|
|
16410
|
-
padding: 7px 12px;
|
|
16411
|
-
text-transform: uppercase;
|
|
16412
|
-
}
|
|
16413
|
-
html:not(#__):not(#___) .cadmin .table-list .table-divider td,
|
|
16414
|
-
html:not(#__):not(#___) .cadmin .table-list .table-divider th {
|
|
16415
|
-
padding-bottom: 7px;
|
|
16416
|
-
padding-left: 12px;
|
|
16417
|
-
padding-right: 12px;
|
|
16418
|
-
padding-top: 7px;
|
|
16419
|
-
}
|
|
16420
16432
|
html:not(#__):not(#___) .cadmin .table-valign-bottom tbody td,
|
|
16421
16433
|
html:not(#__):not(#___) .cadmin .table-valign-bottom tbody th,
|
|
16422
16434
|
html:not(#__):not(#___) .cadmin .table-valign-bottom tfoot td,
|
|
@@ -16492,48 +16504,18 @@ html:not(#__):not(#___) .cadmin .show-quick-actions-on-hover tr:not(.table-activ
|
|
|
16492
16504
|
html:not(#__):not(#___) .cadmin .show-quick-actions-on-hover .table-focus:not(.table-active):not(.table-disabled) .quick-action-menu {
|
|
16493
16505
|
display: flex;
|
|
16494
16506
|
}
|
|
16495
|
-
html:not(#__):not(#___) .cadmin .table .quick-action-menu {
|
|
16496
|
-
align-items: flex-start;
|
|
16497
|
-
background-color: #fff;
|
|
16498
|
-
padding-bottom: 12px;
|
|
16499
|
-
padding-top: 12px;
|
|
16500
|
-
}
|
|
16501
16507
|
html:not(#__):not(#___) .cadmin .table-striped tbody tr:nth-of-type(odd) .quick-action-menu {
|
|
16502
16508
|
background-color: #f7f8f9;
|
|
16503
16509
|
}
|
|
16504
16510
|
html:not(#__):not(#___) .cadmin .table-striped tbody .table-active:nth-of-type(odd) .quick-action-menu {
|
|
16505
16511
|
background-color: #f0f5ff;
|
|
16506
16512
|
}
|
|
16507
|
-
html:not(#__):not(#___) .cadmin .table-hover tbody tr:hover .quick-action-menu {
|
|
16508
|
-
background-color: #f0f5ff;
|
|
16509
|
-
}
|
|
16510
|
-
html:not(#__):not(#___) .cadmin .table-hover tbody .table-active:hover .quick-action-menu {
|
|
16511
|
-
background-color: #f1f2f5;
|
|
16512
|
-
}
|
|
16513
|
-
html:not(#__):not(#___) .cadmin .table-active .quick-action-menu {
|
|
16514
|
-
background-color: #f1f2f5;
|
|
16515
|
-
}
|
|
16516
|
-
html:not(#__):not(#___) .cadmin .table-list .quick-action-menu {
|
|
16517
|
-
align-items: center;
|
|
16518
|
-
background-color: #fff;
|
|
16519
|
-
bottom: 0;
|
|
16520
|
-
top: 0;
|
|
16521
|
-
}
|
|
16522
16513
|
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody tr:nth-of-type(odd) .quick-action-menu {
|
|
16523
16514
|
background-color: #f7f8f9;
|
|
16524
16515
|
}
|
|
16525
16516
|
html:not(#__):not(#___) .cadmin .table-list.table-striped tbody .table-active:nth-of-type(odd) .quick-action-menu {
|
|
16526
16517
|
background-color: #f0f5ff;
|
|
16527
16518
|
}
|
|
16528
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody tr:hover .quick-action-menu {
|
|
16529
|
-
background-color: #f0f5ff;
|
|
16530
|
-
}
|
|
16531
|
-
html:not(#__):not(#___) .cadmin .table-list.table-hover tbody .table-active:hover .quick-action-menu {
|
|
16532
|
-
background-color: #f0f5ff;
|
|
16533
|
-
}
|
|
16534
|
-
html:not(#__):not(#___) .cadmin .table-list .table-active .quick-action-menu {
|
|
16535
|
-
background-color: #f0f5ff;
|
|
16536
|
-
}
|
|
16537
16519
|
html:not(#__):not(#___) .cadmin .table-column-text-start,
|
|
16538
16520
|
html:not(#__):not(#___) .cadmin .table-cell-text-start {
|
|
16539
16521
|
text-align: left;
|
|
@@ -18034,9 +18016,18 @@ html:not(#__):not(#___) .cadmin .treeview {
|
|
|
18034
18016
|
margin-bottom: 0;
|
|
18035
18017
|
padding: 2px 0;
|
|
18036
18018
|
}
|
|
18019
|
+
html:not(#__):not(#___) .cadmin .treeview .btn {
|
|
18020
|
+
font-size: 12px;
|
|
18021
|
+
line-height: 1;
|
|
18022
|
+
padding: 6px 8px;
|
|
18023
|
+
}
|
|
18024
|
+
html:not(#__):not(#___) .cadmin .treeview .btn .c-inner {
|
|
18025
|
+
margin: -7px -8px;
|
|
18026
|
+
}
|
|
18037
18027
|
html:not(#__):not(#___) .cadmin .treeview .btn-monospaced {
|
|
18038
|
-
font-size:
|
|
18028
|
+
font-size: inherit;
|
|
18039
18029
|
height: 24px;
|
|
18030
|
+
padding: 0;
|
|
18040
18031
|
width: 24px;
|
|
18041
18032
|
}
|
|
18042
18033
|
html:not(#__):not(#___) .cadmin .treeview .btn-monospaced:focus, html:not(#__):not(#___) .cadmin .treeview .btn-monospaced.focus {
|
|
@@ -18050,11 +18041,14 @@ html:not(#__):not(#___) .cadmin .treeview .custom-control {
|
|
|
18050
18041
|
margin-right: 4px;
|
|
18051
18042
|
margin-top: 1.5px;
|
|
18052
18043
|
}
|
|
18044
|
+
html:not(#__):not(#___) .cadmin .treeview .component-expander {
|
|
18045
|
+
font-size: 10px;
|
|
18046
|
+
}
|
|
18053
18047
|
html:not(#__):not(#___) .cadmin .treeview .component-expander .lexicon-icon:not(.component-expanded-d-none) {
|
|
18054
18048
|
display: none;
|
|
18055
18049
|
}
|
|
18056
18050
|
html:not(#__):not(#___) .cadmin .treeview .component-action {
|
|
18057
|
-
|
|
18051
|
+
font-size: 16px;
|
|
18058
18052
|
margin-left: 2px;
|
|
18059
18053
|
margin-right: 2px;
|
|
18060
18054
|
}
|
|
@@ -18075,16 +18069,18 @@ html:not(#__):not(#___) .cadmin .treeview .component-action[aria-expanded=true],
|
|
|
18075
18069
|
background-color: transparent;
|
|
18076
18070
|
}
|
|
18077
18071
|
html:not(#__):not(#___) .cadmin .treeview .component-icon {
|
|
18078
|
-
display: inline;
|
|
18072
|
+
display: inline-block;
|
|
18073
|
+
font-size: 16px;
|
|
18079
18074
|
height: auto;
|
|
18080
|
-
margin
|
|
18081
|
-
margin-right: 4px;
|
|
18075
|
+
margin: 4px;
|
|
18082
18076
|
width: auto;
|
|
18083
18077
|
}
|
|
18078
|
+
html:not(#__):not(#___) .cadmin .treeview .component-icon .lexicon-icon {
|
|
18079
|
+
display: block;
|
|
18080
|
+
}
|
|
18084
18081
|
html:not(#__):not(#___) .cadmin .treeview .component-text {
|
|
18085
|
-
|
|
18082
|
+
line-height: 24px;
|
|
18086
18083
|
padding-left: 4px;
|
|
18087
|
-
padding-top: 1.5px;
|
|
18088
18084
|
-ms-user-select: auto;
|
|
18089
18085
|
-moz-user-select: auto;
|
|
18090
18086
|
-webkit-user-select: auto;
|
|
@@ -18112,6 +18108,23 @@ html:not(#__):not(#___) .cadmin .treeview.show-component-expander-on-hover .comp
|
|
|
18112
18108
|
transition: none;
|
|
18113
18109
|
}
|
|
18114
18110
|
}
|
|
18111
|
+
html:not(#__):not(#___) .cadmin .treeview .quick-action-item {
|
|
18112
|
+
margin: 0 2px;
|
|
18113
|
+
min-height: 0;
|
|
18114
|
+
min-width: 0;
|
|
18115
|
+
}
|
|
18116
|
+
html:not(#__):not(#___) .cadmin .treeview .autofit-row {
|
|
18117
|
+
align-items: center;
|
|
18118
|
+
}
|
|
18119
|
+
html:not(#__):not(#___) .cadmin .treeview.show-quick-actions-on-hover .treeview-link:not(:hover):not(:focus):not(.focus) .quick-action-item {
|
|
18120
|
+
display: none;
|
|
18121
|
+
}
|
|
18122
|
+
html:not(#__):not(#___) .cadmin .treeview.show-quick-actions-on-hover .treeview-link:disabled .quick-action-item, html:not(#__):not(#___) .cadmin .treeview.show-quick-actions-on-hover .treeview-link.disabled .quick-action-item {
|
|
18123
|
+
display: none;
|
|
18124
|
+
}
|
|
18125
|
+
html:not(#__):not(#___) .cadmin .treeview.show-quick-actions-on-hover .treeview-link .quick-action-item:disabled, html:not(#__):not(#___) .cadmin .treeview.show-quick-actions-on-hover .treeview-link .quick-action-item.disabled {
|
|
18126
|
+
display: none;
|
|
18127
|
+
}
|
|
18115
18128
|
html:not(#__):not(#___) .cadmin .treeview-group {
|
|
18116
18129
|
display: flex;
|
|
18117
18130
|
flex-direction: column;
|
|
@@ -18161,12 +18174,6 @@ html:not(#__):not(#___) .cadmin .treeview-link.treeview-dropping-middle {
|
|
|
18161
18174
|
html:not(#__):not(#___) .cadmin .treeview-link.treeview-dropping-top {
|
|
18162
18175
|
box-shadow: 0 -2px 0 0 #80acff;
|
|
18163
18176
|
}
|
|
18164
|
-
html:not(#__):not(#___) .cadmin .treeview-link.hover .component-action, html:not(#__):not(#___) .cadmin .treeview-link:hover .component-action, html:not(#__):not(#___) .cadmin .treeview-link.focus .component-action, html:not(#__):not(#___) .cadmin .treeview-link:focus .component-action {
|
|
18165
|
-
display: flex;
|
|
18166
|
-
}
|
|
18167
|
-
html:not(#__):not(#___) .cadmin .treeview-link:disabled .component-action, html:not(#__):not(#___) .cadmin .treeview-link.disabled .component-action {
|
|
18168
|
-
display: none;
|
|
18169
|
-
}
|
|
18170
18177
|
html:not(#__):not(#___) .cadmin .treeview-link.show .component-expander .component-expanded-d-none, html:not(#__):not(#___) .cadmin .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
|
|
18171
18178
|
display: none;
|
|
18172
18179
|
}
|