@clayui/css 3.57.0 → 3.59.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/css/atlas.css +219 -225
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +205 -211
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +224 -225
- package/lib/css/cadmin.css.map +1 -1
- 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/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/_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 +19 -5
- package/src/scss/components/_tables.scss +8 -498
- package/src/scss/components/_treeview.scss +60 -16
- package/src/scss/functions/_lx-icons-generated.scss +4 -0
- package/src/scss/mixins/_tables.scss +333 -0
- package/src/scss/variables/_tables.scss +423 -61
- package/src/scss/variables/_treeview.scss +19 -4
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.59.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>
|
|
@@ -17658,13 +17658,23 @@ caption {
|
|
|
17658
17658
|
.table thead {
|
|
17659
17659
|
background-color: #fff;
|
|
17660
17660
|
}
|
|
17661
|
-
.table thead
|
|
17662
|
-
.table thead
|
|
17661
|
+
.table thead th,
|
|
17662
|
+
.table thead td {
|
|
17663
17663
|
background-color: #fff;
|
|
17664
17664
|
border-bottom: calc(2 * 0.0625rem) solid #dee2e6;
|
|
17665
17665
|
border-top-width: 0px;
|
|
17666
17666
|
vertical-align: bottom;
|
|
17667
17667
|
}
|
|
17668
|
+
.table th:first-child,
|
|
17669
|
+
.table td:first-child,
|
|
17670
|
+
.table .table-column-start {
|
|
17671
|
+
padding-left: 15px;
|
|
17672
|
+
}
|
|
17673
|
+
.table th:last-child,
|
|
17674
|
+
.table td:last-child,
|
|
17675
|
+
.table .table-column-end {
|
|
17676
|
+
padding-right: 15px;
|
|
17677
|
+
}
|
|
17668
17678
|
.table th {
|
|
17669
17679
|
background-clip: padding-box;
|
|
17670
17680
|
border-top: 0.0625rem solid #dee2e6;
|
|
@@ -17677,25 +17687,15 @@ caption {
|
|
|
17677
17687
|
.table td {
|
|
17678
17688
|
background-clip: padding-box;
|
|
17679
17689
|
border-bottom-width: 0.0625rem;
|
|
17690
|
+
border-color: #dee2e6;
|
|
17680
17691
|
border-left-width: 0px;
|
|
17681
17692
|
border-right-width: 0px;
|
|
17682
|
-
border-top-width: 0.0625rem;
|
|
17683
|
-
border-color: #dee2e6;
|
|
17684
17693
|
border-style: solid;
|
|
17694
|
+
border-top-width: 0.0625rem;
|
|
17685
17695
|
padding: 0.75rem;
|
|
17686
17696
|
position: relative;
|
|
17687
17697
|
vertical-align: middle;
|
|
17688
17698
|
}
|
|
17689
|
-
.table td:first-child,
|
|
17690
|
-
.table th:first-child,
|
|
17691
|
-
.table .table-cell-start {
|
|
17692
|
-
padding-left: 15px;
|
|
17693
|
-
}
|
|
17694
|
-
.table td:last-child,
|
|
17695
|
-
.table th:last-child,
|
|
17696
|
-
.table .table-cell-end {
|
|
17697
|
-
padding-right: 15px;
|
|
17698
|
-
}
|
|
17699
17699
|
.table tbody + tbody {
|
|
17700
17700
|
border-top: calc(2 * 0.0625rem) solid #dee2e6;
|
|
17701
17701
|
}
|
|
@@ -17704,6 +17704,40 @@ caption {
|
|
|
17704
17704
|
padding-left: 0.75rem;
|
|
17705
17705
|
padding-right: 0.75rem;
|
|
17706
17706
|
}
|
|
17707
|
+
.table .table-divider th,
|
|
17708
|
+
.table .table-divider td {
|
|
17709
|
+
background-color: #fff;
|
|
17710
|
+
padding: 0.75rem;
|
|
17711
|
+
}
|
|
17712
|
+
.table .table-active {
|
|
17713
|
+
background-color: #ececec;
|
|
17714
|
+
}
|
|
17715
|
+
.table .table-active th,
|
|
17716
|
+
.table .table-active td {
|
|
17717
|
+
background-color: #ececec;
|
|
17718
|
+
}
|
|
17719
|
+
.table .table-active .quick-action-menu {
|
|
17720
|
+
background-color: #ececec;
|
|
17721
|
+
}
|
|
17722
|
+
.table .table-disabled {
|
|
17723
|
+
color: #acacac;
|
|
17724
|
+
}
|
|
17725
|
+
.table .table-disabled th,
|
|
17726
|
+
.table .table-disabled td {
|
|
17727
|
+
background-color: #fff;
|
|
17728
|
+
cursor: not-allowed;
|
|
17729
|
+
}
|
|
17730
|
+
.table .table-disabled th [href],
|
|
17731
|
+
.table .table-disabled td [href] {
|
|
17732
|
+
color: #acacac;
|
|
17733
|
+
pointer-events: none;
|
|
17734
|
+
}
|
|
17735
|
+
.table .table-disabled .table-title {
|
|
17736
|
+
color: #acacac;
|
|
17737
|
+
}
|
|
17738
|
+
.table .table-disabled .table-list-title {
|
|
17739
|
+
color: #acacac;
|
|
17740
|
+
}
|
|
17707
17741
|
.table .autofit-col {
|
|
17708
17742
|
justify-content: center;
|
|
17709
17743
|
padding-left: 0.75rem;
|
|
@@ -17719,6 +17753,11 @@ caption {
|
|
|
17719
17753
|
.table .form-check {
|
|
17720
17754
|
margin-bottom: 0;
|
|
17721
17755
|
}
|
|
17756
|
+
.table .quick-action-menu {
|
|
17757
|
+
align-items: flex-start;
|
|
17758
|
+
padding-bottom: 0.75rem;
|
|
17759
|
+
padding-top: 0.75rem;
|
|
17760
|
+
}
|
|
17722
17761
|
|
|
17723
17762
|
.table-caption-bottom caption {
|
|
17724
17763
|
caption-side: bottom;
|
|
@@ -17728,20 +17767,17 @@ caption {
|
|
|
17728
17767
|
.table-sm td {
|
|
17729
17768
|
padding: 0.3rem;
|
|
17730
17769
|
}
|
|
17731
|
-
|
|
17732
17770
|
.table-bordered {
|
|
17733
17771
|
border: 0.0625rem solid #dee2e6;
|
|
17734
17772
|
}
|
|
17735
|
-
.table-bordered thead
|
|
17736
|
-
.table-bordered thead
|
|
17773
|
+
.table-bordered thead th,
|
|
17774
|
+
.table-bordered thead td {
|
|
17737
17775
|
border-bottom-width: calc(2 * 0.0625rem);
|
|
17738
17776
|
}
|
|
17739
|
-
.table-bordered
|
|
17740
|
-
.table-bordered
|
|
17777
|
+
.table-bordered th,
|
|
17778
|
+
.table-bordered td {
|
|
17741
17779
|
border: 0.0625rem solid #dee2e6;
|
|
17742
|
-
border-width: 0.0625rem;
|
|
17743
17780
|
}
|
|
17744
|
-
|
|
17745
17781
|
.table-borderless th,
|
|
17746
17782
|
.table-borderless td,
|
|
17747
17783
|
.table-borderless thead th,
|
|
@@ -17754,13 +17790,28 @@ caption {
|
|
|
17754
17790
|
background-color: #f2f2f2;
|
|
17755
17791
|
}
|
|
17756
17792
|
|
|
17757
|
-
.table-hover tbody tr:hover
|
|
17758
|
-
|
|
17759
|
-
.table-hover tbody tr:hover th {
|
|
17793
|
+
.table-hover tbody tr:hover {
|
|
17794
|
+
background-color: #ececec;
|
|
17760
17795
|
color: #212529;
|
|
17796
|
+
}
|
|
17797
|
+
.table-hover tbody tr:hover th,
|
|
17798
|
+
.table-hover tbody tr:hover td {
|
|
17761
17799
|
background-color: #ececec;
|
|
17800
|
+
color: #212529;
|
|
17801
|
+
}
|
|
17802
|
+
.table-hover tbody tr:hover .quick-action-menu {
|
|
17803
|
+
background-color: #ececec;
|
|
17804
|
+
}
|
|
17805
|
+
.table-hover .table-active:hover .quick-action-menu {
|
|
17806
|
+
background-color: #ececec;
|
|
17807
|
+
}
|
|
17808
|
+
.table-hover .table-disabled:hover {
|
|
17809
|
+
background-color: #fff;
|
|
17810
|
+
}
|
|
17811
|
+
.table-hover .table-disabled:hover th,
|
|
17812
|
+
.table-hover .table-disabled:hover td {
|
|
17813
|
+
background-color: #fff;
|
|
17762
17814
|
}
|
|
17763
|
-
|
|
17764
17815
|
.table-primary,
|
|
17765
17816
|
.table-primary > th,
|
|
17766
17817
|
.table-primary > td {
|
|
@@ -17929,44 +17980,6 @@ caption {
|
|
|
17929
17980
|
background-color: #b9bbbe;
|
|
17930
17981
|
}
|
|
17931
17982
|
|
|
17932
|
-
.table-active,
|
|
17933
|
-
.table-active > th,
|
|
17934
|
-
.table-active > td {
|
|
17935
|
-
background-color: #ececec;
|
|
17936
|
-
}
|
|
17937
|
-
|
|
17938
|
-
.table-hover .table-active:hover {
|
|
17939
|
-
background-color: #dfdfdf;
|
|
17940
|
-
}
|
|
17941
|
-
.table-hover .table-active:hover > td,
|
|
17942
|
-
.table-hover .table-active:hover > th {
|
|
17943
|
-
background-color: #dfdfdf;
|
|
17944
|
-
}
|
|
17945
|
-
|
|
17946
|
-
.table-disabled {
|
|
17947
|
-
color: #acacac;
|
|
17948
|
-
}
|
|
17949
|
-
.table-disabled > td,
|
|
17950
|
-
.table-disabled > th {
|
|
17951
|
-
background-color: #fff;
|
|
17952
|
-
cursor: not-allowed;
|
|
17953
|
-
}
|
|
17954
|
-
.table-disabled > td a,
|
|
17955
|
-
.table-disabled > th a {
|
|
17956
|
-
color: #acacac;
|
|
17957
|
-
pointer-events: none;
|
|
17958
|
-
}
|
|
17959
|
-
.table-disabled .table-title,
|
|
17960
|
-
.table-disabled .table-list-title {
|
|
17961
|
-
color: #acacac;
|
|
17962
|
-
}
|
|
17963
|
-
|
|
17964
|
-
.table-hover .table-disabled:hover,
|
|
17965
|
-
.table-hover .table-disabled:hover > td,
|
|
17966
|
-
.table-hover .table-disabled:hover > th {
|
|
17967
|
-
background-color: #fff;
|
|
17968
|
-
}
|
|
17969
|
-
|
|
17970
17983
|
.table-striped tbody .table-disabled:nth-of-type(odd) td,
|
|
17971
17984
|
.table-striped tbody .table-disabled:nth-of-type(odd) th {
|
|
17972
17985
|
background-color: #fff;
|
|
@@ -18094,11 +18107,27 @@ caption {
|
|
|
18094
18107
|
.table-list {
|
|
18095
18108
|
border-collapse: separate;
|
|
18096
18109
|
border-color: #dee2e6;
|
|
18110
|
+
border-radius: 0.25rem;
|
|
18097
18111
|
border-style: solid;
|
|
18098
18112
|
border-width: 0.0625rem 0.0625rem;
|
|
18099
|
-
border-radius: 0.25rem;
|
|
18100
18113
|
margin-bottom: 0.0625rem;
|
|
18101
18114
|
}
|
|
18115
|
+
.table-list thead {
|
|
18116
|
+
background-color: #fff;
|
|
18117
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
18118
|
+
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
18119
|
+
}
|
|
18120
|
+
.table-list thead th,
|
|
18121
|
+
.table-list thead td {
|
|
18122
|
+
background-color: #fff;
|
|
18123
|
+
border-bottom-width: 0;
|
|
18124
|
+
}
|
|
18125
|
+
.table-list th,
|
|
18126
|
+
.table-list td {
|
|
18127
|
+
border-color: #dee2e6;
|
|
18128
|
+
border-style: solid;
|
|
18129
|
+
border-width: 0.0625rem 0 0 0;
|
|
18130
|
+
}
|
|
18102
18131
|
.table-list thead:first-child tr:first-child th,
|
|
18103
18132
|
.table-list thead:first-child tr:first-child td,
|
|
18104
18133
|
.table-list tbody:first-child tr:first-child th,
|
|
@@ -18111,165 +18140,162 @@ caption {
|
|
|
18111
18140
|
}
|
|
18112
18141
|
.table-list thead:first-child tr:first-child th:first-child,
|
|
18113
18142
|
.table-list thead:first-child tr:first-child td:first-child,
|
|
18114
|
-
.table-list thead:first-child tr:first-child .table-cell-start,
|
|
18115
18143
|
.table-list tbody:first-child tr:first-child th:first-child,
|
|
18116
18144
|
.table-list tbody:first-child tr:first-child td:first-child,
|
|
18117
|
-
.table-list tbody:first-child tr:first-child .table-cell-start,
|
|
18118
18145
|
.table-list tfoot:first-child tr:first-child th:first-child,
|
|
18119
18146
|
.table-list tfoot:first-child tr:first-child td:first-child,
|
|
18120
|
-
.table-list tfoot:first-child tr:first-child .table-cell-start,
|
|
18121
18147
|
.table-list caption:first-child + thead tr:first-child th:first-child,
|
|
18122
|
-
.table-list caption:first-child + thead tr:first-child td:first-child
|
|
18123
|
-
.table-list caption:first-child + thead tr:first-child .table-cell-start {
|
|
18148
|
+
.table-list caption:first-child + thead tr:first-child td:first-child {
|
|
18124
18149
|
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
18125
18150
|
}
|
|
18126
18151
|
.table-list thead:first-child tr:first-child th:last-child,
|
|
18127
18152
|
.table-list thead:first-child tr:first-child td:last-child,
|
|
18128
|
-
.table-list thead:first-child tr:first-child .table-cell-end,
|
|
18129
18153
|
.table-list tbody:first-child tr:first-child th:last-child,
|
|
18130
18154
|
.table-list tbody:first-child tr:first-child td:last-child,
|
|
18131
|
-
.table-list tbody:first-child tr:first-child .table-cell-end,
|
|
18132
18155
|
.table-list tfoot:first-child tr:first-child th:last-child,
|
|
18133
18156
|
.table-list tfoot:first-child tr:first-child td:last-child,
|
|
18134
|
-
.table-list tfoot:first-child tr:first-child .table-cell-end,
|
|
18135
18157
|
.table-list caption:first-child + thead tr:first-child th:last-child,
|
|
18136
|
-
.table-list caption:first-child + thead tr:first-child td:last-child
|
|
18137
|
-
.table-list caption:first-child + thead tr:first-child .table-cell-end {
|
|
18158
|
+
.table-list caption:first-child + thead tr:first-child td:last-child {
|
|
18138
18159
|
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
18139
18160
|
}
|
|
18140
|
-
.table-list
|
|
18141
|
-
.
|
|
18142
|
-
|
|
18143
|
-
.table-list
|
|
18144
|
-
.
|
|
18145
|
-
.table-list tfoot th {
|
|
18146
|
-
border-color: #dee2e6;
|
|
18147
|
-
border-style: solid;
|
|
18148
|
-
border-width: 0.0625rem 0 0 0;
|
|
18161
|
+
.table-list .table-row-start .table-cell-start {
|
|
18162
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
18163
|
+
}
|
|
18164
|
+
.table-list .table-row-start .table-cell-end {
|
|
18165
|
+
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
18149
18166
|
}
|
|
18150
18167
|
.table-list thead:last-child tr:last-child th:first-child,
|
|
18151
18168
|
.table-list thead:last-child tr:last-child td:first-child,
|
|
18152
|
-
.table-list thead:last-child tr:last-child .table-cell-start,
|
|
18153
18169
|
.table-list tbody:last-child tr:last-child th:first-child,
|
|
18154
18170
|
.table-list tbody:last-child tr:last-child td:first-child,
|
|
18155
|
-
.table-list tbody:last-child tr:last-child .table-cell-start,
|
|
18156
18171
|
.table-list tfoot:last-child tr:last-child th:first-child,
|
|
18157
|
-
.table-list tfoot:last-child tr:last-child td:first-child
|
|
18158
|
-
.table-list tfoot:last-child tr:last-child .table-cell-start {
|
|
18172
|
+
.table-list tfoot:last-child tr:last-child td:first-child {
|
|
18159
18173
|
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
18160
18174
|
}
|
|
18161
18175
|
.table-list thead:last-child tr:last-child th:last-child,
|
|
18162
18176
|
.table-list thead:last-child tr:last-child td:last-child,
|
|
18163
|
-
.table-list thead:last-child tr:last-child .table-cell-end,
|
|
18164
18177
|
.table-list tbody:last-child tr:last-child th:last-child,
|
|
18165
18178
|
.table-list tbody:last-child tr:last-child td:last-child,
|
|
18166
|
-
.table-list tbody:last-child tr:last-child .table-cell-end,
|
|
18167
18179
|
.table-list tfoot:last-child tr:last-child th:last-child,
|
|
18168
|
-
.table-list tfoot:last-child tr:last-child td:last-child
|
|
18169
|
-
.table-list tfoot:last-child tr:last-child .table-cell-end {
|
|
18180
|
+
.table-list tfoot:last-child tr:last-child td:last-child {
|
|
18170
18181
|
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
18171
18182
|
}
|
|
18172
|
-
.table-list
|
|
18173
|
-
|
|
18174
|
-
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
18175
|
-
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
18183
|
+
.table-list .table-row-end .table-cell-start {
|
|
18184
|
+
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
18176
18185
|
}
|
|
18177
|
-
.table-list
|
|
18178
|
-
|
|
18179
|
-
background-color: #fff;
|
|
18186
|
+
.table-list .table-row-end .table-cell-end {
|
|
18187
|
+
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
18180
18188
|
}
|
|
18181
18189
|
.table-list tbody {
|
|
18182
18190
|
background-color: #fff;
|
|
18183
18191
|
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
18184
18192
|
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
18185
18193
|
}
|
|
18186
|
-
.table-list tbody
|
|
18187
|
-
.table-list tbody
|
|
18194
|
+
.table-list tbody th,
|
|
18195
|
+
.table-list tbody td {
|
|
18188
18196
|
background-color: #fff;
|
|
18189
18197
|
vertical-align: middle;
|
|
18190
18198
|
}
|
|
18191
18199
|
.table-list tfoot {
|
|
18192
18200
|
background-color: #fff;
|
|
18193
18201
|
}
|
|
18194
|
-
.table-list tfoot
|
|
18195
|
-
.table-list tfoot
|
|
18202
|
+
.table-list tfoot th,
|
|
18203
|
+
.table-list tfoot td {
|
|
18196
18204
|
background-color: #fff;
|
|
18197
18205
|
vertical-align: middle;
|
|
18198
18206
|
}
|
|
18199
|
-
.table-list .table-
|
|
18200
|
-
|
|
18207
|
+
.table-list .table-divider th,
|
|
18208
|
+
.table-list .table-divider td {
|
|
18209
|
+
padding-bottom: 0.75rem;
|
|
18210
|
+
padding-left: 0.75rem;
|
|
18211
|
+
padding-right: 0.75rem;
|
|
18212
|
+
padding-top: 0.75rem;
|
|
18201
18213
|
}
|
|
18202
|
-
.table-list .table-
|
|
18203
|
-
|
|
18214
|
+
.table-list .table-active {
|
|
18215
|
+
background-color: #dadada;
|
|
18204
18216
|
}
|
|
18205
|
-
.table-list .table-
|
|
18206
|
-
|
|
18217
|
+
.table-list .table-active th,
|
|
18218
|
+
.table-list .table-active td {
|
|
18219
|
+
background-color: #dadada;
|
|
18207
18220
|
}
|
|
18208
|
-
.table-list .table-
|
|
18209
|
-
|
|
18221
|
+
.table-list .table-active .quick-action-menu {
|
|
18222
|
+
background-color: #dadada;
|
|
18223
|
+
}
|
|
18224
|
+
.table-list .table-disabled {
|
|
18225
|
+
background-color: #fff;
|
|
18226
|
+
color: #acacac;
|
|
18227
|
+
}
|
|
18228
|
+
.table-list .table-disabled th,
|
|
18229
|
+
.table-list .table-disabled td {
|
|
18230
|
+
background-color: #fff;
|
|
18231
|
+
color: #acacac;
|
|
18232
|
+
}
|
|
18233
|
+
.table-list .table-disabled th [href],
|
|
18234
|
+
.table-list .table-disabled td [href] {
|
|
18235
|
+
color: #acacac;
|
|
18236
|
+
pointer-events: none;
|
|
18237
|
+
}
|
|
18238
|
+
.table-list .table-disabled .table-title {
|
|
18239
|
+
color: #acacac;
|
|
18240
|
+
}
|
|
18241
|
+
.table-list .table-disabled .table-list-title {
|
|
18242
|
+
color: #acacac;
|
|
18243
|
+
}
|
|
18244
|
+
.table-list .quick-action-menu {
|
|
18245
|
+
align-items: center;
|
|
18246
|
+
background-color: #fff;
|
|
18247
|
+
bottom: 0;
|
|
18248
|
+
top: 0;
|
|
18210
18249
|
}
|
|
18211
18250
|
|
|
18212
|
-
.table-list.table-bordered thead th,
|
|
18213
|
-
.table-list.table-bordered thead td
|
|
18214
|
-
|
|
18215
|
-
|
|
18216
|
-
.table-list.table-bordered
|
|
18217
|
-
.table-list.table-bordered
|
|
18251
|
+
.table.table-list.table-bordered thead th,
|
|
18252
|
+
.table.table-list.table-bordered thead td {
|
|
18253
|
+
border-bottom-width: 0;
|
|
18254
|
+
}
|
|
18255
|
+
.table.table-list.table-bordered th,
|
|
18256
|
+
.table.table-list.table-bordered td {
|
|
18218
18257
|
border-left-width: 0.0625rem;
|
|
18219
18258
|
}
|
|
18220
|
-
.table-list.table-bordered th:first-child,
|
|
18221
|
-
.table-list.table-bordered td:first-child
|
|
18259
|
+
.table.table-list.table-bordered th:first-child,
|
|
18260
|
+
.table.table-list.table-bordered td:first-child,
|
|
18261
|
+
.table.table-list.table-bordered .table-column-start {
|
|
18222
18262
|
border-left-width: 0;
|
|
18223
18263
|
}
|
|
18224
|
-
|
|
18225
18264
|
.table-list.table-striped tbody tr:nth-of-type(odd) td,
|
|
18226
18265
|
.table-list.table-striped tbody tr:nth-of-type(odd) th {
|
|
18227
18266
|
background-color: #f2f2f2;
|
|
18228
18267
|
}
|
|
18229
18268
|
|
|
18230
|
-
.table-list.table-hover tbody tr:hover
|
|
18231
|
-
.table-list.table-hover tbody tr:hover td,
|
|
18232
|
-
.table-list.table-hover tbody tr:hover th {
|
|
18269
|
+
.table-list.table-hover tbody tr:hover {
|
|
18233
18270
|
background-color: #ececec;
|
|
18234
18271
|
}
|
|
18235
|
-
|
|
18236
|
-
.table-list.table-hover
|
|
18237
|
-
|
|
18238
|
-
|
|
18272
|
+
.table-list.table-hover tbody tr:hover th,
|
|
18273
|
+
.table-list.table-hover tbody tr:hover td {
|
|
18274
|
+
background-color: #ececec;
|
|
18275
|
+
}
|
|
18276
|
+
.table-list.table-hover tbody tr:hover .quick-action-menu {
|
|
18277
|
+
background-color: #ececec;
|
|
18278
|
+
}
|
|
18279
|
+
.table-list.table-hover .table-active:hover {
|
|
18239
18280
|
background-color: #dadada;
|
|
18240
18281
|
}
|
|
18241
|
-
|
|
18242
|
-
.table-list .table-active
|
|
18243
|
-
.table-list .table-active > th,
|
|
18244
|
-
.table-list .table-active > td {
|
|
18282
|
+
.table-list.table-hover .table-active:hover th,
|
|
18283
|
+
.table-list.table-hover .table-active:hover td {
|
|
18245
18284
|
background-color: #dadada;
|
|
18246
18285
|
}
|
|
18247
|
-
|
|
18248
|
-
|
|
18249
|
-
background-color: #fff;
|
|
18250
|
-
color: #acacac;
|
|
18286
|
+
.table-list.table-hover .table-active:hover .quick-action-menu {
|
|
18287
|
+
background-color: #ececec;
|
|
18251
18288
|
}
|
|
18252
|
-
.table-list .table-disabled
|
|
18253
|
-
.table-list .table-disabled > th {
|
|
18289
|
+
.table-list.table-hover .table-disabled {
|
|
18254
18290
|
background-color: #fff;
|
|
18255
|
-
cursor: not-allowed;
|
|
18256
18291
|
}
|
|
18257
|
-
.table-list .table-disabled
|
|
18258
|
-
|
|
18259
|
-
color: #acacac;
|
|
18260
|
-
pointer-events: none;
|
|
18261
|
-
}
|
|
18262
|
-
.table-list .table-disabled .table-title,
|
|
18263
|
-
.table-list .table-disabled .table-list-title {
|
|
18264
|
-
color: #acacac;
|
|
18292
|
+
.table-list.table-hover .table-disabled:hover {
|
|
18293
|
+
background-color: #fff;
|
|
18265
18294
|
}
|
|
18266
|
-
|
|
18267
|
-
.table-list.table-hover .table-disabled:hover
|
|
18268
|
-
.table-list.table-hover .table-disabled:hover > td,
|
|
18269
|
-
.table-list.table-hover .table-disabled:hover > th {
|
|
18295
|
+
.table-list.table-hover .table-disabled:hover th,
|
|
18296
|
+
.table-list.table-hover .table-disabled:hover td {
|
|
18270
18297
|
background-color: #fff;
|
|
18271
18298
|
}
|
|
18272
|
-
|
|
18273
18299
|
.table-list.table-striped tbody .table-disabled:nth-of-type(odd),
|
|
18274
18300
|
.table-list.table-striped tbody .table-disabled:nth-of-type(odd) td,
|
|
18275
18301
|
.table-list.table-striped tbody .table-disabled:nth-of-type(odd) th {
|
|
@@ -18321,20 +18347,6 @@ caption {
|
|
|
18321
18347
|
white-space: nowrap;
|
|
18322
18348
|
}
|
|
18323
18349
|
|
|
18324
|
-
.table .table-divider td,
|
|
18325
|
-
.table .table-divider th {
|
|
18326
|
-
background-color: #fff;
|
|
18327
|
-
padding: 0.75rem;
|
|
18328
|
-
}
|
|
18329
|
-
|
|
18330
|
-
.table-list .table-divider td,
|
|
18331
|
-
.table-list .table-divider th {
|
|
18332
|
-
padding-bottom: 0.75rem;
|
|
18333
|
-
padding-left: 0.75rem;
|
|
18334
|
-
padding-right: 0.75rem;
|
|
18335
|
-
padding-top: 0.75rem;
|
|
18336
|
-
}
|
|
18337
|
-
|
|
18338
18350
|
.table-valign-bottom tbody td,
|
|
18339
18351
|
.table-valign-bottom tbody th,
|
|
18340
18352
|
.table-valign-bottom tfoot td,
|
|
@@ -18420,12 +18432,6 @@ caption {
|
|
|
18420
18432
|
display: flex;
|
|
18421
18433
|
}
|
|
18422
18434
|
|
|
18423
|
-
.table .quick-action-menu {
|
|
18424
|
-
align-items: flex-start;
|
|
18425
|
-
padding-bottom: 0.75rem;
|
|
18426
|
-
padding-top: 0.75rem;
|
|
18427
|
-
}
|
|
18428
|
-
|
|
18429
18435
|
.table-striped tbody tr:nth-of-type(odd) .quick-action-menu {
|
|
18430
18436
|
background-color: #f2f2f2;
|
|
18431
18437
|
}
|
|
@@ -18433,24 +18439,6 @@ caption {
|
|
|
18433
18439
|
background-color: #f2f2f2;
|
|
18434
18440
|
}
|
|
18435
18441
|
|
|
18436
|
-
.table-hover tbody tr:hover .quick-action-menu {
|
|
18437
|
-
background-color: #ececec;
|
|
18438
|
-
}
|
|
18439
|
-
.table-hover tbody .table-active:hover .quick-action-menu {
|
|
18440
|
-
background-color: #ececec;
|
|
18441
|
-
}
|
|
18442
|
-
|
|
18443
|
-
.table-active .quick-action-menu {
|
|
18444
|
-
background-color: #ececec;
|
|
18445
|
-
}
|
|
18446
|
-
|
|
18447
|
-
.table-list .quick-action-menu {
|
|
18448
|
-
align-items: center;
|
|
18449
|
-
background-color: #fff;
|
|
18450
|
-
bottom: 0;
|
|
18451
|
-
top: 0;
|
|
18452
|
-
}
|
|
18453
|
-
|
|
18454
18442
|
.table-list.table-striped tbody tr:nth-of-type(odd) .quick-action-menu {
|
|
18455
18443
|
background-color: #f2f2f2;
|
|
18456
18444
|
}
|
|
@@ -18458,17 +18446,6 @@ caption {
|
|
|
18458
18446
|
background-color: #dadada;
|
|
18459
18447
|
}
|
|
18460
18448
|
|
|
18461
|
-
.table-list.table-hover tbody tr:hover .quick-action-menu {
|
|
18462
|
-
background-color: #ececec;
|
|
18463
|
-
}
|
|
18464
|
-
.table-list.table-hover tbody .table-active:hover .quick-action-menu {
|
|
18465
|
-
background-color: #dadada;
|
|
18466
|
-
}
|
|
18467
|
-
|
|
18468
|
-
.table-list .table-active .quick-action-menu {
|
|
18469
|
-
background-color: #dadada;
|
|
18470
|
-
}
|
|
18471
|
-
|
|
18472
18449
|
.table-column-text-start,
|
|
18473
18450
|
.table-cell-text-start {
|
|
18474
18451
|
text-align: left;
|
|
@@ -19962,9 +19939,18 @@ caption {
|
|
|
19962
19939
|
margin-bottom: 0;
|
|
19963
19940
|
padding: 2px 0;
|
|
19964
19941
|
}
|
|
19942
|
+
.treeview .btn {
|
|
19943
|
+
font-size: 12px;
|
|
19944
|
+
line-height: 1;
|
|
19945
|
+
padding: 6px 8px;
|
|
19946
|
+
}
|
|
19947
|
+
.treeview .btn .c-inner {
|
|
19948
|
+
margin: -7px -8px;
|
|
19949
|
+
}
|
|
19965
19950
|
.treeview .btn-monospaced {
|
|
19966
19951
|
font-size: inherit;
|
|
19967
19952
|
height: 24px;
|
|
19953
|
+
padding: 0;
|
|
19968
19954
|
width: 24px;
|
|
19969
19955
|
}
|
|
19970
19956
|
.treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
|
|
@@ -19985,7 +19971,6 @@ caption {
|
|
|
19985
19971
|
display: none;
|
|
19986
19972
|
}
|
|
19987
19973
|
.treeview .component-action {
|
|
19988
|
-
display: none;
|
|
19989
19974
|
font-size: 16px;
|
|
19990
19975
|
margin-left: 2px;
|
|
19991
19976
|
margin-right: 2px;
|
|
@@ -20010,7 +19995,7 @@ caption {
|
|
|
20010
19995
|
display: inline-block;
|
|
20011
19996
|
font-size: 16px;
|
|
20012
19997
|
height: auto;
|
|
20013
|
-
margin:
|
|
19998
|
+
margin: 4px;
|
|
20014
19999
|
vertical-align: middle;
|
|
20015
20000
|
width: auto;
|
|
20016
20001
|
}
|
|
@@ -20018,9 +20003,8 @@ caption {
|
|
|
20018
20003
|
display: block;
|
|
20019
20004
|
}
|
|
20020
20005
|
.treeview .component-text {
|
|
20021
|
-
|
|
20006
|
+
line-height: 24px;
|
|
20022
20007
|
padding-left: 4px;
|
|
20023
|
-
padding-top: 1.5px;
|
|
20024
20008
|
-ms-user-select: auto;
|
|
20025
20009
|
-moz-user-select: auto;
|
|
20026
20010
|
-webkit-user-select: auto;
|
|
@@ -20048,6 +20032,23 @@ caption {
|
|
|
20048
20032
|
transition: none;
|
|
20049
20033
|
}
|
|
20050
20034
|
}
|
|
20035
|
+
.treeview .quick-action-item {
|
|
20036
|
+
margin: 0 2px;
|
|
20037
|
+
min-height: 0;
|
|
20038
|
+
min-width: 0;
|
|
20039
|
+
}
|
|
20040
|
+
.treeview .autofit-row {
|
|
20041
|
+
align-items: center;
|
|
20042
|
+
}
|
|
20043
|
+
.treeview.show-quick-actions-on-hover .treeview-link:not(:hover):not(:focus):not(.focus) .quick-action-item {
|
|
20044
|
+
display: none;
|
|
20045
|
+
}
|
|
20046
|
+
.treeview.show-quick-actions-on-hover .treeview-link:disabled .quick-action-item, .treeview.show-quick-actions-on-hover .treeview-link.disabled .quick-action-item {
|
|
20047
|
+
display: none;
|
|
20048
|
+
}
|
|
20049
|
+
.treeview.show-quick-actions-on-hover .treeview-link .quick-action-item:disabled, .treeview.show-quick-actions-on-hover .treeview-link .quick-action-item.disabled {
|
|
20050
|
+
display: none;
|
|
20051
|
+
}
|
|
20051
20052
|
|
|
20052
20053
|
.treeview-group {
|
|
20053
20054
|
display: flex;
|
|
@@ -20099,19 +20100,12 @@ caption {
|
|
|
20099
20100
|
.treeview-link.treeview-dropping-top {
|
|
20100
20101
|
box-shadow: 0 -2px 0 0 #75b8ff;
|
|
20101
20102
|
}
|
|
20102
|
-
.treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
|
|
20103
|
-
display: flex;
|
|
20104
|
-
}
|
|
20105
|
-
.treeview-link:disabled .component-action, .treeview-link.disabled .component-action {
|
|
20106
|
-
display: none;
|
|
20107
|
-
}
|
|
20108
20103
|
.treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
|
|
20109
20104
|
display: none;
|
|
20110
20105
|
}
|
|
20111
20106
|
.treeview-link.show .component-expander .lexicon-icon:not(.component-expanded-d-none), .treeview-link[aria-expanded=true] .component-expander .lexicon-icon:not(.component-expanded-d-none) {
|
|
20112
20107
|
display: inline-block;
|
|
20113
20108
|
}
|
|
20114
|
-
|
|
20115
20109
|
.treeview-nested-margins .treeview-group .treeview-item {
|
|
20116
20110
|
margin-left: 24px;
|
|
20117
20111
|
}
|