@clayui/css 3.93.0 → 3.94.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 -34
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +36 -1
- package/lib/css/base.css.map +1 -1
- package/lib/css/cadmin.css +37 -7
- 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/atlas/variables/_custom-forms.scss +4 -5
- package/src/scss/atlas/variables/_menubar.scss +57 -17
- package/src/scss/atlas/variables/_pagination.scss +78 -5
- package/src/scss/cadmin/components/_utilities-functional-important.scss +4 -0
- package/src/scss/cadmin/variables/_utilities.scss +35 -0
- package/src/scss/components/_utilities-functional-important.scss +4 -0
- package/src/scss/mixins/_globals.scss +66 -12
- package/src/scss/mixins/_transition.scss +13 -5
- package/src/scss/variables/_utilities.scss +35 -0
package/lib/css/atlas.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.94.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>
|
|
@@ -13155,9 +13155,10 @@ label.custom-control-label {
|
|
|
13155
13155
|
}
|
|
13156
13156
|
}
|
|
13157
13157
|
.menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
13158
|
-
border-radius: 0.
|
|
13158
|
+
border-radius: 0.25rem;
|
|
13159
13159
|
color: #6b6c7e;
|
|
13160
13160
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
13161
|
+
margin-bottom: 0.25rem;
|
|
13161
13162
|
}
|
|
13162
13163
|
@media (prefers-reduced-motion: reduce) {
|
|
13163
13164
|
.menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
@@ -13169,21 +13170,34 @@ label.custom-control-label {
|
|
|
13169
13170
|
}
|
|
13170
13171
|
|
|
13171
13172
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:hover, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
|
|
13172
|
-
background-color: rgba(
|
|
13173
|
+
background-color: rgba(39, 40, 51, 0.04);
|
|
13173
13174
|
color: #272833;
|
|
13175
|
+
box-shadow: inset 0.125rem 0 0 0 #88889a;
|
|
13176
|
+
font-weight: 600;
|
|
13174
13177
|
}
|
|
13175
13178
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.focus, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
13176
|
-
background-color: rgba(11, 95, 255, 0.04);
|
|
13177
|
-
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
13178
13179
|
color: #272833;
|
|
13179
13180
|
outline: 0;
|
|
13180
13181
|
}
|
|
13182
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link.focus::after, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus::after {
|
|
13183
|
+
border-radius: 0.25rem;
|
|
13184
|
+
bottom: 0;
|
|
13185
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
|
|
13186
|
+
content: "";
|
|
13187
|
+
display: block;
|
|
13188
|
+
left: 0;
|
|
13189
|
+
pointer-events: none;
|
|
13190
|
+
position: absolute;
|
|
13191
|
+
right: 0;
|
|
13192
|
+
top: 0;
|
|
13193
|
+
}
|
|
13181
13194
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:active {
|
|
13182
13195
|
color: rgba(0, 0, 0, 0.9);
|
|
13183
13196
|
}
|
|
13184
13197
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
13185
13198
|
font-weight: 600;
|
|
13186
13199
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13200
|
+
box-shadow: inset 0.25rem 0 0 0 #528eff;
|
|
13187
13201
|
color: #272833;
|
|
13188
13202
|
}
|
|
13189
13203
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:disabled, .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled {
|
|
@@ -13226,22 +13240,31 @@ label.custom-control-label {
|
|
|
13226
13240
|
.menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
13227
13241
|
border-radius: 0;
|
|
13228
13242
|
color: #272833;
|
|
13243
|
+
margin-bottom: 0;
|
|
13229
13244
|
}
|
|
13230
13245
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:hover, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
|
|
13231
|
-
background-color: rgba(
|
|
13246
|
+
background-color: rgba(39, 40, 51, 0.04);
|
|
13232
13247
|
color: #1c1d25;
|
|
13248
|
+
box-shadow: none;
|
|
13233
13249
|
}
|
|
13234
13250
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.focus, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
13235
|
-
background-color:
|
|
13251
|
+
background-color: transparent;
|
|
13252
|
+
}
|
|
13253
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link.focus::after, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus::after {
|
|
13254
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
13236
13255
|
}
|
|
13237
13256
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
13238
13257
|
font-weight: 600;
|
|
13239
13258
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13259
|
+
box-shadow: none;
|
|
13240
13260
|
}
|
|
13241
13261
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:disabled, .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled {
|
|
13242
13262
|
background-color: transparent;
|
|
13243
13263
|
color: #6b6c7e;
|
|
13244
13264
|
}
|
|
13265
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true], .menubar-vertical-expand-md.menubar-transparent .nav-link.show {
|
|
13266
|
+
box-shadow: none;
|
|
13267
|
+
}
|
|
13245
13268
|
}
|
|
13246
13269
|
@media (min-width: 768px) {
|
|
13247
13270
|
.menubar-vertical-expand-md.menubar-decorated .nav {
|
|
@@ -13339,9 +13362,10 @@ label.custom-control-label {
|
|
|
13339
13362
|
}
|
|
13340
13363
|
}
|
|
13341
13364
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
13342
|
-
border-radius: 0.
|
|
13365
|
+
border-radius: 0.25rem;
|
|
13343
13366
|
color: #6b6c7e;
|
|
13344
13367
|
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
13368
|
+
margin-bottom: 0.25rem;
|
|
13345
13369
|
}
|
|
13346
13370
|
@media (prefers-reduced-motion: reduce) {
|
|
13347
13371
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
@@ -13353,21 +13377,34 @@ label.custom-control-label {
|
|
|
13353
13377
|
}
|
|
13354
13378
|
|
|
13355
13379
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
|
|
13356
|
-
background-color: rgba(
|
|
13380
|
+
background-color: rgba(39, 40, 51, 0.04);
|
|
13357
13381
|
color: #272833;
|
|
13382
|
+
box-shadow: inset 0.125rem 0 0 0 #88889a;
|
|
13383
|
+
font-weight: 600;
|
|
13358
13384
|
}
|
|
13359
13385
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.focus, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13360
13386
|
background-color: rgba(11, 95, 255, 0.04);
|
|
13361
|
-
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
13362
13387
|
color: #272833;
|
|
13363
13388
|
outline: 0;
|
|
13364
13389
|
}
|
|
13390
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link.focus::after, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus::after {
|
|
13391
|
+
border-radius: 0.25rem;
|
|
13392
|
+
bottom: 0;
|
|
13393
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
|
|
13394
|
+
content: "";
|
|
13395
|
+
display: block;
|
|
13396
|
+
left: 0;
|
|
13397
|
+
position: absolute;
|
|
13398
|
+
right: 0;
|
|
13399
|
+
top: 0;
|
|
13400
|
+
}
|
|
13365
13401
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:active {
|
|
13366
13402
|
color: rgba(0, 0, 0, 0.9);
|
|
13367
13403
|
}
|
|
13368
13404
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
13369
13405
|
font-weight: 600;
|
|
13370
13406
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13407
|
+
box-shadow: inset 0.25rem 0 0 0 #528eff;
|
|
13371
13408
|
color: #272833;
|
|
13372
13409
|
}
|
|
13373
13410
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled, .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled {
|
|
@@ -13410,23 +13447,32 @@ label.custom-control-label {
|
|
|
13410
13447
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
13411
13448
|
border-radius: 0;
|
|
13412
13449
|
color: #272833;
|
|
13450
|
+
margin-bottom: 0;
|
|
13413
13451
|
}
|
|
13414
13452
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
|
|
13415
|
-
background-color: rgba(
|
|
13453
|
+
background-color: rgba(39, 40, 51, 0.04);
|
|
13416
13454
|
color: #1c1d25;
|
|
13455
|
+
box-shadow: none;
|
|
13417
13456
|
}
|
|
13418
13457
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.focus, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13419
|
-
background-color:
|
|
13458
|
+
background-color: transparent;
|
|
13459
|
+
}
|
|
13460
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link.focus::after, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus::after {
|
|
13461
|
+
box-shadow: inset 0 0 0 0.125rem #528eff, inset 0 0 0 0.25rem #fff;
|
|
13420
13462
|
}
|
|
13421
13463
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
13422
13464
|
font-weight: 600;
|
|
13423
13465
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13466
|
+
box-shadow: none;
|
|
13424
13467
|
color: #272833;
|
|
13425
13468
|
}
|
|
13426
13469
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled, .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled {
|
|
13427
13470
|
background-color: transparent;
|
|
13428
13471
|
color: #6b6c7e;
|
|
13429
13472
|
}
|
|
13473
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true], .menubar-vertical-expand-lg.menubar-transparent .nav-link.show {
|
|
13474
|
+
box-shadow: none;
|
|
13475
|
+
}
|
|
13430
13476
|
}
|
|
13431
13477
|
@media (min-width: 992px) {
|
|
13432
13478
|
.menubar-vertical-expand-lg.menubar-decorated .nav {
|
|
@@ -17402,7 +17448,8 @@ label.custom-control-label {
|
|
|
17402
17448
|
padding-right: 0.625rem;
|
|
17403
17449
|
padding-top: 0;
|
|
17404
17450
|
position: relative;
|
|
17405
|
-
transition:
|
|
17451
|
+
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
|
|
17452
|
+
letter-spacing: 0.033em;
|
|
17406
17453
|
}
|
|
17407
17454
|
@media (prefers-reduced-motion: reduce) {
|
|
17408
17455
|
.page-link {
|
|
@@ -17414,31 +17461,48 @@ label.custom-control-label {
|
|
|
17414
17461
|
}
|
|
17415
17462
|
|
|
17416
17463
|
.page-link:hover, .page-link.hover {
|
|
17417
|
-
background-color: rgba(39, 40,
|
|
17464
|
+
background-color: rgba(39, 40, 51, 0.04);
|
|
17418
17465
|
border-color: transparent;
|
|
17419
17466
|
color: #272833;
|
|
17420
17467
|
text-decoration: none;
|
|
17421
17468
|
z-index: 2;
|
|
17469
|
+
box-shadow: inset 0 -0.125rem 0 0 #88889a;
|
|
17470
|
+
font-weight: 600;
|
|
17471
|
+
letter-spacing: 0;
|
|
17422
17472
|
}
|
|
17423
17473
|
.page-link.focus, .page-link:focus {
|
|
17424
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
|
|
17425
17474
|
outline: 0;
|
|
17426
17475
|
z-index: 4;
|
|
17427
|
-
background-color: rgba(39, 40, 41, 0.04);
|
|
17428
17476
|
border-color: transparent;
|
|
17429
17477
|
color: #272833;
|
|
17430
17478
|
}
|
|
17479
|
+
.page-link.focus::after, .page-link:focus::after {
|
|
17480
|
+
border-radius: 4px;
|
|
17481
|
+
bottom: 0;
|
|
17482
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
|
|
17483
|
+
content: "";
|
|
17484
|
+
display: block;
|
|
17485
|
+
left: 0;
|
|
17486
|
+
pointer-events: none;
|
|
17487
|
+
position: absolute;
|
|
17488
|
+
right: 0;
|
|
17489
|
+
top: 0;
|
|
17490
|
+
}
|
|
17431
17491
|
.page-link:active {
|
|
17432
|
-
background-color:
|
|
17492
|
+
background-color: rgba(11, 95, 255, 0.06);
|
|
17433
17493
|
border-color: transparent;
|
|
17434
|
-
color: #
|
|
17494
|
+
color: #272833;
|
|
17435
17495
|
cursor: default;
|
|
17436
17496
|
z-index: 3;
|
|
17497
|
+
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
17498
|
+
font-weight: 600;
|
|
17499
|
+
letter-spacing: 0;
|
|
17437
17500
|
}
|
|
17438
17501
|
.page-link.active {
|
|
17439
|
-
background-color:
|
|
17502
|
+
background-color: rgba(11, 95, 255, 0.06);
|
|
17440
17503
|
border-color: transparent;
|
|
17441
|
-
color: #
|
|
17504
|
+
color: #272833;
|
|
17505
|
+
font-weight: 600;
|
|
17442
17506
|
z-index: 3;
|
|
17443
17507
|
}
|
|
17444
17508
|
.page-link:disabled, .page-link.disabled {
|
|
@@ -17455,10 +17519,13 @@ label.custom-control-label {
|
|
|
17455
17519
|
pointer-events: none;
|
|
17456
17520
|
}
|
|
17457
17521
|
.page-link[aria-expanded=true], .page-link.show {
|
|
17458
|
-
background-color:
|
|
17522
|
+
background-color: rgba(11, 95, 255, 0.06);
|
|
17459
17523
|
border-color: transparent;
|
|
17460
|
-
color: #
|
|
17524
|
+
color: #272833;
|
|
17525
|
+
font-weight: 600;
|
|
17461
17526
|
z-index: 3;
|
|
17527
|
+
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
17528
|
+
letter-spacing: 0;
|
|
17462
17529
|
}
|
|
17463
17530
|
.page-link > .c-inner {
|
|
17464
17531
|
margin-bottom: 0;
|
|
@@ -17475,11 +17542,14 @@ label.custom-control-label {
|
|
|
17475
17542
|
margin-right: 0.25rem;
|
|
17476
17543
|
}
|
|
17477
17544
|
.page-item.active .page-link {
|
|
17478
|
-
background-color:
|
|
17545
|
+
background-color: rgba(11, 95, 255, 0.06);
|
|
17479
17546
|
border-color: transparent;
|
|
17480
|
-
color: #
|
|
17547
|
+
color: #272833;
|
|
17481
17548
|
cursor: default;
|
|
17482
17549
|
z-index: 3;
|
|
17550
|
+
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
17551
|
+
font-weight: 600;
|
|
17552
|
+
letter-spacing: 0;
|
|
17483
17553
|
}
|
|
17484
17554
|
.page-item.disabled .page-link {
|
|
17485
17555
|
background-color: transparent;
|
|
@@ -17525,7 +17595,8 @@ label.custom-control-label {
|
|
|
17525
17595
|
padding-right: 0.625rem;
|
|
17526
17596
|
padding-top: 0;
|
|
17527
17597
|
text-decoration: none;
|
|
17528
|
-
transition:
|
|
17598
|
+
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
|
|
17599
|
+
letter-spacing: 0.025em;
|
|
17529
17600
|
}
|
|
17530
17601
|
@media (prefers-reduced-motion: reduce) {
|
|
17531
17602
|
.pagination-items-per-page > a,
|
|
@@ -17541,30 +17612,47 @@ label.custom-control-label {
|
|
|
17541
17612
|
.pagination-items-per-page > a:hover, .pagination-items-per-page > a.hover,
|
|
17542
17613
|
.pagination-items-per-page > button:hover,
|
|
17543
17614
|
.pagination-items-per-page > button.hover {
|
|
17544
|
-
background-color: rgba(39, 40,
|
|
17615
|
+
background-color: rgba(39, 40, 51, 0.04);
|
|
17545
17616
|
border-color: transparent;
|
|
17546
17617
|
color: #272833;
|
|
17618
|
+
box-shadow: inset 0 -0.125rem 0 0 #88889a;
|
|
17619
|
+
font-weight: 600;
|
|
17620
|
+
letter-spacing: 0;
|
|
17621
|
+
text-decoration: none;
|
|
17622
|
+
z-index: 2;
|
|
17547
17623
|
}
|
|
17548
17624
|
.pagination-items-per-page > a.focus, .pagination-items-per-page > a:focus,
|
|
17549
17625
|
.pagination-items-per-page > button.focus,
|
|
17550
17626
|
.pagination-items-per-page > button:focus {
|
|
17551
|
-
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
|
|
17552
17627
|
outline: 0;
|
|
17553
|
-
background-color: rgba(39, 40, 41, 0.04);
|
|
17554
17628
|
border-color: transparent;
|
|
17555
17629
|
color: #272833;
|
|
17556
17630
|
}
|
|
17631
|
+
.pagination-items-per-page > a.focus::after, .pagination-items-per-page > a:focus::after,
|
|
17632
|
+
.pagination-items-per-page > button.focus::after,
|
|
17633
|
+
.pagination-items-per-page > button:focus::after {
|
|
17634
|
+
border-radius: 4px;
|
|
17635
|
+
bottom: 0;
|
|
17636
|
+
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
|
|
17637
|
+
content: "";
|
|
17638
|
+
display: block;
|
|
17639
|
+
left: 0;
|
|
17640
|
+
pointer-events: none;
|
|
17641
|
+
position: absolute;
|
|
17642
|
+
right: 0;
|
|
17643
|
+
top: 0;
|
|
17644
|
+
}
|
|
17557
17645
|
.pagination-items-per-page > a:active,
|
|
17558
17646
|
.pagination-items-per-page > button:active {
|
|
17559
|
-
background-color:
|
|
17647
|
+
background-color: rgba(11, 95, 255, 0.06);
|
|
17560
17648
|
border-color: transparent;
|
|
17561
|
-
color: #
|
|
17649
|
+
color: #272833;
|
|
17562
17650
|
}
|
|
17563
17651
|
.pagination-items-per-page > a.active,
|
|
17564
17652
|
.pagination-items-per-page > button.active {
|
|
17565
|
-
background-color:
|
|
17653
|
+
background-color: rgba(11, 95, 255, 0.06);
|
|
17566
17654
|
border-color: transparent;
|
|
17567
|
-
color: #
|
|
17655
|
+
color: #272833;
|
|
17568
17656
|
}
|
|
17569
17657
|
.pagination-items-per-page > a:disabled, .pagination-items-per-page > a.disabled,
|
|
17570
17658
|
.pagination-items-per-page > button:disabled,
|
|
@@ -17580,9 +17668,12 @@ label.custom-control-label {
|
|
|
17580
17668
|
.pagination-items-per-page > a[aria-expanded=true], .pagination-items-per-page > a.show,
|
|
17581
17669
|
.pagination-items-per-page > button[aria-expanded=true],
|
|
17582
17670
|
.pagination-items-per-page > button.show {
|
|
17583
|
-
background-color:
|
|
17671
|
+
background-color: rgba(11, 95, 255, 0.06);
|
|
17584
17672
|
border-color: transparent;
|
|
17585
|
-
color: #
|
|
17673
|
+
color: #272833;
|
|
17674
|
+
font-weight: 600;
|
|
17675
|
+
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
17676
|
+
letter-spacing: 0;
|
|
17586
17677
|
}
|
|
17587
17678
|
.pagination-items-per-page > a > .c-inner,
|
|
17588
17679
|
.pagination-items-per-page > button > .c-inner {
|
|
@@ -27398,6 +27489,41 @@ button.bg-dark:focus {
|
|
|
27398
27489
|
display: none !important;
|
|
27399
27490
|
}
|
|
27400
27491
|
|
|
27492
|
+
.d-block-c-prefers-reduced-motion {
|
|
27493
|
+
display: none !important;
|
|
27494
|
+
}
|
|
27495
|
+
|
|
27496
|
+
.d-inline-block-c-prefers-reduced-motion {
|
|
27497
|
+
display: none !important;
|
|
27498
|
+
}
|
|
27499
|
+
|
|
27500
|
+
@media (prefers-reduced-motion: reduce) {
|
|
27501
|
+
.d-none-c-prefers-reduced-motion {
|
|
27502
|
+
display: none !important;
|
|
27503
|
+
}
|
|
27504
|
+
}
|
|
27505
|
+
@media (prefers-reduced-motion: reduce) {
|
|
27506
|
+
.d-block-c-prefers-reduced-motion {
|
|
27507
|
+
display: block !important;
|
|
27508
|
+
}
|
|
27509
|
+
}
|
|
27510
|
+
@media (prefers-reduced-motion: reduce) {
|
|
27511
|
+
.d-inline-block-c-prefers-reduced-motion {
|
|
27512
|
+
display: inline-block !important;
|
|
27513
|
+
}
|
|
27514
|
+
}
|
|
27515
|
+
.c-prefers-reduced-motion .d-none-c-prefers-reduced-motion {
|
|
27516
|
+
display: none !important;
|
|
27517
|
+
}
|
|
27518
|
+
|
|
27519
|
+
.c-prefers-reduced-motion .d-block-c-prefers-reduced-motion {
|
|
27520
|
+
display: block !important;
|
|
27521
|
+
}
|
|
27522
|
+
|
|
27523
|
+
.c-prefers-reduced-motion .d-inline-block-c-prefers-reduced-motion {
|
|
27524
|
+
display: inline-block !important;
|
|
27525
|
+
}
|
|
27526
|
+
|
|
27401
27527
|
@media print {
|
|
27402
27528
|
.d-print-none {
|
|
27403
27529
|
display: none !important;
|