@clayui/css 3.139.1 → 3.141.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 +53 -2
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +38 -1
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +2 -5
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/pause.svg +3 -4
- package/package.json +2 -2
- package/src/images/icons/pause.svg +3 -4
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_sidebar.scss +19 -0
- package/src/scss/atlas/variables/_utilities.scss +1 -0
- package/src/scss/cadmin/variables/_sidebar.scss +25 -0
- package/src/scss/cadmin/variables/_utilities.scss +0 -3
- package/src/scss/functions/_lx-icons-generated.scss +1 -1
- package/src/scss/variables/_sidebar.scss +20 -0
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.141.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>
|
|
@@ -19439,6 +19439,25 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19439
19439
|
border-left-width: 1px;
|
|
19440
19440
|
color: #212529;
|
|
19441
19441
|
}
|
|
19442
|
+
.sidebar-light .close:hover {
|
|
19443
|
+
background-color: #6c757d;
|
|
19444
|
+
color: #fff;
|
|
19445
|
+
}
|
|
19446
|
+
.sidebar-light .close:active {
|
|
19447
|
+
background-color: #6c757d;
|
|
19448
|
+
color: #fff;
|
|
19449
|
+
}
|
|
19450
|
+
.sidebar-light .close.active {
|
|
19451
|
+
background-color: #6c757d;
|
|
19452
|
+
color: #fff;
|
|
19453
|
+
}
|
|
19454
|
+
.sidebar-light .close:disabled, .sidebar-light .close.disabled {
|
|
19455
|
+
background-color: transparent;
|
|
19456
|
+
box-shadow: none;
|
|
19457
|
+
color: #6c757d;
|
|
19458
|
+
cursor: not-allowed;
|
|
19459
|
+
opacity: 0.65;
|
|
19460
|
+
}
|
|
19442
19461
|
.sidebar-light .sidebar-header {
|
|
19443
19462
|
background-color: inherit;
|
|
19444
19463
|
border: 0px solid #dee2e6;
|
|
@@ -19501,6 +19520,24 @@ a.sheet-subtitle:hover, a.sheet-subtitle.hover {
|
|
|
19501
19520
|
.sidebar-light .component-navigation-bar .navbar-overlay {
|
|
19502
19521
|
background-color: #f8f9fa;
|
|
19503
19522
|
}
|
|
19523
|
+
.sidebar-light .close:hover {
|
|
19524
|
+
background-color: #6c757d;
|
|
19525
|
+
color: #fff;
|
|
19526
|
+
}
|
|
19527
|
+
.sidebar-light .close:active {
|
|
19528
|
+
background-color: #6c757d;
|
|
19529
|
+
color: #fff;
|
|
19530
|
+
}
|
|
19531
|
+
.sidebar-light .close:disabled {
|
|
19532
|
+
background-color: transparent;
|
|
19533
|
+
box-shadow: none;
|
|
19534
|
+
color: #6c757d;
|
|
19535
|
+
cursor: not-allowed;
|
|
19536
|
+
opacity: 0.65;
|
|
19537
|
+
}
|
|
19538
|
+
.sidebar-light .close:disabled:active {
|
|
19539
|
+
pointer-events: none;
|
|
19540
|
+
}
|
|
19504
19541
|
.sidebar-light .sidebar-header {
|
|
19505
19542
|
background-color: inherit;
|
|
19506
19543
|
border: 0px solid #dee2e6;
|