@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/atlas.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>
|
|
@@ -18827,30 +18827,40 @@ caption {
|
|
|
18827
18827
|
.table thead {
|
|
18828
18828
|
background-color: #fff;
|
|
18829
18829
|
}
|
|
18830
|
-
.table thead
|
|
18831
|
-
.table thead
|
|
18830
|
+
.table thead th,
|
|
18831
|
+
.table thead td {
|
|
18832
18832
|
background-color: #fff;
|
|
18833
|
-
border-bottom:
|
|
18833
|
+
border-bottom: 0 solid #e7e7ed;
|
|
18834
18834
|
border-top-width: 0px;
|
|
18835
18835
|
vertical-align: bottom;
|
|
18836
18836
|
}
|
|
18837
|
-
.table thead th
|
|
18837
|
+
.table thead th [href] {
|
|
18838
18838
|
border-radius: 1px;
|
|
18839
18839
|
color: #6b6c7e;
|
|
18840
18840
|
transition: box-shadow 0.15s ease-in-out;
|
|
18841
18841
|
}
|
|
18842
18842
|
@media (prefers-reduced-motion: reduce) {
|
|
18843
|
-
.table thead th
|
|
18843
|
+
.table thead th [href] {
|
|
18844
18844
|
transition: none;
|
|
18845
18845
|
}
|
|
18846
18846
|
}
|
|
18847
|
-
.table thead th
|
|
18847
|
+
.table thead th [href]:hover {
|
|
18848
18848
|
color: #272833;
|
|
18849
18849
|
}
|
|
18850
|
-
.table thead th
|
|
18850
|
+
.table thead th [href]:focus {
|
|
18851
18851
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
18852
18852
|
outline: 0;
|
|
18853
18853
|
}
|
|
18854
|
+
.table th:first-child,
|
|
18855
|
+
.table td:first-child,
|
|
18856
|
+
.table .table-column-start {
|
|
18857
|
+
padding-left: 12px;
|
|
18858
|
+
}
|
|
18859
|
+
.table th:last-child,
|
|
18860
|
+
.table td:last-child,
|
|
18861
|
+
.table .table-column-end {
|
|
18862
|
+
padding-right: 12px;
|
|
18863
|
+
}
|
|
18854
18864
|
.table th {
|
|
18855
18865
|
background-clip: padding-box;
|
|
18856
18866
|
border-top: 0.0625rem solid #e7e7ed;
|
|
@@ -18864,30 +18874,20 @@ caption {
|
|
|
18864
18874
|
.table td {
|
|
18865
18875
|
background-clip: padding-box;
|
|
18866
18876
|
border-bottom-width: 0.0625rem;
|
|
18877
|
+
border-color: #e7e7ed;
|
|
18867
18878
|
border-left-width: 0px;
|
|
18868
18879
|
border-right-width: 0px;
|
|
18869
|
-
border-top-width: 0.0625rem;
|
|
18870
|
-
border-color: #e7e7ed;
|
|
18871
18880
|
border-style: solid;
|
|
18881
|
+
border-top-width: 0.0625rem;
|
|
18872
18882
|
padding: 0.75rem;
|
|
18873
18883
|
position: relative;
|
|
18874
18884
|
vertical-align: middle;
|
|
18875
18885
|
}
|
|
18876
|
-
.table td:first-child,
|
|
18877
|
-
.table th:first-child,
|
|
18878
|
-
.table .table-cell-start {
|
|
18879
|
-
padding-left: 12px;
|
|
18880
|
-
}
|
|
18881
|
-
.table td:last-child,
|
|
18882
|
-
.table th:last-child,
|
|
18883
|
-
.table .table-cell-end {
|
|
18884
|
-
padding-right: 12px;
|
|
18885
|
-
}
|
|
18886
18886
|
.table tbody {
|
|
18887
18887
|
background-color: #fff;
|
|
18888
18888
|
}
|
|
18889
|
-
.table tbody
|
|
18890
|
-
.table tbody
|
|
18889
|
+
.table tbody th,
|
|
18890
|
+
.table tbody td {
|
|
18891
18891
|
background-color: #fff;
|
|
18892
18892
|
}
|
|
18893
18893
|
.table tbody + tbody {
|
|
@@ -18896,8 +18896,8 @@ caption {
|
|
|
18896
18896
|
.table tfoot {
|
|
18897
18897
|
background-color: #fff;
|
|
18898
18898
|
}
|
|
18899
|
-
.table tfoot
|
|
18900
|
-
.table tfoot
|
|
18899
|
+
.table tfoot th,
|
|
18900
|
+
.table tfoot td {
|
|
18901
18901
|
background-color: #fff;
|
|
18902
18902
|
}
|
|
18903
18903
|
.table caption {
|
|
@@ -18905,6 +18905,44 @@ caption {
|
|
|
18905
18905
|
padding-left: 0.75rem;
|
|
18906
18906
|
padding-right: 0.75rem;
|
|
18907
18907
|
}
|
|
18908
|
+
.table .table-divider th,
|
|
18909
|
+
.table .table-divider td {
|
|
18910
|
+
background-color: #f7f8f9;
|
|
18911
|
+
color: #6b6c7e;
|
|
18912
|
+
font-size: 0.75rem;
|
|
18913
|
+
font-weight: 600;
|
|
18914
|
+
padding: 0.4375rem 0.75rem;
|
|
18915
|
+
text-transform: uppercase;
|
|
18916
|
+
}
|
|
18917
|
+
.table .table-active {
|
|
18918
|
+
background-color: #f0f5ff;
|
|
18919
|
+
}
|
|
18920
|
+
.table .table-active th,
|
|
18921
|
+
.table .table-active td {
|
|
18922
|
+
background-color: #f0f5ff;
|
|
18923
|
+
}
|
|
18924
|
+
.table .table-active .quick-action-menu {
|
|
18925
|
+
background-color: #f1f2f5;
|
|
18926
|
+
}
|
|
18927
|
+
.table .table-disabled {
|
|
18928
|
+
color: #a7a9bc;
|
|
18929
|
+
}
|
|
18930
|
+
.table .table-disabled th,
|
|
18931
|
+
.table .table-disabled td {
|
|
18932
|
+
background-color: #fff;
|
|
18933
|
+
cursor: not-allowed;
|
|
18934
|
+
}
|
|
18935
|
+
.table .table-disabled th [href],
|
|
18936
|
+
.table .table-disabled td [href] {
|
|
18937
|
+
color: #a7a9bc;
|
|
18938
|
+
pointer-events: none;
|
|
18939
|
+
}
|
|
18940
|
+
.table .table-disabled .table-title {
|
|
18941
|
+
color: #a7a9bc;
|
|
18942
|
+
}
|
|
18943
|
+
.table .table-disabled .table-list-title {
|
|
18944
|
+
color: #a7a9bc;
|
|
18945
|
+
}
|
|
18908
18946
|
.table .autofit-col {
|
|
18909
18947
|
justify-content: center;
|
|
18910
18948
|
padding-left: 0.75rem;
|
|
@@ -18920,6 +18958,12 @@ caption {
|
|
|
18920
18958
|
.table .form-check {
|
|
18921
18959
|
margin-bottom: 0;
|
|
18922
18960
|
}
|
|
18961
|
+
.table .quick-action-menu {
|
|
18962
|
+
align-items: flex-start;
|
|
18963
|
+
background-color: #fff;
|
|
18964
|
+
padding-bottom: 0.75rem;
|
|
18965
|
+
padding-top: 0.75rem;
|
|
18966
|
+
}
|
|
18923
18967
|
|
|
18924
18968
|
.table-caption-bottom caption {
|
|
18925
18969
|
caption-side: bottom;
|
|
@@ -18929,20 +18973,17 @@ caption {
|
|
|
18929
18973
|
.table-sm td {
|
|
18930
18974
|
padding: 0.3rem;
|
|
18931
18975
|
}
|
|
18932
|
-
|
|
18933
18976
|
.table-bordered {
|
|
18934
18977
|
border: 0.0625rem solid #e7e7ed;
|
|
18935
18978
|
}
|
|
18936
|
-
.table-bordered thead
|
|
18937
|
-
.table-bordered thead
|
|
18979
|
+
.table-bordered thead th,
|
|
18980
|
+
.table-bordered thead td {
|
|
18938
18981
|
border-bottom-width: calc(2 * 0.0625rem);
|
|
18939
18982
|
}
|
|
18940
|
-
.table-bordered
|
|
18941
|
-
.table-bordered
|
|
18983
|
+
.table-bordered th,
|
|
18984
|
+
.table-bordered td {
|
|
18942
18985
|
border: 0.0625rem solid #e7e7ed;
|
|
18943
|
-
border-width: 0.0625rem;
|
|
18944
18986
|
}
|
|
18945
|
-
|
|
18946
18987
|
.table-borderless th,
|
|
18947
18988
|
.table-borderless td,
|
|
18948
18989
|
.table-borderless thead th,
|
|
@@ -18955,13 +18996,28 @@ caption {
|
|
|
18955
18996
|
background-color: #f7f8f9;
|
|
18956
18997
|
}
|
|
18957
18998
|
|
|
18958
|
-
.table-hover tbody tr:hover
|
|
18959
|
-
|
|
18960
|
-
.table-hover tbody tr:hover th {
|
|
18999
|
+
.table-hover tbody tr:hover {
|
|
19000
|
+
background-color: #f0f5ff;
|
|
18961
19001
|
color: #272833;
|
|
19002
|
+
}
|
|
19003
|
+
.table-hover tbody tr:hover th,
|
|
19004
|
+
.table-hover tbody tr:hover td {
|
|
18962
19005
|
background-color: #f0f5ff;
|
|
19006
|
+
color: #272833;
|
|
19007
|
+
}
|
|
19008
|
+
.table-hover tbody tr:hover .quick-action-menu {
|
|
19009
|
+
background-color: #f0f5ff;
|
|
19010
|
+
}
|
|
19011
|
+
.table-hover .table-active:hover .quick-action-menu {
|
|
19012
|
+
background-color: #f1f2f5;
|
|
19013
|
+
}
|
|
19014
|
+
.table-hover .table-disabled:hover {
|
|
19015
|
+
background-color: #fff;
|
|
19016
|
+
}
|
|
19017
|
+
.table-hover .table-disabled:hover th,
|
|
19018
|
+
.table-hover .table-disabled:hover td {
|
|
19019
|
+
background-color: #fff;
|
|
18963
19020
|
}
|
|
18964
|
-
|
|
18965
19021
|
.table-primary,
|
|
18966
19022
|
.table-primary > th,
|
|
18967
19023
|
.table-primary > td {
|
|
@@ -19130,44 +19186,6 @@ caption {
|
|
|
19130
19186
|
background-color: #b6b6ba;
|
|
19131
19187
|
}
|
|
19132
19188
|
|
|
19133
|
-
.table-active,
|
|
19134
|
-
.table-active > th,
|
|
19135
|
-
.table-active > td {
|
|
19136
|
-
background-color: #f0f5ff;
|
|
19137
|
-
}
|
|
19138
|
-
|
|
19139
|
-
.table-hover .table-active:hover {
|
|
19140
|
-
background-color: #d6e4ff;
|
|
19141
|
-
}
|
|
19142
|
-
.table-hover .table-active:hover > td,
|
|
19143
|
-
.table-hover .table-active:hover > th {
|
|
19144
|
-
background-color: #d6e4ff;
|
|
19145
|
-
}
|
|
19146
|
-
|
|
19147
|
-
.table-disabled {
|
|
19148
|
-
color: #a7a9bc;
|
|
19149
|
-
}
|
|
19150
|
-
.table-disabled > td,
|
|
19151
|
-
.table-disabled > th {
|
|
19152
|
-
background-color: #fff;
|
|
19153
|
-
cursor: not-allowed;
|
|
19154
|
-
}
|
|
19155
|
-
.table-disabled > td a,
|
|
19156
|
-
.table-disabled > th a {
|
|
19157
|
-
color: #a7a9bc;
|
|
19158
|
-
pointer-events: none;
|
|
19159
|
-
}
|
|
19160
|
-
.table-disabled .table-title,
|
|
19161
|
-
.table-disabled .table-list-title {
|
|
19162
|
-
color: #a7a9bc;
|
|
19163
|
-
}
|
|
19164
|
-
|
|
19165
|
-
.table-hover .table-disabled:hover,
|
|
19166
|
-
.table-hover .table-disabled:hover > td,
|
|
19167
|
-
.table-hover .table-disabled:hover > th {
|
|
19168
|
-
background-color: #fff;
|
|
19169
|
-
}
|
|
19170
|
-
|
|
19171
19189
|
.table-striped tbody .table-disabled:nth-of-type(odd) td,
|
|
19172
19190
|
.table-striped tbody .table-disabled:nth-of-type(odd) th {
|
|
19173
19191
|
background-color: #fff;
|
|
@@ -19349,12 +19367,28 @@ caption {
|
|
|
19349
19367
|
.table-list {
|
|
19350
19368
|
border-collapse: separate;
|
|
19351
19369
|
border-color: #e7e7ed;
|
|
19370
|
+
border-radius: 0.25rem;
|
|
19352
19371
|
border-style: solid;
|
|
19353
19372
|
border-width: 0.0625rem 0.0625rem;
|
|
19354
|
-
border-radius: 0.25rem;
|
|
19355
19373
|
color: #272833;
|
|
19356
19374
|
margin-bottom: 0.0625rem;
|
|
19357
19375
|
}
|
|
19376
|
+
.table-list thead {
|
|
19377
|
+
background-color: #fff;
|
|
19378
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
19379
|
+
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
19380
|
+
}
|
|
19381
|
+
.table-list thead th,
|
|
19382
|
+
.table-list thead td {
|
|
19383
|
+
background-color: #fff;
|
|
19384
|
+
border-bottom-width: 0;
|
|
19385
|
+
}
|
|
19386
|
+
.table-list th,
|
|
19387
|
+
.table-list td {
|
|
19388
|
+
border-color: #e7e7ed;
|
|
19389
|
+
border-style: solid;
|
|
19390
|
+
border-width: 0.0625rem 0 0 0;
|
|
19391
|
+
}
|
|
19358
19392
|
.table-list thead:first-child tr:first-child th,
|
|
19359
19393
|
.table-list thead:first-child tr:first-child td,
|
|
19360
19394
|
.table-list tbody:first-child tr:first-child th,
|
|
@@ -19367,165 +19401,162 @@ caption {
|
|
|
19367
19401
|
}
|
|
19368
19402
|
.table-list thead:first-child tr:first-child th:first-child,
|
|
19369
19403
|
.table-list thead:first-child tr:first-child td:first-child,
|
|
19370
|
-
.table-list thead:first-child tr:first-child .table-cell-start,
|
|
19371
19404
|
.table-list tbody:first-child tr:first-child th:first-child,
|
|
19372
19405
|
.table-list tbody:first-child tr:first-child td:first-child,
|
|
19373
|
-
.table-list tbody:first-child tr:first-child .table-cell-start,
|
|
19374
19406
|
.table-list tfoot:first-child tr:first-child th:first-child,
|
|
19375
19407
|
.table-list tfoot:first-child tr:first-child td:first-child,
|
|
19376
|
-
.table-list tfoot:first-child tr:first-child .table-cell-start,
|
|
19377
19408
|
.table-list caption:first-child + thead tr:first-child th:first-child,
|
|
19378
|
-
.table-list caption:first-child + thead tr:first-child td:first-child
|
|
19379
|
-
.table-list caption:first-child + thead tr:first-child .table-cell-start {
|
|
19409
|
+
.table-list caption:first-child + thead tr:first-child td:first-child {
|
|
19380
19410
|
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
19381
19411
|
}
|
|
19382
19412
|
.table-list thead:first-child tr:first-child th:last-child,
|
|
19383
19413
|
.table-list thead:first-child tr:first-child td:last-child,
|
|
19384
|
-
.table-list thead:first-child tr:first-child .table-cell-end,
|
|
19385
19414
|
.table-list tbody:first-child tr:first-child th:last-child,
|
|
19386
19415
|
.table-list tbody:first-child tr:first-child td:last-child,
|
|
19387
|
-
.table-list tbody:first-child tr:first-child .table-cell-end,
|
|
19388
19416
|
.table-list tfoot:first-child tr:first-child th:last-child,
|
|
19389
19417
|
.table-list tfoot:first-child tr:first-child td:last-child,
|
|
19390
|
-
.table-list tfoot:first-child tr:first-child .table-cell-end,
|
|
19391
19418
|
.table-list caption:first-child + thead tr:first-child th:last-child,
|
|
19392
|
-
.table-list caption:first-child + thead tr:first-child td:last-child
|
|
19393
|
-
.table-list caption:first-child + thead tr:first-child .table-cell-end {
|
|
19419
|
+
.table-list caption:first-child + thead tr:first-child td:last-child {
|
|
19394
19420
|
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
19395
19421
|
}
|
|
19396
|
-
.table-list
|
|
19397
|
-
.
|
|
19398
|
-
|
|
19399
|
-
.table-list
|
|
19400
|
-
.
|
|
19401
|
-
.table-list tfoot th {
|
|
19402
|
-
border-color: #e7e7ed;
|
|
19403
|
-
border-style: solid;
|
|
19404
|
-
border-width: 0.0625rem 0 0 0;
|
|
19422
|
+
.table-list .table-row-start .table-cell-start {
|
|
19423
|
+
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
19424
|
+
}
|
|
19425
|
+
.table-list .table-row-start .table-cell-end {
|
|
19426
|
+
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
19405
19427
|
}
|
|
19406
19428
|
.table-list thead:last-child tr:last-child th:first-child,
|
|
19407
19429
|
.table-list thead:last-child tr:last-child td:first-child,
|
|
19408
|
-
.table-list thead:last-child tr:last-child .table-cell-start,
|
|
19409
19430
|
.table-list tbody:last-child tr:last-child th:first-child,
|
|
19410
19431
|
.table-list tbody:last-child tr:last-child td:first-child,
|
|
19411
|
-
.table-list tbody:last-child tr:last-child .table-cell-start,
|
|
19412
19432
|
.table-list tfoot:last-child tr:last-child th:first-child,
|
|
19413
|
-
.table-list tfoot:last-child tr:last-child td:first-child
|
|
19414
|
-
.table-list tfoot:last-child tr:last-child .table-cell-start {
|
|
19433
|
+
.table-list tfoot:last-child tr:last-child td:first-child {
|
|
19415
19434
|
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
19416
19435
|
}
|
|
19417
19436
|
.table-list thead:last-child tr:last-child th:last-child,
|
|
19418
19437
|
.table-list thead:last-child tr:last-child td:last-child,
|
|
19419
|
-
.table-list thead:last-child tr:last-child .table-cell-end,
|
|
19420
19438
|
.table-list tbody:last-child tr:last-child th:last-child,
|
|
19421
19439
|
.table-list tbody:last-child tr:last-child td:last-child,
|
|
19422
|
-
.table-list tbody:last-child tr:last-child .table-cell-end,
|
|
19423
19440
|
.table-list tfoot:last-child tr:last-child th:last-child,
|
|
19424
|
-
.table-list tfoot:last-child tr:last-child td:last-child
|
|
19425
|
-
.table-list tfoot:last-child tr:last-child .table-cell-end {
|
|
19441
|
+
.table-list tfoot:last-child tr:last-child td:last-child {
|
|
19426
19442
|
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
19427
19443
|
}
|
|
19428
|
-
.table-list
|
|
19429
|
-
|
|
19430
|
-
border-top-left-radius: calc(0.25rem - 0.0625rem);
|
|
19431
|
-
border-top-right-radius: calc(0.25rem - 0.0625rem);
|
|
19444
|
+
.table-list .table-row-end .table-cell-start {
|
|
19445
|
+
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
19432
19446
|
}
|
|
19433
|
-
.table-list
|
|
19434
|
-
|
|
19435
|
-
background-color: #fff;
|
|
19447
|
+
.table-list .table-row-end .table-cell-end {
|
|
19448
|
+
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
19436
19449
|
}
|
|
19437
19450
|
.table-list tbody {
|
|
19438
19451
|
background-color: #fff;
|
|
19439
19452
|
border-bottom-left-radius: calc(0.25rem - 0.0625rem);
|
|
19440
19453
|
border-bottom-right-radius: calc(0.25rem - 0.0625rem);
|
|
19441
19454
|
}
|
|
19442
|
-
.table-list tbody
|
|
19443
|
-
.table-list tbody
|
|
19455
|
+
.table-list tbody th,
|
|
19456
|
+
.table-list tbody td {
|
|
19444
19457
|
background-color: #fff;
|
|
19445
19458
|
vertical-align: middle;
|
|
19446
19459
|
}
|
|
19447
19460
|
.table-list tfoot {
|
|
19448
19461
|
background-color: #fff;
|
|
19449
19462
|
}
|
|
19450
|
-
.table-list tfoot
|
|
19451
|
-
.table-list tfoot
|
|
19463
|
+
.table-list tfoot th,
|
|
19464
|
+
.table-list tfoot td {
|
|
19452
19465
|
background-color: #fff;
|
|
19453
19466
|
vertical-align: middle;
|
|
19454
19467
|
}
|
|
19455
|
-
.table-list .table-
|
|
19456
|
-
|
|
19468
|
+
.table-list .table-divider th,
|
|
19469
|
+
.table-list .table-divider td {
|
|
19470
|
+
padding-bottom: 0.4375rem;
|
|
19471
|
+
padding-left: 0.75rem;
|
|
19472
|
+
padding-right: 0.75rem;
|
|
19473
|
+
padding-top: 0.4375rem;
|
|
19457
19474
|
}
|
|
19458
|
-
.table-list .table-
|
|
19459
|
-
|
|
19475
|
+
.table-list .table-active {
|
|
19476
|
+
background-color: #f0f5ff;
|
|
19460
19477
|
}
|
|
19461
|
-
.table-list .table-
|
|
19462
|
-
|
|
19478
|
+
.table-list .table-active th,
|
|
19479
|
+
.table-list .table-active td {
|
|
19480
|
+
background-color: #f0f5ff;
|
|
19463
19481
|
}
|
|
19464
|
-
.table-list .table-
|
|
19465
|
-
|
|
19482
|
+
.table-list .table-active .quick-action-menu {
|
|
19483
|
+
background-color: #f0f5ff;
|
|
19484
|
+
}
|
|
19485
|
+
.table-list .table-disabled {
|
|
19486
|
+
background-color: #fff;
|
|
19487
|
+
color: #a7a9bc;
|
|
19488
|
+
}
|
|
19489
|
+
.table-list .table-disabled th,
|
|
19490
|
+
.table-list .table-disabled td {
|
|
19491
|
+
background-color: #fff;
|
|
19492
|
+
color: #a7a9bc;
|
|
19493
|
+
}
|
|
19494
|
+
.table-list .table-disabled th [href],
|
|
19495
|
+
.table-list .table-disabled td [href] {
|
|
19496
|
+
color: #a7a9bc;
|
|
19497
|
+
pointer-events: none;
|
|
19498
|
+
}
|
|
19499
|
+
.table-list .table-disabled .table-title {
|
|
19500
|
+
color: #a7a9bc;
|
|
19501
|
+
}
|
|
19502
|
+
.table-list .table-disabled .table-list-title {
|
|
19503
|
+
color: #a7a9bc;
|
|
19504
|
+
}
|
|
19505
|
+
.table-list .quick-action-menu {
|
|
19506
|
+
align-items: center;
|
|
19507
|
+
background-color: #fff;
|
|
19508
|
+
bottom: 0;
|
|
19509
|
+
top: 0;
|
|
19466
19510
|
}
|
|
19467
19511
|
|
|
19468
|
-
.table-list.table-bordered thead th,
|
|
19469
|
-
.table-list.table-bordered thead td
|
|
19470
|
-
|
|
19471
|
-
|
|
19472
|
-
.table-list.table-bordered
|
|
19473
|
-
.table-list.table-bordered
|
|
19512
|
+
.table.table-list.table-bordered thead th,
|
|
19513
|
+
.table.table-list.table-bordered thead td {
|
|
19514
|
+
border-bottom-width: 0;
|
|
19515
|
+
}
|
|
19516
|
+
.table.table-list.table-bordered th,
|
|
19517
|
+
.table.table-list.table-bordered td {
|
|
19474
19518
|
border-left-width: 0.0625rem;
|
|
19475
19519
|
}
|
|
19476
|
-
.table-list.table-bordered th:first-child,
|
|
19477
|
-
.table-list.table-bordered td:first-child
|
|
19520
|
+
.table.table-list.table-bordered th:first-child,
|
|
19521
|
+
.table.table-list.table-bordered td:first-child,
|
|
19522
|
+
.table.table-list.table-bordered .table-column-start {
|
|
19478
19523
|
border-left-width: 0;
|
|
19479
19524
|
}
|
|
19480
|
-
|
|
19481
19525
|
.table-list.table-striped tbody tr:nth-of-type(odd) td,
|
|
19482
19526
|
.table-list.table-striped tbody tr:nth-of-type(odd) th {
|
|
19483
19527
|
background-color: #f7f8f9;
|
|
19484
19528
|
}
|
|
19485
19529
|
|
|
19486
|
-
.table-list.table-hover tbody tr:hover
|
|
19487
|
-
.table-list.table-hover tbody tr:hover td,
|
|
19488
|
-
.table-list.table-hover tbody tr:hover th {
|
|
19530
|
+
.table-list.table-hover tbody tr:hover {
|
|
19489
19531
|
background-color: #f0f5ff;
|
|
19490
19532
|
}
|
|
19491
|
-
|
|
19492
|
-
.table-list.table-hover
|
|
19493
|
-
.table-list.table-hover .table-active:hover > th,
|
|
19494
|
-
.table-list.table-hover .table-active:hover > td {
|
|
19533
|
+
.table-list.table-hover tbody tr:hover th,
|
|
19534
|
+
.table-list.table-hover tbody tr:hover td {
|
|
19495
19535
|
background-color: #f0f5ff;
|
|
19496
19536
|
}
|
|
19497
|
-
|
|
19498
|
-
.table-list .table-active,
|
|
19499
|
-
.table-list .table-active > th,
|
|
19500
|
-
.table-list .table-active > td {
|
|
19537
|
+
.table-list.table-hover tbody tr:hover .quick-action-menu {
|
|
19501
19538
|
background-color: #f0f5ff;
|
|
19502
19539
|
}
|
|
19503
|
-
|
|
19504
|
-
|
|
19505
|
-
background-color: #fff;
|
|
19506
|
-
color: #a7a9bc;
|
|
19540
|
+
.table-list.table-hover .table-active:hover {
|
|
19541
|
+
background-color: #f0f5ff;
|
|
19507
19542
|
}
|
|
19508
|
-
.table-list .table-
|
|
19509
|
-
.table-list .table-
|
|
19510
|
-
background-color: #
|
|
19511
|
-
cursor: not-allowed;
|
|
19543
|
+
.table-list.table-hover .table-active:hover th,
|
|
19544
|
+
.table-list.table-hover .table-active:hover td {
|
|
19545
|
+
background-color: #f0f5ff;
|
|
19512
19546
|
}
|
|
19513
|
-
.table-list .table-
|
|
19514
|
-
|
|
19515
|
-
color: #a7a9bc;
|
|
19516
|
-
pointer-events: none;
|
|
19547
|
+
.table-list.table-hover .table-active:hover .quick-action-menu {
|
|
19548
|
+
background-color: #f0f5ff;
|
|
19517
19549
|
}
|
|
19518
|
-
.table-list
|
|
19519
|
-
|
|
19520
|
-
color: #a7a9bc;
|
|
19550
|
+
.table-list.table-hover .table-disabled {
|
|
19551
|
+
background-color: #fff;
|
|
19521
19552
|
}
|
|
19522
|
-
|
|
19523
|
-
|
|
19524
|
-
|
|
19525
|
-
.table-list.table-hover .table-disabled:hover
|
|
19553
|
+
.table-list.table-hover .table-disabled:hover {
|
|
19554
|
+
background-color: #fff;
|
|
19555
|
+
}
|
|
19556
|
+
.table-list.table-hover .table-disabled:hover th,
|
|
19557
|
+
.table-list.table-hover .table-disabled:hover td {
|
|
19526
19558
|
background-color: #fff;
|
|
19527
19559
|
}
|
|
19528
|
-
|
|
19529
19560
|
.table-list.table-striped tbody .table-disabled:nth-of-type(odd),
|
|
19530
19561
|
.table-list.table-striped tbody .table-disabled:nth-of-type(odd) td,
|
|
19531
19562
|
.table-list.table-striped tbody .table-disabled:nth-of-type(odd) th {
|
|
@@ -19631,24 +19662,6 @@ caption {
|
|
|
19631
19662
|
white-space: nowrap;
|
|
19632
19663
|
}
|
|
19633
19664
|
|
|
19634
|
-
.table .table-divider td,
|
|
19635
|
-
.table .table-divider th {
|
|
19636
|
-
background-color: #f7f8f9;
|
|
19637
|
-
color: #6b6c7e;
|
|
19638
|
-
font-size: 0.75rem;
|
|
19639
|
-
font-weight: 600;
|
|
19640
|
-
padding: 0.4375rem 0.75rem;
|
|
19641
|
-
text-transform: uppercase;
|
|
19642
|
-
}
|
|
19643
|
-
|
|
19644
|
-
.table-list .table-divider td,
|
|
19645
|
-
.table-list .table-divider th {
|
|
19646
|
-
padding-bottom: 0.4375rem;
|
|
19647
|
-
padding-left: 0.75rem;
|
|
19648
|
-
padding-right: 0.75rem;
|
|
19649
|
-
padding-top: 0.4375rem;
|
|
19650
|
-
}
|
|
19651
|
-
|
|
19652
19665
|
.table-valign-bottom tbody td,
|
|
19653
19666
|
.table-valign-bottom tbody th,
|
|
19654
19667
|
.table-valign-bottom tfoot td,
|
|
@@ -19734,13 +19747,6 @@ caption {
|
|
|
19734
19747
|
display: flex;
|
|
19735
19748
|
}
|
|
19736
19749
|
|
|
19737
|
-
.table .quick-action-menu {
|
|
19738
|
-
align-items: flex-start;
|
|
19739
|
-
background-color: #fff;
|
|
19740
|
-
padding-bottom: 0.75rem;
|
|
19741
|
-
padding-top: 0.75rem;
|
|
19742
|
-
}
|
|
19743
|
-
|
|
19744
19750
|
.table-striped tbody tr:nth-of-type(odd) .quick-action-menu {
|
|
19745
19751
|
background-color: #f7f8f9;
|
|
19746
19752
|
}
|
|
@@ -19748,24 +19754,6 @@ caption {
|
|
|
19748
19754
|
background-color: #f0f5ff;
|
|
19749
19755
|
}
|
|
19750
19756
|
|
|
19751
|
-
.table-hover tbody tr:hover .quick-action-menu {
|
|
19752
|
-
background-color: #f0f5ff;
|
|
19753
|
-
}
|
|
19754
|
-
.table-hover tbody .table-active:hover .quick-action-menu {
|
|
19755
|
-
background-color: #f1f2f5;
|
|
19756
|
-
}
|
|
19757
|
-
|
|
19758
|
-
.table-active .quick-action-menu {
|
|
19759
|
-
background-color: #f1f2f5;
|
|
19760
|
-
}
|
|
19761
|
-
|
|
19762
|
-
.table-list .quick-action-menu {
|
|
19763
|
-
align-items: center;
|
|
19764
|
-
background-color: #fff;
|
|
19765
|
-
bottom: 0;
|
|
19766
|
-
top: 0;
|
|
19767
|
-
}
|
|
19768
|
-
|
|
19769
19757
|
.table-list.table-striped tbody tr:nth-of-type(odd) .quick-action-menu {
|
|
19770
19758
|
background-color: #f7f8f9;
|
|
19771
19759
|
}
|
|
@@ -19773,17 +19761,6 @@ caption {
|
|
|
19773
19761
|
background-color: #f0f5ff;
|
|
19774
19762
|
}
|
|
19775
19763
|
|
|
19776
|
-
.table-list.table-hover tbody tr:hover .quick-action-menu {
|
|
19777
|
-
background-color: #f0f5ff;
|
|
19778
|
-
}
|
|
19779
|
-
.table-list.table-hover tbody .table-active:hover .quick-action-menu {
|
|
19780
|
-
background-color: #f0f5ff;
|
|
19781
|
-
}
|
|
19782
|
-
|
|
19783
|
-
.table-list .table-active .quick-action-menu {
|
|
19784
|
-
background-color: #f0f5ff;
|
|
19785
|
-
}
|
|
19786
|
-
|
|
19787
19764
|
.table-column-text-start,
|
|
19788
19765
|
.table-cell-text-start {
|
|
19789
19766
|
text-align: left;
|
|
@@ -21280,9 +21257,18 @@ caption {
|
|
|
21280
21257
|
margin-bottom: 0;
|
|
21281
21258
|
padding: 2px 0;
|
|
21282
21259
|
}
|
|
21260
|
+
.treeview .btn {
|
|
21261
|
+
font-size: 12px;
|
|
21262
|
+
line-height: 1;
|
|
21263
|
+
padding: 6px 8px;
|
|
21264
|
+
}
|
|
21265
|
+
.treeview .btn .c-inner {
|
|
21266
|
+
margin: -7px -8px;
|
|
21267
|
+
}
|
|
21283
21268
|
.treeview .btn-monospaced {
|
|
21284
21269
|
font-size: inherit;
|
|
21285
21270
|
height: 24px;
|
|
21271
|
+
padding: 0;
|
|
21286
21272
|
width: 24px;
|
|
21287
21273
|
}
|
|
21288
21274
|
.treeview .btn-monospaced:focus, .treeview .btn-monospaced.focus {
|
|
@@ -21303,7 +21289,6 @@ caption {
|
|
|
21303
21289
|
display: none;
|
|
21304
21290
|
}
|
|
21305
21291
|
.treeview .component-action {
|
|
21306
|
-
display: none;
|
|
21307
21292
|
font-size: 16px;
|
|
21308
21293
|
margin-left: 2px;
|
|
21309
21294
|
margin-right: 2px;
|
|
@@ -21328,7 +21313,7 @@ caption {
|
|
|
21328
21313
|
display: inline-block;
|
|
21329
21314
|
font-size: 16px;
|
|
21330
21315
|
height: auto;
|
|
21331
|
-
margin:
|
|
21316
|
+
margin: 4px;
|
|
21332
21317
|
vertical-align: middle;
|
|
21333
21318
|
width: auto;
|
|
21334
21319
|
}
|
|
@@ -21336,9 +21321,8 @@ caption {
|
|
|
21336
21321
|
display: block;
|
|
21337
21322
|
}
|
|
21338
21323
|
.treeview .component-text {
|
|
21339
|
-
|
|
21324
|
+
line-height: 24px;
|
|
21340
21325
|
padding-left: 4px;
|
|
21341
|
-
padding-top: 1.5px;
|
|
21342
21326
|
-ms-user-select: auto;
|
|
21343
21327
|
-moz-user-select: auto;
|
|
21344
21328
|
-webkit-user-select: auto;
|
|
@@ -21366,6 +21350,23 @@ caption {
|
|
|
21366
21350
|
transition: none;
|
|
21367
21351
|
}
|
|
21368
21352
|
}
|
|
21353
|
+
.treeview .quick-action-item {
|
|
21354
|
+
margin: 0 2px;
|
|
21355
|
+
min-height: 0;
|
|
21356
|
+
min-width: 0;
|
|
21357
|
+
}
|
|
21358
|
+
.treeview .autofit-row {
|
|
21359
|
+
align-items: center;
|
|
21360
|
+
}
|
|
21361
|
+
.treeview.show-quick-actions-on-hover .treeview-link:not(:hover):not(:focus):not(.focus) .quick-action-item {
|
|
21362
|
+
display: none;
|
|
21363
|
+
}
|
|
21364
|
+
.treeview.show-quick-actions-on-hover .treeview-link:disabled .quick-action-item, .treeview.show-quick-actions-on-hover .treeview-link.disabled .quick-action-item {
|
|
21365
|
+
display: none;
|
|
21366
|
+
}
|
|
21367
|
+
.treeview.show-quick-actions-on-hover .treeview-link .quick-action-item:disabled, .treeview.show-quick-actions-on-hover .treeview-link .quick-action-item.disabled {
|
|
21368
|
+
display: none;
|
|
21369
|
+
}
|
|
21369
21370
|
|
|
21370
21371
|
.treeview-group {
|
|
21371
21372
|
display: flex;
|
|
@@ -21417,19 +21418,12 @@ caption {
|
|
|
21417
21418
|
.treeview-link.treeview-dropping-top {
|
|
21418
21419
|
box-shadow: 0 -2px 0 0 #80acff;
|
|
21419
21420
|
}
|
|
21420
|
-
.treeview-link.hover .component-action, .treeview-link:hover .component-action, .treeview-link.focus .component-action, .treeview-link:focus .component-action {
|
|
21421
|
-
display: flex;
|
|
21422
|
-
}
|
|
21423
|
-
.treeview-link:disabled .component-action, .treeview-link.disabled .component-action {
|
|
21424
|
-
display: none;
|
|
21425
|
-
}
|
|
21426
21421
|
.treeview-link.show .component-expander .component-expanded-d-none, .treeview-link[aria-expanded=true] .component-expander .component-expanded-d-none {
|
|
21427
21422
|
display: none;
|
|
21428
21423
|
}
|
|
21429
21424
|
.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) {
|
|
21430
21425
|
display: inline-block;
|
|
21431
21426
|
}
|
|
21432
|
-
|
|
21433
21427
|
.treeview-nested-margins .treeview-group .treeview-item {
|
|
21434
21428
|
margin-left: 24px;
|
|
21435
21429
|
}
|