@clayui/css 3.118.0 → 3.119.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 +34 -5
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +28 -5
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +35 -5
- 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/_forms.scss +7 -0
- package/src/scss/cadmin/components/_forms.scss +6 -3
- package/src/scss/cadmin/components/_slideout.scss +4 -0
- package/src/scss/cadmin/components/_tables.scss +78 -0
- package/src/scss/cadmin/variables/_dropdowns.scss +0 -1
- package/src/scss/cadmin/variables/_forms.scss +7 -0
- package/src/scss/cadmin/variables/_globals-z-index.scss +6 -1
- package/src/scss/cadmin/variables/_slideout.scss +9 -1
- package/src/scss/components/_forms.scss +5 -2
- package/src/scss/components/_slideout.scss +4 -0
- package/src/scss/components/_tables.scss +78 -0
- package/src/scss/components/_utilities-functional-important.scss +0 -1
- package/src/scss/mixins/_globals.scss +38 -0
- package/src/scss/variables/_dropdowns.scss +0 -1
- package/src/scss/variables/_globals-z-index.scss +4 -1
- package/src/scss/variables/_slideout.scss +9 -1
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.119.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>
|
|
@@ -7478,7 +7478,6 @@ input[type=button].btn-block {
|
|
|
7478
7478
|
|
|
7479
7479
|
.dropdown-menu-width-shrink {
|
|
7480
7480
|
min-width: 0;
|
|
7481
|
-
white-space: nowrap;
|
|
7482
7481
|
}
|
|
7483
7482
|
.dropdown-menu-width-full {
|
|
7484
7483
|
left: 12px !important;
|
|
@@ -7888,6 +7887,7 @@ fieldset[disabled] label .form-control {
|
|
|
7888
7887
|
margin-top: -0.3125rem;
|
|
7889
7888
|
}
|
|
7890
7889
|
|
|
7890
|
+
fieldset[disabled] select.form-control[multiple],
|
|
7891
7891
|
fieldset[disabled] .form-control {
|
|
7892
7892
|
background-color: #f1f2f5;
|
|
7893
7893
|
border-color: #f1f2f5;
|
|
@@ -8113,6 +8113,9 @@ select.form-control[size].focus > option:checked, select.form-control[size]:focu
|
|
|
8113
8113
|
filter: invert(1);
|
|
8114
8114
|
}
|
|
8115
8115
|
|
|
8116
|
+
select.form-control[size]:disabled > option:hover, select.form-control[size].disabled > option:hover {
|
|
8117
|
+
background-image: none;
|
|
8118
|
+
}
|
|
8116
8119
|
select.form-control[size] option {
|
|
8117
8120
|
padding: 0.4375rem 0.5rem;
|
|
8118
8121
|
}
|
|
@@ -8146,6 +8149,9 @@ select.form-control[multiple].focus > option:checked, select.form-control[multip
|
|
|
8146
8149
|
filter: invert(1);
|
|
8147
8150
|
}
|
|
8148
8151
|
|
|
8152
|
+
select.form-control[multiple]:disabled > option:hover, select.form-control[multiple].disabled > option:hover {
|
|
8153
|
+
background-image: none;
|
|
8154
|
+
}
|
|
8149
8155
|
select.form-control[multiple] option {
|
|
8150
8156
|
padding: 0.4375rem 0.5rem;
|
|
8151
8157
|
}
|
|
@@ -20190,7 +20196,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20190
20196
|
left: 0;
|
|
20191
20197
|
position: fixed;
|
|
20192
20198
|
top: 0;
|
|
20193
|
-
z-index:
|
|
20199
|
+
z-index: calc(1000 - 25);
|
|
20194
20200
|
}
|
|
20195
20201
|
|
|
20196
20202
|
.sidenav-end > .sidenav-content,
|
|
@@ -20632,7 +20638,7 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20632
20638
|
.c-slideout {
|
|
20633
20639
|
display: flex;
|
|
20634
20640
|
overflow: hidden;
|
|
20635
|
-
z-index:
|
|
20641
|
+
z-index: calc(1000 - 25);
|
|
20636
20642
|
}
|
|
20637
20643
|
.c-slideout.c-slideout-shown {
|
|
20638
20644
|
overflow: visible;
|
|
@@ -20743,6 +20749,9 @@ a.sheet-subtitle.focus, a.sheet-subtitle:focus-visible, .c-prefers-focus a.sheet
|
|
|
20743
20749
|
}
|
|
20744
20750
|
}
|
|
20745
20751
|
|
|
20752
|
+
.c-slideout-height-full {
|
|
20753
|
+
z-index: calc(1030 + 5);
|
|
20754
|
+
}
|
|
20746
20755
|
table {
|
|
20747
20756
|
border-collapse: collapse;
|
|
20748
20757
|
}
|
|
@@ -20960,6 +20969,11 @@ caption {
|
|
|
20960
20969
|
.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) th {
|
|
20961
20970
|
background-color: #f7f8f9;
|
|
20962
20971
|
}
|
|
20972
|
+
.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
|
|
20973
|
+
.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td,
|
|
20974
|
+
.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th {
|
|
20975
|
+
background-color: #f0f5ff;
|
|
20976
|
+
}
|
|
20963
20977
|
|
|
20964
20978
|
.table-hover tbody tr:hover {
|
|
20965
20979
|
background-color: #f0f5ff;
|
|
@@ -21235,6 +21249,11 @@ td.table-focus {
|
|
|
21235
21249
|
.table-dark.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td {
|
|
21236
21250
|
background-color: rgba(255, 255, 255, 0.05);
|
|
21237
21251
|
}
|
|
21252
|
+
.table-dark.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
|
|
21253
|
+
.table-dark.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td,
|
|
21254
|
+
.table-dark.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th {
|
|
21255
|
+
background-color: rgba(255, 255, 255, 0.075);
|
|
21256
|
+
}
|
|
21238
21257
|
.table-dark.table-hover tbody tr:hover {
|
|
21239
21258
|
background-color: rgba(255, 255, 255, 0.075);
|
|
21240
21259
|
color: #fff;
|
|
@@ -21544,6 +21563,11 @@ td.table-focus {
|
|
|
21544
21563
|
.table-list.table-striped tbody tr:nth-of-type(odd):not(.table-active):not(.table-disabled):not(.table-divider) td {
|
|
21545
21564
|
background-color: #f7f8f9;
|
|
21546
21565
|
}
|
|
21566
|
+
.table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider),
|
|
21567
|
+
.table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) th,
|
|
21568
|
+
.table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover:not(.table-active):not(.table-disabled):not(.table-divider) td {
|
|
21569
|
+
background-color: #f0f5ff;
|
|
21570
|
+
}
|
|
21547
21571
|
|
|
21548
21572
|
.table-list.table-hover tbody tr:hover {
|
|
21549
21573
|
background-color: #f0f5ff;
|
|
@@ -21825,6 +21849,9 @@ td.table-focus {
|
|
|
21825
21849
|
.table-striped tbody .table-active:nth-of-type(odd) .quick-action-menu {
|
|
21826
21850
|
background-color: #f0f5ff;
|
|
21827
21851
|
}
|
|
21852
|
+
.table-striped.table-hover tbody tr:nth-of-type(odd):hover .quick-action-menu {
|
|
21853
|
+
background-color: #f0f5ff;
|
|
21854
|
+
}
|
|
21828
21855
|
|
|
21829
21856
|
.table-list.table-striped tbody tr:nth-of-type(odd) .quick-action-menu {
|
|
21830
21857
|
background-color: #f7f8f9;
|
|
@@ -21832,6 +21859,9 @@ td.table-focus {
|
|
|
21832
21859
|
.table-list.table-striped tbody .table-active:nth-of-type(odd) .quick-action-menu {
|
|
21833
21860
|
background-color: #f0f5ff;
|
|
21834
21861
|
}
|
|
21862
|
+
.table-list.table-striped.table-hover tbody tr:nth-of-type(odd):hover .quick-action-menu {
|
|
21863
|
+
background-color: #f0f5ff;
|
|
21864
|
+
}
|
|
21835
21865
|
|
|
21836
21866
|
.table-column-text-start,
|
|
21837
21867
|
.table-cell-text-start {
|
|
@@ -34331,7 +34361,6 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
34331
34361
|
}
|
|
34332
34362
|
|
|
34333
34363
|
.c-prefers-expanded-text .breadcrumb-text-truncate, .c-prefers-expanded-text .form-control-plaintext, .c-prefers-expanded-text .form-control-select, .c-prefers-expanded-text .modal-title, .c-prefers-expanded-text .multi-step-title-center .multi-step-title, .c-prefers-expanded-text .multi-step-indicator .multi-step-indicator-label, .c-prefers-expanded-text .nav-text-truncate, .c-prefers-expanded-text .navbar-text-truncate, .c-prefers-expanded-text .text-truncate, .c-prefers-expanded-text .text-truncate-inline .text-truncate {
|
|
34334
|
-
max-width: 100% !important;
|
|
34335
34364
|
overflow-wrap: break-word !important;
|
|
34336
34365
|
white-space: normal !important;
|
|
34337
34366
|
word-wrap: break-word !important;
|