@clayui/css 3.130.0 → 3.132.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 +177 -54
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +177 -54
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +176 -55
- 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/_breadcrumbs.scss +4 -0
- 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/_breadcrumbs.scss +9 -0
- package/src/scss/cadmin/variables/_cards.scss +28 -37
- package/src/scss/cadmin/variables/_loaders.scss +48 -0
- package/src/scss/cadmin/variables/_utilities.scss +0 -16
- package/src/scss/components/_breadcrumbs.scss +4 -0
- 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/_breadcrumbs.scss +9 -0
- package/src/scss/variables/_cards.scss +28 -34
- 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.132.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.132.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;
|
|
@@ -4350,6 +4351,10 @@ html:not(#__):not(#___) .cadmin .clay-dark.badge-translucent.badge-danger, html:
|
|
|
4350
4351
|
border-color: transparent;
|
|
4351
4352
|
color: #f48989;
|
|
4352
4353
|
}
|
|
4354
|
+
html:not(#__):not(#___) .cadmin .breadcrumb-bar {
|
|
4355
|
+
align-items: center;
|
|
4356
|
+
display: flex;
|
|
4357
|
+
}
|
|
4353
4358
|
html:not(#__):not(#___) .cadmin .breadcrumb {
|
|
4354
4359
|
background-color: transparent;
|
|
4355
4360
|
border-radius: 4px;
|
|
@@ -5865,6 +5870,10 @@ html:not(#__):not(#___) .cadmin .form-check-top-right .form-check-input {
|
|
|
5865
5870
|
top: 16px;
|
|
5866
5871
|
transform: none;
|
|
5867
5872
|
}
|
|
5873
|
+
html:not(#__):not(#___) .cadmin .card-page {
|
|
5874
|
+
container-name: c-card-page;
|
|
5875
|
+
container-type: inline-size;
|
|
5876
|
+
}
|
|
5868
5877
|
html:not(#__):not(#___) .cadmin .card-page.card-page-equal-height .card-page-item,
|
|
5869
5878
|
html:not(#__):not(#___) .cadmin .card-page.card-page-equal-height .card-page-item-asset,
|
|
5870
5879
|
html:not(#__):not(#___) .cadmin .card-page.card-page-equal-height .card-page-item-directory {
|
|
@@ -5885,99 +5894,90 @@ html:not(#__):not(#___) .cadmin .card-page-item-header {
|
|
|
5885
5894
|
width: 100%;
|
|
5886
5895
|
}
|
|
5887
5896
|
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
min-width: 193px;
|
|
5897
|
+
flex-basis: 100%;
|
|
5898
|
+
max-width: 100%;
|
|
5891
5899
|
padding-left: 12px;
|
|
5892
5900
|
padding-right: 12px;
|
|
5893
|
-
position: relative;
|
|
5894
|
-
width: 100%;
|
|
5895
5901
|
}
|
|
5896
|
-
@
|
|
5897
|
-
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5898
|
-
min-width: 193px;
|
|
5899
|
-
padding-left: 12px;
|
|
5900
|
-
padding-right: 12px;
|
|
5901
|
-
}
|
|
5902
|
-
}
|
|
5903
|
-
@media (min-width: 576px) {
|
|
5902
|
+
@container c-card-page (min-width: 540px) {
|
|
5904
5903
|
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5905
5904
|
flex-basis: 50%;
|
|
5906
5905
|
max-width: 50%;
|
|
5907
5906
|
}
|
|
5908
5907
|
}
|
|
5909
|
-
@
|
|
5908
|
+
@container c-card-page (min-width: 720px) {
|
|
5910
5909
|
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5911
|
-
flex-basis: 33.
|
|
5912
|
-
max-width: 33.
|
|
5910
|
+
flex-basis: 33.33333%;
|
|
5911
|
+
max-width: 33.33333%;
|
|
5913
5912
|
}
|
|
5914
5913
|
}
|
|
5915
|
-
@
|
|
5914
|
+
@container c-card-page (min-width: 960px) {
|
|
5916
5915
|
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5917
5916
|
flex-basis: 25%;
|
|
5918
5917
|
max-width: 25%;
|
|
5919
5918
|
}
|
|
5920
5919
|
}
|
|
5920
|
+
@container c-card-page (min-width: 1248px) {
|
|
5921
|
+
html:not(#__):not(#___) .cadmin .card-page-item-directory {
|
|
5922
|
+
flex-basis: 20%;
|
|
5923
|
+
max-width: 20%;
|
|
5924
|
+
}
|
|
5925
|
+
}
|
|
5921
5926
|
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5922
|
-
|
|
5923
|
-
|
|
5924
|
-
min-width: 193px;
|
|
5927
|
+
flex-basis: 100%;
|
|
5928
|
+
max-width: 100%;
|
|
5925
5929
|
padding-left: 12px;
|
|
5926
5930
|
padding-right: 12px;
|
|
5927
|
-
position: relative;
|
|
5928
|
-
width: 100%;
|
|
5929
5931
|
}
|
|
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) {
|
|
5932
|
+
@container c-card-page (min-width: 540px) {
|
|
5938
5933
|
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5939
5934
|
flex-basis: 50%;
|
|
5940
5935
|
max-width: 50%;
|
|
5941
5936
|
}
|
|
5942
5937
|
}
|
|
5943
|
-
@
|
|
5938
|
+
@container c-card-page (min-width: 720px) {
|
|
5944
5939
|
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5945
|
-
flex-basis: 33.
|
|
5946
|
-
max-width: 33.
|
|
5940
|
+
flex-basis: 33.33333%;
|
|
5941
|
+
max-width: 33.33333%;
|
|
5947
5942
|
}
|
|
5948
5943
|
}
|
|
5949
|
-
@
|
|
5944
|
+
@container c-card-page (min-width: 960px) {
|
|
5950
5945
|
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5951
5946
|
flex-basis: 25%;
|
|
5952
5947
|
max-width: 25%;
|
|
5953
5948
|
}
|
|
5954
5949
|
}
|
|
5950
|
+
@container c-card-page (min-width: 1248px) {
|
|
5951
|
+
html:not(#__):not(#___) .cadmin .card-page-item-asset {
|
|
5952
|
+
flex-basis: 20%;
|
|
5953
|
+
max-width: 20%;
|
|
5954
|
+
}
|
|
5955
|
+
}
|
|
5955
5956
|
html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
5956
|
-
|
|
5957
|
-
|
|
5958
|
-
flex-grow: 1;
|
|
5959
|
-
max-width: 50%;
|
|
5957
|
+
flex-basis: 100%;
|
|
5958
|
+
max-width: 100%;
|
|
5960
5959
|
padding-left: 12px;
|
|
5961
5960
|
padding-right: 12px;
|
|
5962
|
-
position: relative;
|
|
5963
|
-
width: 100%;
|
|
5964
5961
|
}
|
|
5965
|
-
@
|
|
5962
|
+
@container c-card-page (min-width: 540px) {
|
|
5966
5963
|
html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
5967
5964
|
flex-basis: 50%;
|
|
5968
5965
|
max-width: 50%;
|
|
5969
|
-
padding-left: 12px;
|
|
5970
|
-
padding-right: 12px;
|
|
5971
5966
|
}
|
|
5972
5967
|
}
|
|
5973
|
-
@
|
|
5968
|
+
@container c-card-page (min-width: 720px) {
|
|
5974
5969
|
html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
5975
5970
|
flex-basis: 33.33333%;
|
|
5976
5971
|
max-width: 33.33333%;
|
|
5977
|
-
min-width: 200px;
|
|
5978
5972
|
}
|
|
5979
5973
|
}
|
|
5980
|
-
@
|
|
5974
|
+
@container c-card-page (min-width: 960px) {
|
|
5975
|
+
html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
5976
|
+
flex-basis: 25%;
|
|
5977
|
+
max-width: 25%;
|
|
5978
|
+
}
|
|
5979
|
+
}
|
|
5980
|
+
@container c-card-page (min-width: 1248px) {
|
|
5981
5981
|
html:not(#__):not(#___) .cadmin .card-page-item-user {
|
|
5982
5982
|
flex-basis: 20%;
|
|
5983
5983
|
max-width: 20%;
|
|
@@ -28084,19 +28084,69 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin {
|
|
|
28084
28084
|
scroll-behavior: auto;
|
|
28085
28085
|
transition: none;
|
|
28086
28086
|
}
|
|
28087
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares {
|
|
28088
|
+
display: block;
|
|
28089
|
+
height: 1em;
|
|
28090
|
+
margin-left: auto;
|
|
28091
|
+
margin-right: auto;
|
|
28092
|
+
overflow: hidden;
|
|
28093
|
+
position: relative;
|
|
28094
|
+
text-align: left;
|
|
28095
|
+
vertical-align: middle;
|
|
28096
|
+
width: 1em;
|
|
28097
|
+
}
|
|
28087
28098
|
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::before {
|
|
28099
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
28088
28100
|
background-color: transparent;
|
|
28101
|
+
border-radius: 50%;
|
|
28102
|
+
box-shadow: -0.03125em -0.375em 0 0 currentColor;
|
|
28103
|
+
content: "";
|
|
28089
28104
|
display: block;
|
|
28090
28105
|
font-size: inherit;
|
|
28106
|
+
height: 0.25em;
|
|
28107
|
+
left: 50%;
|
|
28108
|
+
margin-left: -0.125em;
|
|
28109
|
+
margin-top: -0.125em;
|
|
28091
28110
|
opacity: inherit;
|
|
28111
|
+
position: absolute;
|
|
28112
|
+
top: 50%;
|
|
28092
28113
|
transform: none;
|
|
28114
|
+
width: 0.25em;
|
|
28093
28115
|
}
|
|
28116
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28117
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::before {
|
|
28118
|
+
animation: none;
|
|
28119
|
+
}
|
|
28120
|
+
}
|
|
28121
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .c-prefers-reduced-motion .cadmin .loading-animation-squares::before {
|
|
28122
|
+
animation: none;
|
|
28123
|
+
}
|
|
28124
|
+
|
|
28094
28125
|
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::after {
|
|
28126
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
28127
|
+
background-color: currentColor;
|
|
28128
|
+
border-radius: 50%;
|
|
28129
|
+
content: "";
|
|
28130
|
+
display: block;
|
|
28095
28131
|
font-size: inherit;
|
|
28132
|
+
height: 1em;
|
|
28096
28133
|
left: auto;
|
|
28134
|
+
-webkit-mask: conic-gradient(transparent 10%, #000), linear-gradient(#000 0 0) content-box;
|
|
28135
|
+
-webkit-mask-composite: source-out;
|
|
28136
|
+
mask-composite: subtract;
|
|
28137
|
+
padding: 0.25em;
|
|
28097
28138
|
position: relative;
|
|
28098
28139
|
top: auto;
|
|
28099
28140
|
transform: none;
|
|
28141
|
+
width: 1em;
|
|
28142
|
+
}
|
|
28143
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28144
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::after {
|
|
28145
|
+
animation: none;
|
|
28146
|
+
}
|
|
28147
|
+
}
|
|
28148
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .c-prefers-reduced-motion .cadmin .loading-animation-squares::after {
|
|
28149
|
+
animation: none;
|
|
28100
28150
|
}
|
|
28101
28151
|
|
|
28102
28152
|
@keyframes cadmin-loading-animation-circle {
|
|
@@ -28104,7 +28154,7 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squ
|
|
|
28104
28154
|
transform: rotate(360deg);
|
|
28105
28155
|
}
|
|
28106
28156
|
}
|
|
28107
|
-
html:not(#__):not(#___) .cadmin .loading-animation
|
|
28157
|
+
html:not(#__):not(#___) .cadmin .loading-animation {
|
|
28108
28158
|
display: block;
|
|
28109
28159
|
height: 1em;
|
|
28110
28160
|
margin-left: auto;
|
|
@@ -28115,7 +28165,7 @@ html:not(#__):not(#___) .cadmin .loading-animation, html:not(#__):not(#___) .c-p
|
|
|
28115
28165
|
vertical-align: middle;
|
|
28116
28166
|
width: 1em;
|
|
28117
28167
|
}
|
|
28118
|
-
html:not(#__):not(#___) .cadmin .loading-animation::before
|
|
28168
|
+
html:not(#__):not(#___) .cadmin .loading-animation::before {
|
|
28119
28169
|
animation: cadmin-loading-animation-circle 1s linear infinite;
|
|
28120
28170
|
border-radius: 50%;
|
|
28121
28171
|
box-shadow: -0.03125em -0.375em 0 0 currentColor;
|
|
@@ -28129,15 +28179,15 @@ html:not(#__):not(#___) .cadmin .loading-animation::before, html:not(#__):not(#_
|
|
|
28129
28179
|
width: 0.25em;
|
|
28130
28180
|
}
|
|
28131
28181
|
@media (prefers-reduced-motion: reduce) {
|
|
28132
|
-
html:not(#__):not(#___) .cadmin .loading-animation::before
|
|
28182
|
+
html:not(#__):not(#___) .cadmin .loading-animation::before {
|
|
28133
28183
|
animation: none;
|
|
28134
28184
|
}
|
|
28135
28185
|
}
|
|
28136
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation::before
|
|
28186
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation::before {
|
|
28137
28187
|
animation: none;
|
|
28138
28188
|
}
|
|
28139
28189
|
|
|
28140
|
-
html:not(#__):not(#___) .cadmin .loading-animation::after
|
|
28190
|
+
html:not(#__):not(#___) .cadmin .loading-animation::after {
|
|
28141
28191
|
animation: cadmin-loading-animation-circle 1s linear infinite;
|
|
28142
28192
|
background-color: currentColor;
|
|
28143
28193
|
border-radius: 50%;
|
|
@@ -28151,11 +28201,11 @@ html:not(#__):not(#___) .cadmin .loading-animation::after, html:not(#__):not(#__
|
|
|
28151
28201
|
width: 1em;
|
|
28152
28202
|
}
|
|
28153
28203
|
@media (prefers-reduced-motion: reduce) {
|
|
28154
|
-
html:not(#__):not(#___) .cadmin .loading-animation::after
|
|
28204
|
+
html:not(#__):not(#___) .cadmin .loading-animation::after {
|
|
28155
28205
|
animation: none;
|
|
28156
28206
|
}
|
|
28157
28207
|
}
|
|
28158
|
-
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation::after
|
|
28208
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation::after {
|
|
28159
28209
|
animation: none;
|
|
28160
28210
|
}
|
|
28161
28211
|
|
|
@@ -28269,6 +28319,77 @@ html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squ
|
|
|
28269
28319
|
animation: none;
|
|
28270
28320
|
}
|
|
28271
28321
|
|
|
28322
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28323
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares {
|
|
28324
|
+
display: block;
|
|
28325
|
+
height: 1em;
|
|
28326
|
+
margin-left: auto;
|
|
28327
|
+
margin-right: auto;
|
|
28328
|
+
overflow: hidden;
|
|
28329
|
+
position: relative;
|
|
28330
|
+
text-align: left;
|
|
28331
|
+
vertical-align: middle;
|
|
28332
|
+
width: 1em;
|
|
28333
|
+
}
|
|
28334
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares::before {
|
|
28335
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
28336
|
+
background-color: transparent;
|
|
28337
|
+
border-radius: 50%;
|
|
28338
|
+
box-shadow: -0.03125em -0.375em 0 0 currentColor;
|
|
28339
|
+
content: "";
|
|
28340
|
+
display: block;
|
|
28341
|
+
font-size: inherit;
|
|
28342
|
+
height: 0.25em;
|
|
28343
|
+
left: 50%;
|
|
28344
|
+
margin-left: -0.125em;
|
|
28345
|
+
margin-top: -0.125em;
|
|
28346
|
+
opacity: inherit;
|
|
28347
|
+
position: absolute;
|
|
28348
|
+
top: 50%;
|
|
28349
|
+
transform: none;
|
|
28350
|
+
width: 0.25em;
|
|
28351
|
+
}
|
|
28352
|
+
}
|
|
28353
|
+
@media (prefers-reduced-motion: reduce) and (prefers-reduced-motion: reduce) {
|
|
28354
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares::before {
|
|
28355
|
+
animation: none;
|
|
28356
|
+
}
|
|
28357
|
+
}
|
|
28358
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28359
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::before {
|
|
28360
|
+
animation: none;
|
|
28361
|
+
}
|
|
28362
|
+
}
|
|
28363
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28364
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares::after {
|
|
28365
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
28366
|
+
background-color: currentColor;
|
|
28367
|
+
border-radius: 50%;
|
|
28368
|
+
content: "";
|
|
28369
|
+
display: block;
|
|
28370
|
+
font-size: inherit;
|
|
28371
|
+
height: 1em;
|
|
28372
|
+
left: auto;
|
|
28373
|
+
-webkit-mask: conic-gradient(transparent 10%, #000), linear-gradient(#000 0 0) content-box;
|
|
28374
|
+
-webkit-mask-composite: source-out;
|
|
28375
|
+
mask-composite: subtract;
|
|
28376
|
+
padding: 0.25em;
|
|
28377
|
+
position: relative;
|
|
28378
|
+
top: auto;
|
|
28379
|
+
transform: none;
|
|
28380
|
+
width: 1em;
|
|
28381
|
+
}
|
|
28382
|
+
}
|
|
28383
|
+
@media (prefers-reduced-motion: reduce) and (prefers-reduced-motion: reduce) {
|
|
28384
|
+
html:not(#__):not(#___) .cadmin .loading-animation-squares::after {
|
|
28385
|
+
animation: none;
|
|
28386
|
+
}
|
|
28387
|
+
}
|
|
28388
|
+
@media (prefers-reduced-motion: reduce) {
|
|
28389
|
+
html:not(#__):not(#___) .c-prefers-reduced-motion .cadmin .loading-animation-squares::after {
|
|
28390
|
+
animation: none;
|
|
28391
|
+
}
|
|
28392
|
+
}
|
|
28272
28393
|
html:not(#__):not(#___) .cadmin .loading-animation-xs {
|
|
28273
28394
|
font-size: 10px;
|
|
28274
28395
|
}
|