@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/base.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>
|
|
@@ -4587,6 +4587,14 @@ input[type=button].btn-block {
|
|
|
4587
4587
|
flex-wrap: wrap;
|
|
4588
4588
|
}
|
|
4589
4589
|
|
|
4590
|
+
.btn-group-spaced {
|
|
4591
|
+
align-items: center;
|
|
4592
|
+
column-gap: 0.5rem;
|
|
4593
|
+
display: inline-flex;
|
|
4594
|
+
flex-wrap: wrap;
|
|
4595
|
+
position: relative;
|
|
4596
|
+
}
|
|
4597
|
+
|
|
4590
4598
|
.btn-group-nowrap {
|
|
4591
4599
|
flex-wrap: nowrap;
|
|
4592
4600
|
}
|
|
@@ -4675,14 +4683,17 @@ input[type=button].btn-block {
|
|
|
4675
4683
|
}
|
|
4676
4684
|
|
|
4677
4685
|
.c-empty-state-animation {
|
|
4678
|
-
|
|
4686
|
+
align-items: center;
|
|
4687
|
+
display: flex;
|
|
4688
|
+
flex-direction: column;
|
|
4689
|
+
flex-shrink: 0;
|
|
4679
4690
|
margin: 5rem auto 1.5rem;
|
|
4680
4691
|
max-width: 340px;
|
|
4681
4692
|
text-align: center;
|
|
4682
4693
|
}
|
|
4683
4694
|
|
|
4684
4695
|
.c-empty-state-image {
|
|
4685
|
-
margin: 0
|
|
4696
|
+
margin-bottom: -0.5rem;
|
|
4686
4697
|
max-width: 250px;
|
|
4687
4698
|
width: 100%;
|
|
4688
4699
|
overflow-wrap: break-word;
|