@clayui/css 3.114.0 → 3.115.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/CHANGELOG.md +11 -0
- package/lib/css/atlas.css +9 -1
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +9 -1
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +9 -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/components/_button-groups.scss +7 -0
- package/src/scss/variables/_buttons.scss +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.0](https://github.com/liferay/clay/compare/v3.114.0...v3.115.0) (2024-05-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **@clayui/css:** LPD-23703 Adds btn-group-spaced for a separated button group ([bfbd088](https://github.com/liferay/clay/commit/bfbd08844de6d83c8f0d5e27771d80735a9e8104))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.114.0](https://github.com/liferay/clay/compare/v3.113.0...v3.114.0) (2024-04-22)
|
|
7
18
|
|
|
8
19
|
|
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.115.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>
|
|
@@ -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
|
}
|