@clayui/css 3.152.0 → 3.153.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/lib/css/atlas.css +12 -1
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +12 -1
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +8 -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 +40 -0
- package/src/scss/cadmin/variables/_buttons.scss +38 -0
- package/src/scss/components/_button-groups.scss +45 -0
- package/src/scss/variables/_buttons.scss +38 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.153.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>
|
|
@@ -4796,6 +4796,10 @@ input[type=button].btn-block {
|
|
|
4796
4796
|
.btn-group > .btn-group:not(:first-child) {
|
|
4797
4797
|
margin-left: -0.0625rem;
|
|
4798
4798
|
}
|
|
4799
|
+
.btn-group > .btn::after {
|
|
4800
|
+
content: "";
|
|
4801
|
+
display: block;
|
|
4802
|
+
}
|
|
4799
4803
|
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
|
|
4800
4804
|
.btn-group > .btn-group:not(:last-child) > .btn {
|
|
4801
4805
|
border-bottom-right-radius: 0;
|
|
@@ -4906,6 +4910,13 @@ input[type=button].btn-block {
|
|
|
4906
4910
|
position: absolute;
|
|
4907
4911
|
}
|
|
4908
4912
|
|
|
4913
|
+
.btn-group > .btn-dark:not(:first-of-type), .btn-group > .btn-danger:not(:first-of-type), .btn-group > .btn-warning:not(:first-of-type), .btn-group > .btn-success:not(:first-of-type), .btn-group > .btn-info:not(:first-of-type), .btn-group > .btn-primary:not(:first-of-type) {
|
|
4914
|
+
border-left-color: #fff;
|
|
4915
|
+
}
|
|
4916
|
+
.btn-group > .btn-dark:not(:last-of-type), .btn-group > .btn-danger:not(:last-of-type), .btn-group > .btn-warning:not(:last-of-type), .btn-group > .btn-success:not(:last-of-type), .btn-group > .btn-info:not(:last-of-type), .btn-group > .btn-primary:not(:last-of-type) {
|
|
4917
|
+
border-right-color: #fff;
|
|
4918
|
+
}
|
|
4919
|
+
|
|
4909
4920
|
.c-empty-state-animation {
|
|
4910
4921
|
align-items: center;
|
|
4911
4922
|
display: flex;
|