@clayui/css 3.60.1 → 3.60.2
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 +1950 -0
- package/LICENSES/BSD-3-Clause.txt +30 -0
- package/LICENSES/LicenseRef-MIT-Bootstrap.txt +22 -0
- package/LICENSES/MIT.txt +19 -0
- package/lib/css/atlas.css +61 -9
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +60 -8
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +61 -16
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/package.json +2 -3
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_sidebar.scss +24 -17
- package/src/scss/cadmin/components/_sidebar.scss +10 -10
- package/src/scss/cadmin/variables/_loaders.scss +1 -0
- package/src/scss/cadmin/variables/_sidebar.scss +137 -54
- package/src/scss/components/_sidebar.scss +10 -10
- package/src/scss/mixins/_panels.scss +282 -272
- package/src/scss/mixins/_sidebar.scss +293 -185
- package/src/scss/mixins/_stickers.scss +143 -134
- package/src/scss/variables/_loaders.scss +1 -0
- package/src/scss/variables/_sidebar.scss +123 -44
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
Valid-License-Identifier: LicenseRef-BSD-3-Clause-Liferay
|
|
2
|
+
Valid-License-Identifier: BSD-3-Clause
|
|
3
|
+
License-Text:
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2014, Liferay Inc. All rights reserved.
|
|
6
|
+
|
|
7
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
8
|
+
are permitted provided that the following conditions are met:
|
|
9
|
+
|
|
10
|
+
1. Redistributions of source code must retain the above copyright notice,
|
|
11
|
+
this list of conditions and the following disclaimer.
|
|
12
|
+
|
|
13
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
14
|
+
this list of conditions and the following disclaimer in the documentation
|
|
15
|
+
and/or other materials provided with the distribution.
|
|
16
|
+
|
|
17
|
+
3. Neither the name of the copyright holder nor the names of its contributors
|
|
18
|
+
may be used to endorse or promote products derived from this software without
|
|
19
|
+
specific prior written permission.
|
|
20
|
+
|
|
21
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
22
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
23
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
24
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
25
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
26
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
27
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
28
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
29
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
|
30
|
+
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2011-2019 Twitter, Inc.
|
|
4
|
+
Copyright (c) 2011-2019 The Bootstrap Authors
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
THE SOFTWARE.
|
package/LICENSES/MIT.txt
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
4
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
5
|
+
the Software without restriction, including without limitation the rights to
|
|
6
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
7
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
8
|
+
so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
19
|
+
SOFTWARE.
|
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.60.
|
|
3
|
+
* Clay 3.60.2
|
|
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>
|
|
@@ -18520,12 +18520,9 @@ a.sheet-subtitle:focus {
|
|
|
18520
18520
|
.sidebar-light {
|
|
18521
18521
|
background-color: #fff;
|
|
18522
18522
|
border-color: #e7e7ed;
|
|
18523
|
-
border-bottom-width: 0;
|
|
18524
18523
|
border-left-width: 0px;
|
|
18525
|
-
border-right-width: 0;
|
|
18526
|
-
border-top-width: 0;
|
|
18527
|
-
box-shadow: -0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
18528
18524
|
color: #272833;
|
|
18525
|
+
box-shadow: -0.25rem 0 0.5rem -0.25rem rgba(0, 0, 0, 0.1);
|
|
18529
18526
|
}
|
|
18530
18527
|
.sidebar-light .sidebar-list-group .list-group-title {
|
|
18531
18528
|
font-size: 1rem;
|
|
@@ -18597,10 +18594,6 @@ a.sheet-subtitle:focus {
|
|
|
18597
18594
|
}
|
|
18598
18595
|
.sidebar-dark {
|
|
18599
18596
|
background-color: #272833;
|
|
18600
|
-
border-bottom-width: 0;
|
|
18601
|
-
border-left-width: 0;
|
|
18602
|
-
border-right-width: 0;
|
|
18603
|
-
border-top-width: 0;
|
|
18604
18597
|
color: #fff;
|
|
18605
18598
|
}
|
|
18606
18599
|
.sidebar-dark .close {
|
|
@@ -18657,6 +18650,64 @@ a.sheet-subtitle:focus {
|
|
|
18657
18650
|
.sidebar-dark .nav-nested .nav-link[aria-expanded=true], .sidebar-dark .nav-nested .nav-link.show {
|
|
18658
18651
|
color: #fff;
|
|
18659
18652
|
}
|
|
18653
|
+
.sidebar-dark-l2 {
|
|
18654
|
+
background-color: #393a4a;
|
|
18655
|
+
color: #fff;
|
|
18656
|
+
}
|
|
18657
|
+
.sidebar-dark-l2 .close {
|
|
18658
|
+
color: #a7a9bc;
|
|
18659
|
+
}
|
|
18660
|
+
.sidebar-dark-l2 .close:hover {
|
|
18661
|
+
color: #fff;
|
|
18662
|
+
}
|
|
18663
|
+
.sidebar-dark-l2 .sidebar-header .component-title {
|
|
18664
|
+
color: inherit;
|
|
18665
|
+
}
|
|
18666
|
+
.sidebar-dark-l2 .sidebar-header .component-title[href],
|
|
18667
|
+
.sidebar-dark-l2 .sidebar-header .component-title [href] {
|
|
18668
|
+
color: inherit;
|
|
18669
|
+
}
|
|
18670
|
+
.sidebar-dark-l2 .sidebar-header .component-subtitle {
|
|
18671
|
+
color: inherit;
|
|
18672
|
+
}
|
|
18673
|
+
.sidebar-dark-l2 .sidebar-header .component-subtitle[href],
|
|
18674
|
+
.sidebar-dark-l2 .sidebar-header .component-subtitle [href] {
|
|
18675
|
+
color: inherit;
|
|
18676
|
+
}
|
|
18677
|
+
.sidebar-dark-l2 .nav-nested .nav-link {
|
|
18678
|
+
border-radius: 0.25rem;
|
|
18679
|
+
color: #a7a9bc;
|
|
18680
|
+
transition: box-shadow 0.15s ease-in-out;
|
|
18681
|
+
}
|
|
18682
|
+
@media (prefers-reduced-motion: reduce) {
|
|
18683
|
+
.sidebar-dark-l2 .nav-nested .nav-link {
|
|
18684
|
+
transition: none;
|
|
18685
|
+
}
|
|
18686
|
+
}
|
|
18687
|
+
.sidebar-dark-l2 .nav-nested .nav-link:hover {
|
|
18688
|
+
color: #fff;
|
|
18689
|
+
}
|
|
18690
|
+
.sidebar-dark-l2 .nav-nested .nav-link:focus {
|
|
18691
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #80acff;
|
|
18692
|
+
outline: 0;
|
|
18693
|
+
}
|
|
18694
|
+
.sidebar-dark-l2 .nav-nested .nav-link:active {
|
|
18695
|
+
color: #fff;
|
|
18696
|
+
}
|
|
18697
|
+
.sidebar-dark-l2 .nav-nested .nav-link.active {
|
|
18698
|
+
color: #fff;
|
|
18699
|
+
}
|
|
18700
|
+
.sidebar-dark-l2 .nav-nested .nav-link:disabled, .sidebar-dark-l2 .nav-nested .nav-link.disabled {
|
|
18701
|
+
box-shadow: none;
|
|
18702
|
+
color: #a7a9bc;
|
|
18703
|
+
opacity: 0.65;
|
|
18704
|
+
}
|
|
18705
|
+
.sidebar-dark-l2 .nav-nested .nav-link:disabled:active, .sidebar-dark-l2 .nav-nested .nav-link.disabled:active {
|
|
18706
|
+
pointer-events: none;
|
|
18707
|
+
}
|
|
18708
|
+
.sidebar-dark-l2 .nav-nested .nav-link[aria-expanded=true], .sidebar-dark-l2 .nav-nested .nav-link.show {
|
|
18709
|
+
color: #fff;
|
|
18710
|
+
}
|
|
18660
18711
|
.c-slideout-transition-in {
|
|
18661
18712
|
transition: all 0.3s ease-in-out;
|
|
18662
18713
|
}
|
|
@@ -30331,6 +30382,7 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
30331
30382
|
height: 1em;
|
|
30332
30383
|
margin-left: auto;
|
|
30333
30384
|
margin-right: auto;
|
|
30385
|
+
overflow: hidden;
|
|
30334
30386
|
position: relative;
|
|
30335
30387
|
text-align: left;
|
|
30336
30388
|
vertical-align: middle;
|