@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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.115.1](https://github.com/liferay/clay/compare/v3.115.0...v3.115.1) (2024-05-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **@clayui/empty-state:** LPD-2278 Add flexbox property to prevent image to overlap text ([cb3285e](https://github.com/liferay/clay/commit/cb3285e22f26058114a29b3ed5a09ae3b0c1097e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.115.0](https://github.com/liferay/clay/compare/v3.114.0...v3.115.0) (2024-05-16)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **@clayui/css:** LPD-23703 Adds btn-group-spaced for a separated button group ([bfbd088](https://github.com/liferay/clay/commit/bfbd08844de6d83c8f0d5e27771d80735a9e8104))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [3.114.0](https://github.com/liferay/clay/compare/v3.113.0...v3.114.0) (2024-04-22)
|
|
7
29
|
|
|
8
30
|
|
package/lib/css/atlas.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>
|
|
@@ -4757,6 +4757,14 @@ input[type=button].btn-block {
|
|
|
4757
4757
|
flex-wrap: wrap;
|
|
4758
4758
|
}
|
|
4759
4759
|
|
|
4760
|
+
.btn-group-spaced {
|
|
4761
|
+
align-items: center;
|
|
4762
|
+
column-gap: 1rem;
|
|
4763
|
+
display: inline-flex;
|
|
4764
|
+
flex-wrap: wrap;
|
|
4765
|
+
position: relative;
|
|
4766
|
+
}
|
|
4767
|
+
|
|
4760
4768
|
.btn-group-nowrap {
|
|
4761
4769
|
flex-wrap: nowrap;
|
|
4762
4770
|
}
|
|
@@ -4845,14 +4853,17 @@ input[type=button].btn-block {
|
|
|
4845
4853
|
}
|
|
4846
4854
|
|
|
4847
4855
|
.c-empty-state-animation {
|
|
4848
|
-
|
|
4856
|
+
align-items: center;
|
|
4857
|
+
display: flex;
|
|
4858
|
+
flex-direction: column;
|
|
4859
|
+
flex-shrink: 0;
|
|
4849
4860
|
margin: 5rem auto 1.5rem;
|
|
4850
4861
|
max-width: 340px;
|
|
4851
4862
|
text-align: center;
|
|
4852
4863
|
}
|
|
4853
4864
|
|
|
4854
4865
|
.c-empty-state-image {
|
|
4855
|
-
margin: 0
|
|
4866
|
+
margin-bottom: -0.5rem;
|
|
4856
4867
|
max-width: 250px;
|
|
4857
4868
|
width: 100%;
|
|
4858
4869
|
overflow-wrap: break-word;
|