@clayui/css 3.114.0 → 3.115.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/CHANGELOG.md +22 -0
- package/lib/css/atlas.css +14 -3
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +14 -3
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +10 -2
- 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/components/_button-groups.scss +7 -0
- package/src/scss/cadmin/variables/_buttons.scss +12 -0
- package/src/scss/cadmin/variables/_empty-state.scss +1 -0
- package/src/scss/components/_button-groups.scss +7 -0
- package/src/scss/variables/_buttons.scss +12 -0
- package/src/scss/variables/_empty-state.scss +5 -2
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.115.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.115.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>
|
|
@@ -4448,6 +4448,13 @@ html:not(#__):not(#___) .cadmin .btn-group > .btn-group:not(:first-child) > .btn
|
|
|
4448
4448
|
html:not(#__):not(#___) .cadmin .btn-group {
|
|
4449
4449
|
flex-wrap: wrap;
|
|
4450
4450
|
}
|
|
4451
|
+
html:not(#__):not(#___) .cadmin .btn-group-spaced {
|
|
4452
|
+
align-items: center;
|
|
4453
|
+
column-gap: 16px;
|
|
4454
|
+
display: inline-flex;
|
|
4455
|
+
flex-wrap: wrap;
|
|
4456
|
+
position: relative;
|
|
4457
|
+
}
|
|
4451
4458
|
html:not(#__):not(#___) .cadmin .btn-group-nowrap {
|
|
4452
4459
|
flex-wrap: nowrap;
|
|
4453
4460
|
}
|
|
@@ -4507,6 +4514,7 @@ html:not(#__):not(#___) .cadmin .c-empty-state-animation {
|
|
|
4507
4514
|
align-items: center;
|
|
4508
4515
|
display: flex;
|
|
4509
4516
|
flex-direction: column;
|
|
4517
|
+
flex-shrink: 0;
|
|
4510
4518
|
margin: 80px auto 24px;
|
|
4511
4519
|
max-width: 340px;
|
|
4512
4520
|
text-align: center;
|