@clayui/css 3.119.0 → 3.121.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 +22 -2
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +22 -2
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +23 -3
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -2
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_globals.scss +89 -0
- package/src/scss/cadmin/components/_tables.scss +78 -0
- package/src/scss/cadmin/variables/_dropdowns.scss +0 -1
- package/src/scss/cadmin/variables/_globals.scss +89 -0
- package/src/scss/components/_tables.scss +78 -0
- package/src/scss/mixins/_globals.scss +38 -0
- package/src/scss/variables/_dropdowns.scss +0 -1
- package/src/scss/variables/_globals.scss +89 -0
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.121.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>
|
|
@@ -7283,7 +7283,6 @@ input[type=button].btn-block {
|
|
|
7283
7283
|
|
|
7284
7284
|
.dropdown-menu-width-shrink {
|
|
7285
7285
|
min-width: 0;
|
|
7286
|
-
white-space: nowrap;
|
|
7287
7286
|
}
|
|
7288
7287
|
.dropdown-menu-width-full {
|
|
7289
7288
|
left: 12px !important;
|
|
@@ -19444,6 +19443,11 @@ caption {
|
|
|
19444
19443
|
.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) th {
|
|
19445
19444
|
background-color: #f2f2f2;
|
|
19446
19445
|
}
|
|
19446
|
+
.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
|
|
19447
|
+
.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td,
|
|
19448
|
+
.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th {
|
|
19449
|
+
background-color: #ececec;
|
|
19450
|
+
}
|
|
19447
19451
|
|
|
19448
19452
|
.table-hover tbody tr:hover {
|
|
19449
19453
|
background-color: #ececec;
|
|
@@ -19718,6 +19722,11 @@ td.table-focus {
|
|
|
19718
19722
|
.table-dark.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td {
|
|
19719
19723
|
background-color: rgba(255, 255, 255, 0.05);
|
|
19720
19724
|
}
|
|
19725
|
+
.table-dark.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
|
|
19726
|
+
.table-dark.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td,
|
|
19727
|
+
.table-dark.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th {
|
|
19728
|
+
background-color: rgba(255, 255, 255, 0.075);
|
|
19729
|
+
}
|
|
19721
19730
|
.table-dark.table-hover tbody tr:hover {
|
|
19722
19731
|
background-color: rgba(255, 255, 255, 0.075);
|
|
19723
19732
|
color: #fff;
|
|
@@ -19957,6 +19966,11 @@ td.table-focus {
|
|
|
19957
19966
|
.table-list.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td {
|
|
19958
19967
|
background-color: #f2f2f2;
|
|
19959
19968
|
}
|
|
19969
|
+
.table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
|
|
19970
|
+
.table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th,
|
|
19971
|
+
.table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td {
|
|
19972
|
+
background-color: #ececec;
|
|
19973
|
+
}
|
|
19960
19974
|
|
|
19961
19975
|
.table-list.table-hover tbody tr:hover {
|
|
19962
19976
|
background-color: #ececec;
|
|
@@ -20169,6 +20183,9 @@ td.table-focus {
|
|
|
20169
20183
|
.table-striped tbody .table-active:nth-of-type(odd) .quick-action-menu {
|
|
20170
20184
|
background-color: #f2f2f2;
|
|
20171
20185
|
}
|
|
20186
|
+
.table-striped.table-hover tbody tr:nth-of-type(odd):hover .quick-action-menu {
|
|
20187
|
+
background-color: #ececec;
|
|
20188
|
+
}
|
|
20172
20189
|
|
|
20173
20190
|
.table-list.table-striped tbody tr:nth-of-type(odd) .quick-action-menu {
|
|
20174
20191
|
background-color: #f2f2f2;
|
|
@@ -20176,6 +20193,9 @@ td.table-focus {
|
|
|
20176
20193
|
.table-list.table-striped tbody .table-active:nth-of-type(odd) .quick-action-menu {
|
|
20177
20194
|
background-color: #dadada;
|
|
20178
20195
|
}
|
|
20196
|
+
.table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover .quick-action-menu {
|
|
20197
|
+
background-color: #ececec;
|
|
20198
|
+
}
|
|
20179
20199
|
|
|
20180
20200
|
.table-column-text-start,
|
|
20181
20201
|
.table-cell-text-start {
|