@clayui/css 3.136.0 → 3.137.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 +18 -3
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +18 -3
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +12 -4
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/anonymize.svg +1 -0
- package/lib/images/icons/bell-full.svg +1 -0
- package/lib/images/icons/devices.svg +1 -0
- package/lib/images/icons/environment-connected.svg +1 -0
- package/lib/images/icons/environment-disconnected.svg +1 -0
- package/lib/images/icons/environment.svg +1 -0
- package/lib/images/icons/flags-bs-BA.svg +13 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/info-panel-closed.svg +1 -0
- package/lib/images/icons/info-panel-open.svg +1 -0
- package/lib/images/icons/paste-plaintext.svg +1 -3
- package/lib/images/icons/paste-word.svg +1 -3
- package/lib/images/icons/paste.svg +1 -3
- package/lib/images/icons/repeat.svg +7 -0
- package/lib/images/icons/send.svg +1 -0
- package/lib/images/icons/share-alt.svg +1 -0
- package/lib/images/icons/third-party.svg +1 -0
- package/package.json +2 -2
- package/src/images/icons/anonymize.svg +1 -0
- package/src/images/icons/bell-full.svg +1 -0
- package/src/images/icons/devices.svg +1 -0
- package/src/images/icons/environment-connected.svg +1 -0
- package/src/images/icons/environment-disconnected.svg +1 -0
- package/src/images/icons/environment.svg +1 -0
- package/src/images/icons/flags-bs-BA.svg +13 -0
- package/src/images/icons/info-panel-closed.svg +1 -0
- package/src/images/icons/info-panel-open.svg +1 -0
- package/src/images/icons/paste-plaintext.svg +1 -3
- package/src/images/icons/paste-word.svg +1 -3
- package/src/images/icons/paste.svg +1 -3
- package/src/images/icons/repeat.svg +7 -0
- package/src/images/icons/send.svg +1 -0
- package/src/images/icons/share-alt.svg +1 -0
- package/src/images/icons/third-party.svg +1 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/cadmin/variables/_clay-color.scss +2 -0
- package/src/scss/cadmin/variables/_slideout.scss +25 -2
- package/src/scss/components/_slideout.scss +8 -0
- package/src/scss/functions/_lx-icons-generated.scss +7 -3
- package/src/scss/mixins/_slideout.scss +8 -0
- package/src/scss/variables/_slideout.scss +25 -2
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.137.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>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
* SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
|
|
17
17
|
*/
|
|
18
18
|
/**
|
|
19
|
-
* Clay 3.
|
|
19
|
+
* Clay 3.137.0
|
|
20
20
|
*
|
|
21
21
|
* SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
|
|
22
22
|
* SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
|
|
@@ -8937,6 +8937,7 @@ html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .clay
|
|
|
8937
8937
|
background-image: linear-gradient(90deg, transparent 0%, currentcolor 100%);
|
|
8938
8938
|
}
|
|
8939
8939
|
html:not(#__):not(#___) .cadmin .clay-color-slider-alpha .clay-range-input .form-control-range {
|
|
8940
|
+
background-image: linear-gradient(90deg, transparent 0%, currentcolor 100%);
|
|
8940
8941
|
color: inherit;
|
|
8941
8942
|
content: "";
|
|
8942
8943
|
}
|
|
@@ -16730,6 +16731,7 @@ html:not(#__):not(#___) .cadmin .sidebar-dark-l2 .nav-nested .nav-link[aria-expa
|
|
|
16730
16731
|
color: #fff;
|
|
16731
16732
|
}
|
|
16732
16733
|
html:not(#__):not(#___) .cadmin .c-slideout-transition-in {
|
|
16734
|
+
overflow: hidden;
|
|
16733
16735
|
transition: all 0.3s ease-in-out;
|
|
16734
16736
|
}
|
|
16735
16737
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -16742,6 +16744,7 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .c-slideout-transition
|
|
|
16742
16744
|
}
|
|
16743
16745
|
|
|
16744
16746
|
html:not(#__):not(#___) .cadmin .c-slideout-transition-out {
|
|
16747
|
+
overflow: hidden;
|
|
16745
16748
|
transition: all 0.2s ease-in;
|
|
16746
16749
|
}
|
|
16747
16750
|
@media (prefers-reduced-motion: reduce) {
|
|
@@ -16774,11 +16777,16 @@ html:not(#__):not(#___) .cadmin .c-slideout .sidebar {
|
|
|
16774
16777
|
position: relative;
|
|
16775
16778
|
width: 320px;
|
|
16776
16779
|
}
|
|
16780
|
+
html:not(#__):not(#___) .cadmin .c-slideout .sidebar-body {
|
|
16781
|
+
flex-grow: 1;
|
|
16782
|
+
}
|
|
16777
16783
|
html:not(#__):not(#___) .cadmin .c-slideout .sidebar.c-slideout-show {
|
|
16778
|
-
display:
|
|
16784
|
+
display: flex;
|
|
16785
|
+
flex-direction: column;
|
|
16779
16786
|
}
|
|
16780
16787
|
html:not(#__):not(#___) .cadmin .c-slideout .sidebar.c-slideout-transition {
|
|
16781
|
-
display:
|
|
16788
|
+
display: flex;
|
|
16789
|
+
flex-direction: column;
|
|
16782
16790
|
}
|
|
16783
16791
|
html:not(#__):not(#___) .cadmin .c-slideout .sidebar.c-slideout-transition .c-horizontal-resizer {
|
|
16784
16792
|
display: none;
|