@clayui/css 3.118.0 → 3.119.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 +13 -4
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +7 -4
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +14 -4
- 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/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/_utilities-functional-important.scss +0 -1
- package/src/scss/variables/_globals-z-index.scss +4 -1
- package/src/scss/variables/_slideout.scss +9 -1
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.119.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>
|
|
@@ -7661,6 +7661,7 @@ fieldset[disabled] label .form-control {
|
|
|
7661
7661
|
margin-top: 0.25rem;
|
|
7662
7662
|
min-height: 1.25rem;
|
|
7663
7663
|
}
|
|
7664
|
+
fieldset[disabled] select.form-control[multiple],
|
|
7664
7665
|
fieldset[disabled] .form-control {
|
|
7665
7666
|
background-color: #e9ecef;
|
|
7666
7667
|
cursor: not-allowed;
|
|
@@ -18717,7 +18718,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
18717
18718
|
left: 0;
|
|
18718
18719
|
position: fixed;
|
|
18719
18720
|
top: 0;
|
|
18720
|
-
z-index:
|
|
18721
|
+
z-index: calc(1000 - 25);
|
|
18721
18722
|
}
|
|
18722
18723
|
|
|
18723
18724
|
.sidenav-end > .sidenav-content,
|
|
@@ -19141,7 +19142,7 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19141
19142
|
.c-slideout {
|
|
19142
19143
|
display: flex;
|
|
19143
19144
|
overflow: hidden;
|
|
19144
|
-
z-index:
|
|
19145
|
+
z-index: calc(1000 - 25);
|
|
19145
19146
|
}
|
|
19146
19147
|
.c-slideout.c-slideout-shown {
|
|
19147
19148
|
overflow: visible;
|
|
@@ -19252,6 +19253,9 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19252
19253
|
}
|
|
19253
19254
|
}
|
|
19254
19255
|
|
|
19256
|
+
.c-slideout-height-full {
|
|
19257
|
+
z-index: calc(1030 + 5);
|
|
19258
|
+
}
|
|
19255
19259
|
table {
|
|
19256
19260
|
border-collapse: collapse;
|
|
19257
19261
|
}
|
|
@@ -31191,7 +31195,6 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
31191
31195
|
}
|
|
31192
31196
|
|
|
31193
31197
|
.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 {
|
|
31194
|
-
max-width: 100% !important;
|
|
31195
31198
|
overflow-wrap: break-word !important;
|
|
31196
31199
|
white-space: normal !important;
|
|
31197
31200
|
word-wrap: break-word !important;
|