@clayui/css 3.130.0 → 3.131.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 +160 -60
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +160 -60
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +160 -61
- 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/_cards.scss +4 -4
- package/src/scss/cadmin/components/_grid.scss +1 -0
- package/src/scss/cadmin/components/_utilities-functional-important.scss +3 -5
- package/src/scss/cadmin/variables/_cards.scss +24 -38
- package/src/scss/cadmin/variables/_loaders.scss +48 -0
- package/src/scss/cadmin/variables/_utilities.scss +0 -16
- package/src/scss/components/_cards.scss +4 -4
- package/src/scss/components/_grid.scss +1 -0
- package/src/scss/components/_utilities-functional-important.scss +1 -3
- package/src/scss/mixins/_globals.scss +8 -0
- package/src/scss/mixins/_grid.scss +2 -0
- package/src/scss/mixins/_loaders.scss +6 -0
- package/src/scss/variables/_cards.scss +24 -35
- package/src/scss/variables/_loaders.scss +48 -0
- package/src/scss/variables/_utilities.scss +0 -16
package/lib/css/cadmin.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.131.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.131.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>
|
|
@@ -3363,6 +3363,7 @@ html:not(#__):not(#___) .cadmin .container-no-gutters-xl-down > .row > [class*=c
|
|
|
3363
3363
|
}
|
|
3364
3364
|
}
|
|
3365
3365
|
html:not(#__):not(#___) .cadmin .card-page {
|
|
3366
|
+
container-type: inline-size;
|
|
3366
3367
|
display: flex;
|
|
3367
3368
|
flex-wrap: wrap;
|
|
3368
3369
|
list-style: none;
|
|
@@ -5865,6 +5866,10 @@ html:not(#__):not(#___) .cadmin .form-check-top-right .form-check-input {
|
|
|
5865
5866
|
top: 16px;
|
|
5866
5867
|
transform: none;
|
|
5867
5868
|
}
|
|
5869
|
+
html:not(#__):not(#___) .cadmin .card-page {
|
|
5870
|
+
container-name: c-card-page;
|
|
5871
|
+
container-type: inline-size;
|
|
5872
|
+
}
|
|
5868
5873
|
html:not(#__):not(#___) .cadmin .card-page.card-page-equal-height .card-page-item,
|
|
5869
5874
|
html:not(#__):not(#___) .cadmin .card-page.card-page-equal-height .card-page-item-asset,
|
|
5870
5875
|
html:not(#__):not(#___) .cadmin .card-page.card-page-equal-height .card-page-item-directory {
|
|
@@ -5885,99 +5890,72 @@ html:not(#__):not(#___) .cadmin .card-page-item-header {
|
|
|
5885
5890
|
width: 100%;
|
|
5886
5891
|
}
|
|
5887
5892
|
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
min-width: 193px;
|
|
5893
|
+
flex-basis: 100%;
|
|
5894
|
+
max-width: 100%;
|
|
5891
5895
|
padding-left: 12px;
|
|
5892
5896
|
padding-right: 12px;
|
|
5893
|
-
position: relative;
|
|
5894
|
-
width: 100%;
|
|
5895
|
-
}
|
|
5896
|
-
@media (min-width: 0) {
|
|
5897
|
-
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5898
|
-
min-width: 193px;
|
|
5899
|
-
padding-left: 12px;
|
|
5900
|
-
padding-right: 12px;
|
|
5901
|
-
}
|
|
5902
5897
|
}
|
|
5903
|
-
@
|
|
5898
|
+
@container c-card-page (min-width: 540px) {
|
|
5904
5899
|
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5905
5900
|
flex-basis: 50%;
|
|
5906
5901
|
max-width: 50%;
|
|
5907
5902
|
}
|
|
5908
5903
|
}
|
|
5909
|
-
@
|
|
5904
|
+
@container c-card-page (min-width: 960px) {
|
|
5910
5905
|
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5911
|
-
flex-basis:
|
|
5912
|
-
max-width:
|
|
5906
|
+
flex-basis: 25%;
|
|
5907
|
+
max-width: 25%;
|
|
5913
5908
|
}
|
|
5914
5909
|
}
|
|
5915
|
-
@
|
|
5910
|
+
@container c-card-page (min-width: 1392px) {
|
|
5916
5911
|
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5917
|
-
flex-basis:
|
|
5918
|
-
max-width:
|
|
5912
|
+
flex-basis: 20%;
|
|
5913
|
+
max-width: 20%;
|
|
5919
5914
|
}
|
|
5920
5915
|
}
|
|
5921
5916
|
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
min-width: 193px;
|
|
5917
|
+
flex-basis: 100%;
|
|
5918
|
+
max-width: 100%;
|
|
5925
5919
|
padding-left: 12px;
|
|
5926
5920
|
padding-right: 12px;
|
|
5927
|
-
position: relative;
|
|
5928
|
-
width: 100%;
|
|
5929
5921
|
}
|
|
5930
|
-
@
|
|
5931
|
-
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5932
|
-
min-width: 193px;
|
|
5933
|
-
padding-left: 12px;
|
|
5934
|
-
padding-right: 12px;
|
|
5935
|
-
}
|
|
5936
|
-
}
|
|
5937
|
-
@media (min-width: 576px) {
|
|
5922
|
+
@container c-card-page (min-width: 540px) {
|
|
5938
5923
|
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5939
5924
|
flex-basis: 50%;
|
|
5940
5925
|
max-width: 50%;
|
|
5941
5926
|
}
|
|
5942
5927
|
}
|
|
5943
|
-
@
|
|
5928
|
+
@container c-card-page (min-width: 960px) {
|
|
5944
5929
|
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5945
|
-
flex-basis:
|
|
5946
|
-
max-width:
|
|
5930
|
+
flex-basis: 25%;
|
|
5931
|
+
max-width: 25%;
|
|
5947
5932
|
}
|
|
5948
5933
|
}
|
|
5949
|
-
@
|
|
5934
|
+
@container c-card-page (min-width: 1392px) {
|
|
5950
5935
|
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5951
|
-
flex-basis:
|
|
5952
|
-
max-width:
|
|
5936
|
+
flex-basis: 20%;
|
|
5937
|
+
max-width: 20%;
|
|
5953
5938
|
}
|
|
5954
5939
|
}
|
|
5955
5940
|
html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
5956
|
-
|
|
5957
|
-
|
|
5958
|
-
flex-grow: 1;
|
|
5959
|
-
max-width: 50%;
|
|
5941
|
+
flex-basis: 100%;
|
|
5942
|
+
max-width: 100%;
|
|
5960
5943
|
padding-left: 12px;
|
|
5961
5944
|
padding-right: 12px;
|
|
5962
|
-
position: relative;
|
|
5963
|
-
width: 100%;
|
|
5964
5945
|
}
|
|
5965
|
-
@
|
|
5946
|
+
@container c-card-page (min-width: 540px) {
|
|
5966
5947
|
html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
5967
5948
|
flex-basis: 50%;
|
|
5968
5949
|
max-width: 50%;
|
|
5969
|
-
padding-left: 12px;
|
|
5970
|
-
padding-right: 12px;
|
|
5971
5950
|
}
|
|
5972
5951
|
}
|
|
5973
|
-
@
|
|
5952
|
+
@container c-card-page (min-width: 960px) {
|
|
5974
5953
|
html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
5975
|
-
flex-basis:
|
|
5976
|
-
max-width:
|
|
5977
|
-
min-width: 200px;
|
|
5954
|
+
flex-basis: 25%;
|
|
5955
|
+
max-width: 25%;
|
|
5978
5956
|
}
|
|
5979
5957
|
}
|
|
5980
|
-
@
|
|
5958
|
+
@container c-card-page (min-width: 1392px) {
|
|
5981
5959
|
html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
5982
5960
|
flex-basis: 20%;
|
|
5983
5961
|
max-width: 20%;
|
|
@@ -28084,19 +28062,69 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin {
|
|
|
28084
28062
|
scroll-behavior: auto;
|
|
28085
28063
|
transition: none;
|
|
28086
28064
|
}
|
|
28065
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares {
|
|
28066
|
+
display: block;
|
|
28067
|
+
height: 1em;
|
|
28068
|
+
margin-left: auto;
|
|
28069
|
+
margin-right: auto;
|
|
28070
|
+
overflow: hidden;
|
|
28071
|
+
position: relative;
|
|
28072
|
+
text-align: left;
|
|
28073
|
+
vertical-align: middle;
|
|
28074
|
+
width: 1em;
|
|
28075
|
+
}
|
|
28087
28076
|
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::before {
|
|
28077
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
28088
28078
|
background-color: transparent;
|
|
28079
|
+
border-radius: 50%;
|
|
28080
|
+
box-shadow: -0.03125em -0.375em 0 0 currentColor;
|
|
28081
|
+
content: "";
|
|
28089
28082
|
display: block;
|
|
28090
28083
|
font-size: inherit;
|
|
28084
|
+
height: 0.25em;
|
|
28085
|
+
left: 50%;
|
|
28086
|
+
margin-left: -0.125em;
|
|
28087
|
+
margin-top: -0.125em;
|
|
28091
28088
|
opacity: inherit;
|
|
28089
|
+
position: absolute;
|
|
28090
|
+
top: 50%;
|
|
28092
28091
|
transform: none;
|
|
28092
|
+
width: 0.25em;
|
|
28093
|
+
}
|
|
28094
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28095
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::before {
|
|
28096
|
+
animation: none;
|
|
28097
|
+
}
|
|
28093
28098
|
}
|
|
28099
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .c-prefers-reduced-motion .cadmin .loading-animation-squares::before {
|
|
28100
|
+
animation: none;
|
|
28101
|
+
}
|
|
28102
|
+
|
|
28094
28103
|
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::after {
|
|
28104
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
28105
|
+
background-color: currentColor;
|
|
28106
|
+
border-radius: 50%;
|
|
28107
|
+
content: "";
|
|
28108
|
+
display: block;
|
|
28095
28109
|
font-size: inherit;
|
|
28110
|
+
height: 1em;
|
|
28096
28111
|
left: auto;
|
|
28112
|
+
-webkit-mask: conic-gradient(transparent 10%, #000), linear-gradient(#000 0 0) content-box;
|
|
28113
|
+
-webkit-mask-composite: source-out;
|
|
28114
|
+
mask-composite: subtract;
|
|
28115
|
+
padding: 0.25em;
|
|
28097
28116
|
position: relative;
|
|
28098
28117
|
top: auto;
|
|
28099
28118
|
transform: none;
|
|
28119
|
+
width: 1em;
|
|
28120
|
+
}
|
|
28121
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28122
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::after {
|
|
28123
|
+
animation: none;
|
|
28124
|
+
}
|
|
28125
|
+
}
|
|
28126
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .c-prefers-reduced-motion .cadmin .loading-animation-squares::after {
|
|
28127
|
+
animation: none;
|
|
28100
28128
|
}
|
|
28101
28129
|
|
|
28102
28130
|
@keyframes cadmin-loading-animation-circle {
|
|
@@ -28104,7 +28132,7 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squ
|
|
|
28104
28132
|
transform: rotate(360deg);
|
|
28105
28133
|
}
|
|
28106
28134
|
}
|
|
28107
|
-
html:not(#__):not(#___) .cadmin .loading-animation
|
|
28135
|
+
html:not(#__):not(#___) .cadmin .loading-animation {
|
|
28108
28136
|
display: block;
|
|
28109
28137
|
height: 1em;
|
|
28110
28138
|
margin-left: auto;
|
|
@@ -28115,7 +28143,7 @@ html:not(#__):not(#___) .cadmin .loading-animation, html:not(#__):not(#___) .c-p
|
|
|
28115
28143
|
vertical-align: middle;
|
|
28116
28144
|
width: 1em;
|
|
28117
28145
|
}
|
|
28118
|
-
html:not(#__):not(#___) .cadmin .loading-animation::before
|
|
28146
|
+
html:not(#__):not(#___) .cadmin .loading-animation::before {
|
|
28119
28147
|
animation: cadmin-loading-animation-circle 1s linear infinite;
|
|
28120
28148
|
border-radius: 50%;
|
|
28121
28149
|
box-shadow: -0.03125em -0.375em 0 0 currentColor;
|
|
@@ -28129,15 +28157,15 @@ html:not(#__):not(#___) .cadmin .loading-animation::before, html:not(#__):not(#_
|
|
|
28129
28157
|
width: 0.25em;
|
|
28130
28158
|
}
|
|
28131
28159
|
@media (prefers-reduced-motion: reduce) {
|
|
28132
|
-
html:not(#__):not(#___) .cadmin .loading-animation::before
|
|
28160
|
+
html:not(#__):not(#___) .cadmin .loading-animation::before {
|
|
28133
28161
|
animation: none;
|
|
28134
28162
|
}
|
|
28135
28163
|
}
|
|
28136
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation::before
|
|
28164
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation::before {
|
|
28137
28165
|
animation: none;
|
|
28138
28166
|
}
|
|
28139
28167
|
|
|
28140
|
-
html:not(#__):not(#___) .cadmin .loading-animation::after
|
|
28168
|
+
html:not(#__):not(#___) .cadmin .loading-animation::after {
|
|
28141
28169
|
animation: cadmin-loading-animation-circle 1s linear infinite;
|
|
28142
28170
|
background-color: currentColor;
|
|
28143
28171
|
border-radius: 50%;
|
|
@@ -28151,11 +28179,11 @@ html:not(#__):not(#___) .cadmin .loading-animation::after, html:not(#__):not(#__
|
|
|
28151
28179
|
width: 1em;
|
|
28152
28180
|
}
|
|
28153
28181
|
@media (prefers-reduced-motion: reduce) {
|
|
28154
|
-
html:not(#__):not(#___) .cadmin .loading-animation::after
|
|
28182
|
+
html:not(#__):not(#___) .cadmin .loading-animation::after {
|
|
28155
28183
|
animation: none;
|
|
28156
28184
|
}
|
|
28157
28185
|
}
|
|
28158
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation::after
|
|
28186
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation::after {
|
|
28159
28187
|
animation: none;
|
|
28160
28188
|
}
|
|
28161
28189
|
|
|
@@ -28269,6 +28297,77 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squ
|
|
|
28269
28297
|
animation: none;
|
|
28270
28298
|
}
|
|
28271
28299
|
|
|
28300
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28301
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares {
|
|
28302
|
+
display: block;
|
|
28303
|
+
height: 1em;
|
|
28304
|
+
margin-left: auto;
|
|
28305
|
+
margin-right: auto;
|
|
28306
|
+
overflow: hidden;
|
|
28307
|
+
position: relative;
|
|
28308
|
+
text-align: left;
|
|
28309
|
+
vertical-align: middle;
|
|
28310
|
+
width: 1em;
|
|
28311
|
+
}
|
|
28312
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares::before {
|
|
28313
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
28314
|
+
background-color: transparent;
|
|
28315
|
+
border-radius: 50%;
|
|
28316
|
+
box-shadow: -0.03125em -0.375em 0 0 currentColor;
|
|
28317
|
+
content: "";
|
|
28318
|
+
display: block;
|
|
28319
|
+
font-size: inherit;
|
|
28320
|
+
height: 0.25em;
|
|
28321
|
+
left: 50%;
|
|
28322
|
+
margin-left: -0.125em;
|
|
28323
|
+
margin-top: -0.125em;
|
|
28324
|
+
opacity: inherit;
|
|
28325
|
+
position: absolute;
|
|
28326
|
+
top: 50%;
|
|
28327
|
+
transform: none;
|
|
28328
|
+
width: 0.25em;
|
|
28329
|
+
}
|
|
28330
|
+
}
|
|
28331
|
+
@media (prefers-reduced-motion: reduce) and (prefers-reduced-motion: reduce) {
|
|
28332
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares::before {
|
|
28333
|
+
animation: none;
|
|
28334
|
+
}
|
|
28335
|
+
}
|
|
28336
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28337
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::before {
|
|
28338
|
+
animation: none;
|
|
28339
|
+
}
|
|
28340
|
+
}
|
|
28341
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28342
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares::after {
|
|
28343
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
28344
|
+
background-color: currentColor;
|
|
28345
|
+
border-radius: 50%;
|
|
28346
|
+
content: "";
|
|
28347
|
+
display: block;
|
|
28348
|
+
font-size: inherit;
|
|
28349
|
+
height: 1em;
|
|
28350
|
+
left: auto;
|
|
28351
|
+
-webkit-mask: conic-gradient(transparent 10%, #000), linear-gradient(#000 0 0) content-box;
|
|
28352
|
+
-webkit-mask-composite: source-out;
|
|
28353
|
+
mask-composite: subtract;
|
|
28354
|
+
padding: 0.25em;
|
|
28355
|
+
position: relative;
|
|
28356
|
+
top: auto;
|
|
28357
|
+
transform: none;
|
|
28358
|
+
width: 1em;
|
|
28359
|
+
}
|
|
28360
|
+
}
|
|
28361
|
+
@media (prefers-reduced-motion: reduce) and (prefers-reduced-motion: reduce) {
|
|
28362
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares::after {
|
|
28363
|
+
animation: none;
|
|
28364
|
+
}
|
|
28365
|
+
}
|
|
28366
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28367
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::after {
|
|
28368
|
+
animation: none;
|
|
28369
|
+
}
|
|
28370
|
+
}
|
|
28272
28371
|
html:not(#__):not(#___) .cadmin .loading-animation-xs {
|
|
28273
28372
|
font-size: 10px;
|
|
28274
28373
|
}
|