@clayui/css 3.128.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 +193 -70
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +192 -76
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +196 -71
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/send.svg +9 -0
- package/lib/images/icons/speed.svg +10 -0
- package/lib/images/icons/voice.svg +9 -0
- package/package.json +2 -2
- package/src/images/icons/send.svg +9 -0
- package/src/images/icons/speed.svg +10 -0
- package/src/images/icons/voice.svg +9 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_forms.scss +1 -0
- package/src/scss/cadmin/components/_cards.scss +4 -4
- package/src/scss/cadmin/components/_dropdowns.scss +10 -0
- package/src/scss/cadmin/components/_forms.scss +16 -14
- package/src/scss/cadmin/components/_grid.scss +1 -0
- package/src/scss/cadmin/components/_input-groups.scss +12 -1
- package/src/scss/cadmin/components/_type.scss +5 -1
- package/src/scss/cadmin/components/_utilities-functional-important.scss +9 -0
- package/src/scss/cadmin/variables/_cards.scss +24 -38
- package/src/scss/cadmin/variables/_custom-forms.scss +1 -1
- package/src/scss/cadmin/variables/_forms.scss +15 -0
- package/src/scss/cadmin/variables/_loaders.scss +48 -0
- package/src/scss/components/_cards.scss +4 -4
- package/src/scss/components/_dropdowns.scss +10 -0
- package/src/scss/components/_forms.scss +16 -14
- package/src/scss/components/_grid.scss +1 -0
- package/src/scss/components/_input-groups.scss +12 -1
- package/src/scss/components/_type.scss +5 -1
- package/src/scss/components/_utilities-functional-important.scss +6 -0
- package/src/scss/functions/_lx-icons-generated.scss +6 -0
- package/src/scss/mixins/_forms.scss +0 -13
- 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/_custom-forms.scss +1 -1
- package/src/scss/variables/_forms.scss +10 -0
- package/src/scss/variables/_loaders.scss +48 -0
package/lib/css/atlas.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>
|
|
@@ -389,7 +389,7 @@ mark.clay-dark,
|
|
|
389
389
|
background-color: #393a4a;
|
|
390
390
|
color: #fff;
|
|
391
391
|
}
|
|
392
|
-
.list-unstyled {
|
|
392
|
+
.dropdown-section-grid, .list-unstyled {
|
|
393
393
|
list-style: none;
|
|
394
394
|
padding-left: 0;
|
|
395
395
|
}
|
|
@@ -3590,6 +3590,7 @@ input[type=button].btn-block {
|
|
|
3590
3590
|
}
|
|
3591
3591
|
|
|
3592
3592
|
.card-page {
|
|
3593
|
+
container-type: inline-size;
|
|
3593
3594
|
display: flex;
|
|
3594
3595
|
flex-wrap: wrap;
|
|
3595
3596
|
list-style: none;
|
|
@@ -6454,6 +6455,10 @@ input[type=button].btn-block {
|
|
|
6454
6455
|
transform: none;
|
|
6455
6456
|
}
|
|
6456
6457
|
|
|
6458
|
+
.card-page {
|
|
6459
|
+
container-name: c-card-page;
|
|
6460
|
+
container-type: inline-size;
|
|
6461
|
+
}
|
|
6457
6462
|
.card-page.card-page-equal-height .card-page-item,
|
|
6458
6463
|
.card-page.card-page-equal-height .card-page-item-asset,
|
|
6459
6464
|
.card-page.card-page-equal-height .card-page-item-directory {
|
|
@@ -6476,101 +6481,74 @@ input[type=button].btn-block {
|
|
|
6476
6481
|
}
|
|
6477
6482
|
|
|
6478
6483
|
.card-page-item-directory {
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
min-width: 193px;
|
|
6484
|
+
flex-basis: 100%;
|
|
6485
|
+
max-width: 100%;
|
|
6482
6486
|
padding-left: 12px;
|
|
6483
6487
|
padding-right: 12px;
|
|
6484
|
-
position: relative;
|
|
6485
|
-
width: 100%;
|
|
6486
|
-
}
|
|
6487
|
-
@media (min-width: 0) {
|
|
6488
|
-
.card-page-item-directory {
|
|
6489
|
-
min-width: 193px;
|
|
6490
|
-
padding-left: 12px;
|
|
6491
|
-
padding-right: 12px;
|
|
6492
|
-
}
|
|
6493
6488
|
}
|
|
6494
|
-
@
|
|
6489
|
+
@container c-card-page (min-width: 540px) {
|
|
6495
6490
|
.card-page-item-directory {
|
|
6496
6491
|
flex-basis: 50%;
|
|
6497
6492
|
max-width: 50%;
|
|
6498
6493
|
}
|
|
6499
6494
|
}
|
|
6500
|
-
@
|
|
6495
|
+
@container c-card-page (min-width: 960px) {
|
|
6501
6496
|
.card-page-item-directory {
|
|
6502
|
-
flex-basis:
|
|
6503
|
-
max-width:
|
|
6497
|
+
flex-basis: 25%;
|
|
6498
|
+
max-width: 25%;
|
|
6504
6499
|
}
|
|
6505
6500
|
}
|
|
6506
|
-
@
|
|
6501
|
+
@container c-card-page (min-width: 1392px) {
|
|
6507
6502
|
.card-page-item-directory {
|
|
6508
|
-
flex-basis:
|
|
6509
|
-
max-width:
|
|
6503
|
+
flex-basis: 20%;
|
|
6504
|
+
max-width: 20%;
|
|
6510
6505
|
}
|
|
6511
6506
|
}
|
|
6512
6507
|
|
|
6513
6508
|
.card-page-item-asset {
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
min-width: 193px;
|
|
6509
|
+
flex-basis: 100%;
|
|
6510
|
+
max-width: 100%;
|
|
6517
6511
|
padding-left: 12px;
|
|
6518
6512
|
padding-right: 12px;
|
|
6519
|
-
position: relative;
|
|
6520
|
-
width: 100%;
|
|
6521
|
-
}
|
|
6522
|
-
@media (min-width: 0) {
|
|
6523
|
-
.card-page-item-asset {
|
|
6524
|
-
min-width: 193px;
|
|
6525
|
-
padding-left: 12px;
|
|
6526
|
-
padding-right: 12px;
|
|
6527
|
-
}
|
|
6528
6513
|
}
|
|
6529
|
-
@
|
|
6514
|
+
@container c-card-page (min-width: 540px) {
|
|
6530
6515
|
.card-page-item-asset {
|
|
6531
6516
|
flex-basis: 50%;
|
|
6532
6517
|
max-width: 50%;
|
|
6533
6518
|
}
|
|
6534
6519
|
}
|
|
6535
|
-
@
|
|
6520
|
+
@container c-card-page (min-width: 960px) {
|
|
6536
6521
|
.card-page-item-asset {
|
|
6537
|
-
flex-basis:
|
|
6538
|
-
max-width:
|
|
6522
|
+
flex-basis: 25%;
|
|
6523
|
+
max-width: 25%;
|
|
6539
6524
|
}
|
|
6540
6525
|
}
|
|
6541
|
-
@
|
|
6526
|
+
@container c-card-page (min-width: 1392px) {
|
|
6542
6527
|
.card-page-item-asset {
|
|
6543
|
-
flex-basis:
|
|
6544
|
-
max-width:
|
|
6528
|
+
flex-basis: 20%;
|
|
6529
|
+
max-width: 20%;
|
|
6545
6530
|
}
|
|
6546
6531
|
}
|
|
6547
6532
|
|
|
6548
6533
|
.card-page-item-user {
|
|
6549
|
-
|
|
6550
|
-
|
|
6551
|
-
flex-grow: 1;
|
|
6552
|
-
max-width: 50%;
|
|
6534
|
+
flex-basis: 100%;
|
|
6535
|
+
max-width: 100%;
|
|
6553
6536
|
padding-left: 12px;
|
|
6554
6537
|
padding-right: 12px;
|
|
6555
|
-
position: relative;
|
|
6556
|
-
width: 100%;
|
|
6557
6538
|
}
|
|
6558
|
-
@
|
|
6539
|
+
@container c-card-page (min-width: 540px) {
|
|
6559
6540
|
.card-page-item-user {
|
|
6560
6541
|
flex-basis: 50%;
|
|
6561
6542
|
max-width: 50%;
|
|
6562
|
-
padding-left: 12px;
|
|
6563
|
-
padding-right: 12px;
|
|
6564
6543
|
}
|
|
6565
6544
|
}
|
|
6566
|
-
@
|
|
6545
|
+
@container c-card-page (min-width: 960px) {
|
|
6567
6546
|
.card-page-item-user {
|
|
6568
|
-
flex-basis:
|
|
6569
|
-
max-width:
|
|
6570
|
-
min-width: 200px;
|
|
6547
|
+
flex-basis: 25%;
|
|
6548
|
+
max-width: 25%;
|
|
6571
6549
|
}
|
|
6572
6550
|
}
|
|
6573
|
-
@
|
|
6551
|
+
@container c-card-page (min-width: 1392px) {
|
|
6574
6552
|
.card-page-item-user {
|
|
6575
6553
|
flex-basis: 20%;
|
|
6576
6554
|
max-width: 20%;
|
|
@@ -7040,6 +7018,14 @@ input[type=button].btn-block {
|
|
|
7040
7018
|
color: #272833;
|
|
7041
7019
|
}
|
|
7042
7020
|
|
|
7021
|
+
.dropdown-section-grid {
|
|
7022
|
+
display: grid;
|
|
7023
|
+
gap: 0.5rem 0.75rem;
|
|
7024
|
+
grid-template-columns: repeat(9, 1fr);
|
|
7025
|
+
margin-bottom: 0;
|
|
7026
|
+
padding: 0.375rem 1rem;
|
|
7027
|
+
}
|
|
7028
|
+
|
|
7043
7029
|
.dropdown-footer {
|
|
7044
7030
|
box-shadow: -1px -2px 3px -3px rgba(0, 0, 0, 0.5);
|
|
7045
7031
|
padding: 0.5rem 1rem 0;
|
|
@@ -8195,7 +8181,6 @@ select.form-control {
|
|
|
8195
8181
|
background-size: 1.5em 1.5em;
|
|
8196
8182
|
cursor: pointer;
|
|
8197
8183
|
padding-right: 2em;
|
|
8198
|
-
color: #272833;
|
|
8199
8184
|
}
|
|
8200
8185
|
select.form-control.focus, select.form-control:focus-visible, .c-prefers-focus select.form-control:focus {
|
|
8201
8186
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%236b6c7e'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%236b6c7e'/%3E%3C/svg%3E");
|
|
@@ -8247,7 +8232,6 @@ select.form-control[size] {
|
|
|
8247
8232
|
padding-left: 0.5rem;
|
|
8248
8233
|
padding-right: 0.5rem;
|
|
8249
8234
|
scrollbar-width: thin;
|
|
8250
|
-
color: #272833;
|
|
8251
8235
|
}
|
|
8252
8236
|
select.form-control[size].focus, select.form-control[size]:focus-visible, .c-prefers-focus select.form-control[size]:focus {
|
|
8253
8237
|
background-image: none;
|
|
@@ -8283,7 +8267,6 @@ select.form-control[multiple] {
|
|
|
8283
8267
|
padding-left: 0.5rem;
|
|
8284
8268
|
padding-right: 0.5rem;
|
|
8285
8269
|
scrollbar-width: thin;
|
|
8286
|
-
color: #272833;
|
|
8287
8270
|
}
|
|
8288
8271
|
select.form-control[multiple].focus, select.form-control[multiple]:focus-visible, .c-prefers-focus select.form-control[multiple]:focus {
|
|
8289
8272
|
background-image: none;
|
|
@@ -8312,8 +8295,14 @@ select.form-control[multiple] option:checked {
|
|
|
8312
8295
|
}
|
|
8313
8296
|
}
|
|
8314
8297
|
|
|
8298
|
+
.form-control-shrink {
|
|
8299
|
+
max-width: 100%;
|
|
8300
|
+
white-space: nowrap;
|
|
8301
|
+
width: min-content;
|
|
8302
|
+
}
|
|
8315
8303
|
.form-control-select-secondary {
|
|
8316
8304
|
background-color: #fff;
|
|
8305
|
+
border-color: #9b92a5;
|
|
8317
8306
|
color: #6b6c7e;
|
|
8318
8307
|
}
|
|
8319
8308
|
.form-control-select-secondary:hover, .form-control-select-secondary.hover {
|
|
@@ -10257,7 +10246,7 @@ label.custom-control-label {
|
|
|
10257
10246
|
}
|
|
10258
10247
|
|
|
10259
10248
|
.custom-control-outside label {
|
|
10260
|
-
display: block;
|
|
10249
|
+
display: inline-block;
|
|
10261
10250
|
padding-left: calc( 1rem + 0.5rem );
|
|
10262
10251
|
}
|
|
10263
10252
|
.custom-control-outside .custom-control-label-text {
|
|
@@ -10835,7 +10824,6 @@ label.custom-control-label {
|
|
|
10835
10824
|
.date-picker-nav select.form-control {
|
|
10836
10825
|
font-size: 0.75rem;
|
|
10837
10826
|
height: 1.5rem;
|
|
10838
|
-
color: #272833;
|
|
10839
10827
|
}
|
|
10840
10828
|
}
|
|
10841
10829
|
.date-picker-nav select.form-control:hover, .date-picker-nav select.form-control.hover {
|
|
@@ -10865,7 +10853,6 @@ label.custom-control-label {
|
|
|
10865
10853
|
.date-picker-nav .form-control-select {
|
|
10866
10854
|
font-size: 0.75rem;
|
|
10867
10855
|
height: 1.5rem;
|
|
10868
|
-
color: #272833;
|
|
10869
10856
|
}
|
|
10870
10857
|
}
|
|
10871
10858
|
.date-picker-nav .form-control-select:hover, .date-picker-nav .form-control-select.hover {
|
|
@@ -11399,15 +11386,12 @@ label.custom-control-label {
|
|
|
11399
11386
|
}
|
|
11400
11387
|
.has-error select.form-control {
|
|
11401
11388
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%23f48989'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%23f48989'/%3E%3C/svg%3E");
|
|
11402
|
-
color: #272833;
|
|
11403
11389
|
}
|
|
11404
11390
|
.has-error select.form-control[size] {
|
|
11405
11391
|
background-image: none;
|
|
11406
|
-
color: #272833;
|
|
11407
11392
|
}
|
|
11408
11393
|
.has-error select.form-control[multiple] {
|
|
11409
11394
|
background-image: none;
|
|
11410
|
-
color: #272833;
|
|
11411
11395
|
}
|
|
11412
11396
|
.has-error .input-group-item.focus {
|
|
11413
11397
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
@@ -11458,15 +11442,12 @@ label.custom-control-label {
|
|
|
11458
11442
|
}
|
|
11459
11443
|
.has-warning select.form-control {
|
|
11460
11444
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%23ff8f39'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%23ff8f39'/%3E%3C/svg%3E");
|
|
11461
|
-
color: #272833;
|
|
11462
11445
|
}
|
|
11463
11446
|
.has-warning select.form-control[size] {
|
|
11464
11447
|
background-image: none;
|
|
11465
|
-
color: #272833;
|
|
11466
11448
|
}
|
|
11467
11449
|
.has-warning select.form-control[multiple] {
|
|
11468
11450
|
background-image: none;
|
|
11469
|
-
color: #272833;
|
|
11470
11451
|
}
|
|
11471
11452
|
.has-warning .input-group-item.focus {
|
|
11472
11453
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
@@ -11517,15 +11498,12 @@ label.custom-control-label {
|
|
|
11517
11498
|
}
|
|
11518
11499
|
.has-success select.form-control {
|
|
11519
11500
|
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-top'%20d='m347.913%20199.336-81.538-85c-5.413-5.642-14.188-5.642-19.6%200l-81.538%2085c-8.731%209.101-2.548%2024.664%209.8%2024.664h163.077c12.348%200%2018.531-15.563%209.8-24.664z'%20fill='%235aca75'/%3E%3Cpath%20class='lexicon-icon-outline%20caret-double-l-bottom'%20d='m165.236%20312.664%2081.538%2085c5.412%205.642%2014.188%205.642%2019.6%200l81.538-85c8.731-9.101%202.548-24.664-9.8-24.664H175.035c-12.347%200-18.531%2015.563-9.8%2024.664z'%20fill='%235aca75'/%3E%3C/svg%3E");
|
|
11520
|
-
color: #272833;
|
|
11521
11501
|
}
|
|
11522
11502
|
.has-success select.form-control[size] {
|
|
11523
11503
|
background-image: none;
|
|
11524
|
-
color: #272833;
|
|
11525
11504
|
}
|
|
11526
11505
|
.has-success select.form-control[multiple] {
|
|
11527
11506
|
background-image: none;
|
|
11528
|
-
color: #272833;
|
|
11529
11507
|
}
|
|
11530
11508
|
.has-success .input-group-item.focus {
|
|
11531
11509
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #5791ff;
|
|
@@ -12090,7 +12068,8 @@ label.custom-control-label {
|
|
|
12090
12068
|
.input-group .input-group-inset-item .btn .c-inner .lexicon-icon {
|
|
12091
12069
|
margin-top: 0;
|
|
12092
12070
|
}
|
|
12093
|
-
.input-group .input-group-inset-item .btn-monospaced
|
|
12071
|
+
.input-group .input-group-inset-item .btn-monospaced,
|
|
12072
|
+
.input-group .input-group-inset-item .input-group-inset-icon {
|
|
12094
12073
|
font-size: 1rem;
|
|
12095
12074
|
height: 2rem;
|
|
12096
12075
|
margin-bottom: -0.0625rem;
|
|
@@ -12104,6 +12083,14 @@ label.custom-control-label {
|
|
|
12104
12083
|
.input-group .input-group-inset-item .form-file .btn {
|
|
12105
12084
|
height: 100%;
|
|
12106
12085
|
}
|
|
12086
|
+
.input-group .input-group-inset-icon {
|
|
12087
|
+
align-items: center;
|
|
12088
|
+
display: flex;
|
|
12089
|
+
justify-content: center;
|
|
12090
|
+
}
|
|
12091
|
+
.input-group .input-group-inset-icon .lexicon-icon {
|
|
12092
|
+
margin-top: 0;
|
|
12093
|
+
}
|
|
12107
12094
|
.input-group .input-group-item .input-group-inset-before.form-control {
|
|
12108
12095
|
border-bottom-left-radius: 0;
|
|
12109
12096
|
border-top-left-radius: 0;
|
|
@@ -34834,6 +34821,70 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
34834
34821
|
scroll-behavior: auto;
|
|
34835
34822
|
transition: none;
|
|
34836
34823
|
}
|
|
34824
|
+
.c-prefers-reduced-motion .loading-animation-squares {
|
|
34825
|
+
display: block;
|
|
34826
|
+
height: 1em;
|
|
34827
|
+
margin-left: auto;
|
|
34828
|
+
margin-right: auto;
|
|
34829
|
+
overflow: hidden;
|
|
34830
|
+
position: relative;
|
|
34831
|
+
text-align: left;
|
|
34832
|
+
vertical-align: middle;
|
|
34833
|
+
width: 1em;
|
|
34834
|
+
}
|
|
34835
|
+
.c-prefers-reduced-motion .loading-animation-squares::before {
|
|
34836
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
34837
|
+
background-color: transparent;
|
|
34838
|
+
border-radius: 50%;
|
|
34839
|
+
box-shadow: -0.03125em -0.375em 0 0 currentColor;
|
|
34840
|
+
content: "";
|
|
34841
|
+
display: block;
|
|
34842
|
+
font-size: inherit;
|
|
34843
|
+
height: 0.25em;
|
|
34844
|
+
left: 50%;
|
|
34845
|
+
margin-left: -0.125em;
|
|
34846
|
+
margin-top: -0.125em;
|
|
34847
|
+
opacity: inherit;
|
|
34848
|
+
position: absolute;
|
|
34849
|
+
top: 50%;
|
|
34850
|
+
transform: none;
|
|
34851
|
+
width: 0.25em;
|
|
34852
|
+
}
|
|
34853
|
+
@media (prefers-reduced-motion: reduce) {
|
|
34854
|
+
.c-prefers-reduced-motion .loading-animation-squares::before {
|
|
34855
|
+
animation: none;
|
|
34856
|
+
}
|
|
34857
|
+
}
|
|
34858
|
+
.c-prefers-reduced-motion .c-prefers-reduced-motion .loading-animation-squares::before {
|
|
34859
|
+
animation: none;
|
|
34860
|
+
}
|
|
34861
|
+
|
|
34862
|
+
.c-prefers-reduced-motion .loading-animation-squares::after {
|
|
34863
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
34864
|
+
background-color: currentColor;
|
|
34865
|
+
border-radius: 50%;
|
|
34866
|
+
content: "";
|
|
34867
|
+
display: block;
|
|
34868
|
+
font-size: inherit;
|
|
34869
|
+
height: 1em;
|
|
34870
|
+
left: auto;
|
|
34871
|
+
-webkit-mask: conic-gradient(transparent 10%, #000), linear-gradient(#000 0 0) content-box;
|
|
34872
|
+
-webkit-mask-composite: source-out;
|
|
34873
|
+
mask-composite: subtract;
|
|
34874
|
+
padding: 0.25em;
|
|
34875
|
+
position: relative;
|
|
34876
|
+
top: auto;
|
|
34877
|
+
transform: none;
|
|
34878
|
+
width: 1em;
|
|
34879
|
+
}
|
|
34880
|
+
@media (prefers-reduced-motion: reduce) {
|
|
34881
|
+
.c-prefers-reduced-motion .loading-animation-squares::after {
|
|
34882
|
+
animation: none;
|
|
34883
|
+
}
|
|
34884
|
+
}
|
|
34885
|
+
.c-prefers-reduced-motion .c-prefers-reduced-motion .loading-animation-squares::after {
|
|
34886
|
+
animation: none;
|
|
34887
|
+
}
|
|
34837
34888
|
|
|
34838
34889
|
@keyframes loading-animation-circle {
|
|
34839
34890
|
100% {
|
|
@@ -35005,6 +35056,78 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
35005
35056
|
animation: none;
|
|
35006
35057
|
}
|
|
35007
35058
|
|
|
35059
|
+
@media (prefers-reduced-motion: reduce) {
|
|
35060
|
+
.loading-animation-squares {
|
|
35061
|
+
display: block;
|
|
35062
|
+
height: 1em;
|
|
35063
|
+
margin-left: auto;
|
|
35064
|
+
margin-right: auto;
|
|
35065
|
+
overflow: hidden;
|
|
35066
|
+
position: relative;
|
|
35067
|
+
text-align: left;
|
|
35068
|
+
vertical-align: middle;
|
|
35069
|
+
width: 1em;
|
|
35070
|
+
}
|
|
35071
|
+
.loading-animation-squares::before {
|
|
35072
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
35073
|
+
background-color: transparent;
|
|
35074
|
+
border-radius: 50%;
|
|
35075
|
+
box-shadow: -0.03125em -0.375em 0 0 currentColor;
|
|
35076
|
+
content: "";
|
|
35077
|
+
display: block;
|
|
35078
|
+
font-size: inherit;
|
|
35079
|
+
height: 0.25em;
|
|
35080
|
+
left: 50%;
|
|
35081
|
+
margin-left: -0.125em;
|
|
35082
|
+
margin-top: -0.125em;
|
|
35083
|
+
opacity: inherit;
|
|
35084
|
+
position: absolute;
|
|
35085
|
+
top: 50%;
|
|
35086
|
+
transform: none;
|
|
35087
|
+
width: 0.25em;
|
|
35088
|
+
}
|
|
35089
|
+
}
|
|
35090
|
+
@media (prefers-reduced-motion: reduce) and (prefers-reduced-motion: reduce) {
|
|
35091
|
+
.loading-animation-squares::before {
|
|
35092
|
+
animation: none;
|
|
35093
|
+
}
|
|
35094
|
+
}
|
|
35095
|
+
@media (prefers-reduced-motion: reduce) {
|
|
35096
|
+
.c-prefers-reduced-motion .loading-animation-squares::before {
|
|
35097
|
+
animation: none;
|
|
35098
|
+
}
|
|
35099
|
+
}
|
|
35100
|
+
@media (prefers-reduced-motion: reduce) {
|
|
35101
|
+
.loading-animation-squares::after {
|
|
35102
|
+
animation: loading-animation-circle 1s linear infinite;
|
|
35103
|
+
background-color: currentColor;
|
|
35104
|
+
border-radius: 50%;
|
|
35105
|
+
content: "";
|
|
35106
|
+
display: block;
|
|
35107
|
+
font-size: inherit;
|
|
35108
|
+
height: 1em;
|
|
35109
|
+
left: auto;
|
|
35110
|
+
-webkit-mask: conic-gradient(transparent 10%, #000), linear-gradient(#000 0 0) content-box;
|
|
35111
|
+
-webkit-mask-composite: source-out;
|
|
35112
|
+
mask-composite: subtract;
|
|
35113
|
+
padding: 0.25em;
|
|
35114
|
+
position: relative;
|
|
35115
|
+
top: auto;
|
|
35116
|
+
transform: none;
|
|
35117
|
+
width: 1em;
|
|
35118
|
+
}
|
|
35119
|
+
}
|
|
35120
|
+
@media (prefers-reduced-motion: reduce) and (prefers-reduced-motion: reduce) {
|
|
35121
|
+
.loading-animation-squares::after {
|
|
35122
|
+
animation: none;
|
|
35123
|
+
}
|
|
35124
|
+
}
|
|
35125
|
+
@media (prefers-reduced-motion: reduce) {
|
|
35126
|
+
.c-prefers-reduced-motion .loading-animation-squares::after {
|
|
35127
|
+
animation: none;
|
|
35128
|
+
}
|
|
35129
|
+
}
|
|
35130
|
+
|
|
35008
35131
|
.loading-animation-xs {
|
|
35009
35132
|
font-size: 0.625rem;
|
|
35010
35133
|
}
|