@clayui/css 3.101.0 → 3.103.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 +6 -2
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +6 -2
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +7 -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/cadmin/variables/_modals.scss +4 -1
- package/src/scss/functions/_type-conversion-functions.scss +2 -2
- package/src/scss/variables/_modals.scss +4 -1
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.103.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>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
|
-
* Clay 3.
|
|
19
|
+
* Clay 3.103.1
|
|
20
20
|
*
|
|
21
21
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
22
22
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -10198,6 +10198,7 @@ html:not(#__):not(#___) .cadmin .modal-content {
|
|
|
10198
10198
|
box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
|
|
10199
10199
|
display: flex;
|
|
10200
10200
|
flex-direction: column;
|
|
10201
|
+
max-height: calc(100vh - 28px * 2);
|
|
10201
10202
|
outline: 0;
|
|
10202
10203
|
overflow: hidden;
|
|
10203
10204
|
pointer-events: auto;
|
|
@@ -10222,11 +10223,14 @@ html:not(#__):not(#___) .cadmin .modal-body, html:not(#__):not(#___) .cadmin.mod
|
|
|
10222
10223
|
flex-grow: 1;
|
|
10223
10224
|
flex-shrink: 1;
|
|
10224
10225
|
margin-top: -1px;
|
|
10226
|
+
overflow: auto;
|
|
10227
|
+
overflow-wrap: break-word;
|
|
10228
|
+
word-wrap: break-word;
|
|
10225
10229
|
padding: 24px;
|
|
10226
10230
|
position: relative;
|
|
10227
10231
|
}
|
|
10228
10232
|
html:not(#__):not(#___) .cadmin .modal-body.inline-scroller, html:not(#__):not(#___) .cadmin.modal-body.inline-scroller {
|
|
10229
|
-
max-height:
|
|
10233
|
+
max-height: none;
|
|
10230
10234
|
-webkit-overflow-scrolling: touch;
|
|
10231
10235
|
overflow: auto;
|
|
10232
10236
|
padding: 24px;
|