@clayui/css 3.113.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 +2956 -0
- package/lib/css/atlas.css +13 -5
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +13 -5
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +13 -6
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/content-shield.svg +12 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/scim.svg +10 -0
- package/lib/images/icons/shield-asterisk.svg +11 -0
- package/package.json +2 -2
- package/src/images/icons/content-shield.svg +12 -0
- package/src/images/icons/scim.svg +10 -0
- package/src/images/icons/shield-asterisk.svg +11 -0
- 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/_modals.scss +2 -2
- package/src/scss/components/_button-groups.scss +7 -0
- package/src/scss/functions/_lx-icons-generated.scss +6 -0
- package/src/scss/variables/_buttons.scss +12 -0
- package/src/scss/variables/_modals.scss +2 -2
- package/src/scss/variables/_popovers.scss +1 -1
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
|
}
|
|
@@ -12946,10 +12954,10 @@ label.custom-control-label {
|
|
|
12946
12954
|
flex-shrink: 0;
|
|
12947
12955
|
flex-wrap: wrap;
|
|
12948
12956
|
justify-content: flex-start;
|
|
12949
|
-
padding-bottom:
|
|
12950
|
-
padding-left:
|
|
12951
|
-
padding-right:
|
|
12952
|
-
padding-top:
|
|
12957
|
+
padding-bottom: 1rem;
|
|
12958
|
+
padding-left: 1.5rem;
|
|
12959
|
+
padding-right: 1.5rem;
|
|
12960
|
+
padding-top: 1rem;
|
|
12953
12961
|
}
|
|
12954
12962
|
.modal-footer > * {
|
|
12955
12963
|
margin: 0 calc(0.5rem * 0.5);
|