@clayui/css 3.95.1 → 3.97.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 +287 -94
- package/lib/css/atlas.css.map +1 -1
- package/lib/css/base.css +115 -82
- package/lib/css/base.css.map +1 -1
- package/lib/css/bootstrap.css +0 -0
- package/lib/css/bootstrap.css.map +1 -1
- package/lib/css/cadmin.css +254 -82
- package/lib/css/cadmin.css.map +1 -1
- package/lib/images/icons/accessibility.svg +9 -0
- package/lib/images/icons/icons.svg +1 -1
- package/lib/images/icons/stars.svg +9 -0
- package/package.json +3 -2
- package/src/images/icons/accessibility.svg +9 -0
- package/src/images/icons/stars.svg +9 -0
- package/src/scss/_license-text.scss +1 -1
- package/src/scss/atlas/variables/_forms.scss +38 -0
- package/src/scss/atlas/variables/_menubar.scss +87 -9
- package/src/scss/atlas/variables/_pagination.scss +56 -4
- package/src/scss/atlas/variables/_tables.scss +4 -4
- package/src/scss/cadmin/components/_forms.scss +1 -25
- package/src/scss/cadmin/components/_grid.scss +0 -12
- package/src/scss/cadmin/components/_multi-step-nav.scss +1 -11
- package/src/scss/cadmin/components/_navbar.scss +1 -6
- package/src/scss/cadmin/components/_type.scss +0 -21
- package/src/scss/cadmin/components/_utilities-functional-important.scss +20 -4
- package/src/scss/cadmin/variables/_buttons.scss +12 -2
- package/src/scss/cadmin/variables/_forms.scss +31 -0
- package/src/scss/cadmin/variables/_menubar.scss +100 -45
- package/src/scss/cadmin/variables/_multi-step-nav.scss +18 -0
- package/src/scss/cadmin/variables/_navbar.scss +13 -0
- package/src/scss/cadmin/variables/_pagination.scss +48 -4
- package/src/scss/cadmin/variables/_tables.scss +4 -4
- package/src/scss/cadmin/variables/_utilities.scss +111 -1
- package/src/scss/components/_forms.scss +1 -25
- package/src/scss/components/_grid.scss +0 -10
- package/src/scss/components/_multi-step-nav.scss +9 -20
- package/src/scss/components/_navbar.scss +1 -6
- package/src/scss/components/_type.scss +0 -21
- package/src/scss/components/_utilities-functional-important.scss +27 -8
- package/src/scss/functions/_lx-icons-generated.scss +4 -0
- package/src/scss/mixins/_globals.scss +25 -1
- package/src/scss/mixins/_input-groups.scss +8 -0
- package/src/scss/mixins/_links.scss +44 -0
- package/src/scss/mixins/_type.scss +7 -3
- package/src/scss/variables/_buttons.scss +2 -0
- package/src/scss/variables/_forms.scss +48 -3
- package/src/scss/variables/_icons.scss +1 -1
- package/src/scss/variables/_menubar.scss +8 -10
- package/src/scss/variables/_multi-step-nav.scss +43 -1
- package/src/scss/variables/_navbar.scss +14 -0
- package/src/scss/variables/_utilities.scss +111 -36
- package/CHANGELOG.md +0 -2579
- package/LICENSES/Apache-2.0.txt +0 -73
- package/LICENSES/BSD-3-Clause.txt +0 -30
- package/LICENSES/LicenseRef-MIT-Bootstrap.txt +0 -22
- package/LICENSES/MIT.txt +0 -19
- package/lib/.DS_Store +0 -0
- package/lib/images/.DS_Store +0 -0
- package/lib/images/icons/.DS_Store +0 -0
package/lib/css/base.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
|
-
* Clay 3.
|
|
3
|
+
* Clay 3.97.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>
|
|
@@ -531,24 +531,6 @@ mark:before,
|
|
|
531
531
|
color: #fff;
|
|
532
532
|
}
|
|
533
533
|
|
|
534
|
-
.text-truncate {
|
|
535
|
-
display: block;
|
|
536
|
-
}
|
|
537
|
-
|
|
538
|
-
.text-truncate-inline {
|
|
539
|
-
display: inline-flex;
|
|
540
|
-
max-width: 100%;
|
|
541
|
-
}
|
|
542
|
-
.text-truncate-inline .text-truncate {
|
|
543
|
-
display: inline-block;
|
|
544
|
-
max-width: 100%;
|
|
545
|
-
overflow: hidden;
|
|
546
|
-
text-overflow: ellipsis;
|
|
547
|
-
vertical-align: bottom;
|
|
548
|
-
white-space: nowrap;
|
|
549
|
-
word-wrap: normal;
|
|
550
|
-
}
|
|
551
|
-
|
|
552
534
|
code {
|
|
553
535
|
color: #e83e8c;
|
|
554
536
|
font-size: 87.5%;
|
|
@@ -1168,6 +1150,7 @@ button.collapse-icon .c-inner {
|
|
|
1168
1150
|
display: inline-block;
|
|
1169
1151
|
font-size: 1rem;
|
|
1170
1152
|
font-weight: 400;
|
|
1153
|
+
letter-spacing: inherit;
|
|
1171
1154
|
line-height: 1.5;
|
|
1172
1155
|
padding-bottom: 0.375rem;
|
|
1173
1156
|
padding-left: 0.75rem;
|
|
@@ -1330,6 +1313,7 @@ input[type=button].btn-block {
|
|
|
1330
1313
|
cursor: pointer;
|
|
1331
1314
|
font-size: inherit;
|
|
1332
1315
|
font-weight: inherit;
|
|
1316
|
+
letter-spacing: inherit;
|
|
1333
1317
|
line-height: inherit;
|
|
1334
1318
|
max-width: 100%;
|
|
1335
1319
|
padding: 0;
|
|
@@ -3303,11 +3287,6 @@ input[type=button].btn-block {
|
|
|
3303
3287
|
padding-top: 1rem;
|
|
3304
3288
|
}
|
|
3305
3289
|
}
|
|
3306
|
-
@media (max-width: 991.98px) {
|
|
3307
|
-
.container-form-lg .menubar-vertical-expand-lg {
|
|
3308
|
-
margin-top: -1rem;
|
|
3309
|
-
}
|
|
3310
|
-
}
|
|
3311
3290
|
|
|
3312
3291
|
.container-view {
|
|
3313
3292
|
padding-bottom: 1.5rem;
|
|
@@ -4236,7 +4215,6 @@ input[type=button].btn-block {
|
|
|
4236
4215
|
vertical-align: bottom;
|
|
4237
4216
|
white-space: nowrap;
|
|
4238
4217
|
}
|
|
4239
|
-
|
|
4240
4218
|
.btn-group,
|
|
4241
4219
|
.btn-group-vertical {
|
|
4242
4220
|
display: inline-flex;
|
|
@@ -7196,6 +7174,7 @@ fieldset[disabled] label .form-control {
|
|
|
7196
7174
|
font-size: 1rem;
|
|
7197
7175
|
font-weight: 400;
|
|
7198
7176
|
height: 2.375rem;
|
|
7177
|
+
letter-spacing: inherit;
|
|
7199
7178
|
line-height: 1.5;
|
|
7200
7179
|
min-width: 0;
|
|
7201
7180
|
padding-bottom: 0.375rem;
|
|
@@ -7260,16 +7239,17 @@ fieldset[disabled] .form-control {
|
|
|
7260
7239
|
.form-control-plaintext {
|
|
7261
7240
|
background-clip: border-box;
|
|
7262
7241
|
background-color: transparent;
|
|
7263
|
-
border-color: transparent;
|
|
7264
|
-
border-style: solid;
|
|
7265
7242
|
border-bottom-width: 0.0625rem;
|
|
7243
|
+
border-color: transparent;
|
|
7266
7244
|
border-left-width: 0.0625rem;
|
|
7267
7245
|
border-right-width: 0.0625rem;
|
|
7246
|
+
border-style: solid;
|
|
7268
7247
|
border-top-width: 0.0625rem;
|
|
7269
7248
|
color: #212529;
|
|
7270
7249
|
display: block;
|
|
7271
7250
|
font-size: 1rem;
|
|
7272
7251
|
height: 2.375rem;
|
|
7252
|
+
letter-spacing: inherit;
|
|
7273
7253
|
line-height: 1.5;
|
|
7274
7254
|
margin-bottom: 0;
|
|
7275
7255
|
min-width: 0;
|
|
@@ -10090,8 +10070,31 @@ label.custom-control-label {
|
|
|
10090
10070
|
overflow-wrap: break-word;
|
|
10091
10071
|
word-wrap: break-word;
|
|
10092
10072
|
}
|
|
10073
|
+
.input-group-item::after {
|
|
10074
|
+
border-radius: inherit;
|
|
10075
|
+
bottom: 0;
|
|
10076
|
+
content: "";
|
|
10077
|
+
display: block;
|
|
10078
|
+
left: 0;
|
|
10079
|
+
pointer-events: none;
|
|
10080
|
+
position: absolute;
|
|
10081
|
+
right: 0;
|
|
10082
|
+
top: 0;
|
|
10083
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
10084
|
+
}
|
|
10085
|
+
@media (prefers-reduced-motion: reduce) {
|
|
10086
|
+
.input-group-item::after {
|
|
10087
|
+
transition: none;
|
|
10088
|
+
}
|
|
10089
|
+
}
|
|
10090
|
+
.c-prefers-reduced-motion .input-group-item::after {
|
|
10091
|
+
transition: none;
|
|
10092
|
+
}
|
|
10093
|
+
|
|
10093
10094
|
.input-group-item.focus {
|
|
10094
10095
|
border-radius: 0.25rem;
|
|
10096
|
+
}
|
|
10097
|
+
.input-group-item.focus::after {
|
|
10095
10098
|
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
|
|
10096
10099
|
}
|
|
10097
10100
|
.input-group-item.focus.input-group-prepend {
|
|
@@ -11387,7 +11390,6 @@ label.custom-control-label {
|
|
|
11387
11390
|
text-overflow: ellipsis;
|
|
11388
11391
|
white-space: nowrap;
|
|
11389
11392
|
}
|
|
11390
|
-
|
|
11391
11393
|
.modal-title-indicator {
|
|
11392
11394
|
display: inline-block;
|
|
11393
11395
|
font-size: 0.875rem;
|
|
@@ -11646,7 +11648,6 @@ label.custom-control-label {
|
|
|
11646
11648
|
white-space: nowrap;
|
|
11647
11649
|
width: auto;
|
|
11648
11650
|
}
|
|
11649
|
-
|
|
11650
11651
|
.multi-step-item {
|
|
11651
11652
|
margin-bottom: 10px;
|
|
11652
11653
|
position: relative;
|
|
@@ -11689,7 +11690,6 @@ label.custom-control-label {
|
|
|
11689
11690
|
background-color: #dc3545;
|
|
11690
11691
|
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'%20d='M300.4%20256%20467%2089.4c29.6-29.6-14.8-74.1-44.4-44.4L256%20211.6%2089.4%2045C59.8%2015.3%2015.3%2059.8%2045%2089.4L211.6%20256%2045%20422.6c-29.7%2029.7%2014.7%2074.1%2044.4%2044.4L256%20300.4%20422.6%20467c29.7%2029.7%2074.1-14.7%2044.4-44.4L300.4%20256z'%20fill='%23fff'/%3E%3C/svg%3E");
|
|
11691
11692
|
color: #fff;
|
|
11692
|
-
text-indent: -100px;
|
|
11693
11693
|
}
|
|
11694
11694
|
.multi-step-item.error .multi-step-icon[data-multi-step-icon]::before {
|
|
11695
11695
|
content: none;
|
|
@@ -11756,13 +11756,12 @@ label.custom-control-label {
|
|
|
11756
11756
|
font-size: 1rem;
|
|
11757
11757
|
left: 50%;
|
|
11758
11758
|
max-width: 100px;
|
|
11759
|
-
position: absolute;
|
|
11760
|
-
transform: translateX(-50%);
|
|
11761
11759
|
overflow: hidden;
|
|
11760
|
+
position: absolute;
|
|
11762
11761
|
text-overflow: ellipsis;
|
|
11762
|
+
transform: translateX(-50%);
|
|
11763
11763
|
white-space: nowrap;
|
|
11764
11764
|
}
|
|
11765
|
-
|
|
11766
11765
|
.multi-step-icon {
|
|
11767
11766
|
align-items: center;
|
|
11768
11767
|
background-color: #e9ecef;
|
|
@@ -12042,7 +12041,6 @@ label.custom-control-label {
|
|
|
12042
12041
|
text-overflow: ellipsis;
|
|
12043
12042
|
white-space: nowrap;
|
|
12044
12043
|
}
|
|
12045
|
-
|
|
12046
12044
|
.dropdown-toggle .nav-text-truncate {
|
|
12047
12045
|
max-width: calc(100% - 24px);
|
|
12048
12046
|
}
|
|
@@ -12300,9 +12298,7 @@ label.custom-control-label {
|
|
|
12300
12298
|
}
|
|
12301
12299
|
@media (max-width: 767.98px) {
|
|
12302
12300
|
.menubar-vertical-expand-md {
|
|
12303
|
-
margin-bottom:
|
|
12304
|
-
margin-left: -15px;
|
|
12305
|
-
margin-right: -15px;
|
|
12301
|
+
margin-bottom: 1rem;
|
|
12306
12302
|
max-width: none;
|
|
12307
12303
|
}
|
|
12308
12304
|
.menubar-vertical-expand-md .menubar-collapse {
|
|
@@ -12319,12 +12315,14 @@ label.custom-control-label {
|
|
|
12319
12315
|
border-color: transparent;
|
|
12320
12316
|
border-style: solid;
|
|
12321
12317
|
border-width: 0.0625rem;
|
|
12322
|
-
display: flex;
|
|
12318
|
+
display: inline-flex;
|
|
12323
12319
|
height: 2rem;
|
|
12324
12320
|
padding-left: 0.5rem;
|
|
12325
12321
|
padding-right: 0.5rem;
|
|
12326
12322
|
}
|
|
12327
12323
|
.menubar-vertical-expand-md .menubar-toggler .c-inner {
|
|
12324
|
+
margin-left: -0.5rem;
|
|
12325
|
+
margin-right: -0.5rem;
|
|
12328
12326
|
max-width: none;
|
|
12329
12327
|
}
|
|
12330
12328
|
.menubar-vertical-expand-md .menubar-toggler .lexicon-icon {
|
|
@@ -12372,9 +12370,6 @@ label.custom-control-label {
|
|
|
12372
12370
|
color: rgba(0, 0, 0, 0.3);
|
|
12373
12371
|
}
|
|
12374
12372
|
@media (max-width: 767.98px) {
|
|
12375
|
-
.menubar-vertical-expand-md.menubar-transparent {
|
|
12376
|
-
background-color: #f8f9fa;
|
|
12377
|
-
}
|
|
12378
12373
|
.menubar-vertical-expand-md.menubar-transparent .menubar-collapse {
|
|
12379
12374
|
background-color: #fff;
|
|
12380
12375
|
border-color: #dee2e6;
|
|
@@ -12444,9 +12439,7 @@ label.custom-control-label {
|
|
|
12444
12439
|
}
|
|
12445
12440
|
@media (max-width: 991.98px) {
|
|
12446
12441
|
.menubar-vertical-expand-lg {
|
|
12447
|
-
margin-bottom:
|
|
12448
|
-
margin-left: -15px;
|
|
12449
|
-
margin-right: -15px;
|
|
12442
|
+
margin-bottom: 1rem;
|
|
12450
12443
|
max-width: none;
|
|
12451
12444
|
}
|
|
12452
12445
|
.menubar-vertical-expand-lg .menubar-collapse {
|
|
@@ -12463,12 +12456,14 @@ label.custom-control-label {
|
|
|
12463
12456
|
border-color: transparent;
|
|
12464
12457
|
border-style: solid;
|
|
12465
12458
|
border-width: 0.0625rem;
|
|
12466
|
-
display: flex;
|
|
12459
|
+
display: inline-flex;
|
|
12467
12460
|
height: 2rem;
|
|
12468
12461
|
padding-left: 0.5rem;
|
|
12469
12462
|
padding-right: 0.5rem;
|
|
12470
12463
|
}
|
|
12471
12464
|
.menubar-vertical-expand-lg .menubar-toggler .c-inner {
|
|
12465
|
+
margin-left: -0.5rem;
|
|
12466
|
+
margin-right: -0.5rem;
|
|
12472
12467
|
max-width: none;
|
|
12473
12468
|
}
|
|
12474
12469
|
.menubar-vertical-expand-lg .menubar-toggler .lexicon-icon {
|
|
@@ -12516,9 +12511,6 @@ label.custom-control-label {
|
|
|
12516
12511
|
color: rgba(0, 0, 0, 0.3);
|
|
12517
12512
|
}
|
|
12518
12513
|
@media (max-width: 991.98px) {
|
|
12519
|
-
.menubar-vertical-expand-lg.menubar-transparent {
|
|
12520
|
-
background-color: #f8f9fa;
|
|
12521
|
-
}
|
|
12522
12514
|
.menubar-vertical-expand-lg.menubar-transparent .menubar-collapse {
|
|
12523
12515
|
background-color: #fff;
|
|
12524
12516
|
border-color: #dee2e6;
|
|
@@ -12688,11 +12680,11 @@ label.custom-control-label {
|
|
|
12688
12680
|
display: inline-block;
|
|
12689
12681
|
max-width: 100%;
|
|
12690
12682
|
overflow: hidden;
|
|
12683
|
+
text-decoration: inherit;
|
|
12691
12684
|
text-overflow: ellipsis;
|
|
12692
12685
|
vertical-align: bottom;
|
|
12693
12686
|
white-space: nowrap;
|
|
12694
12687
|
}
|
|
12695
|
-
|
|
12696
12688
|
.navbar-toggler-icon {
|
|
12697
12689
|
background-size: 100% 100%;
|
|
12698
12690
|
background: no-repeat center center;
|
|
@@ -21146,7 +21138,6 @@ ul.autofit-row {
|
|
|
21146
21138
|
padding-left: inherit;
|
|
21147
21139
|
padding-right: inherit;
|
|
21148
21140
|
padding-top: inherit;
|
|
21149
|
-
text-overflow: inherit;
|
|
21150
21141
|
width: inherit;
|
|
21151
21142
|
}
|
|
21152
21143
|
|
|
@@ -25283,37 +25274,6 @@ button.bg-dark:focus {
|
|
|
25283
25274
|
display: none !important;
|
|
25284
25275
|
}
|
|
25285
25276
|
|
|
25286
|
-
.d-block-c-prefers-reduced-motion {
|
|
25287
|
-
display: none !important;
|
|
25288
|
-
}
|
|
25289
|
-
|
|
25290
|
-
.d-inline-block-c-prefers-reduced-motion {
|
|
25291
|
-
display: none !important;
|
|
25292
|
-
}
|
|
25293
|
-
|
|
25294
|
-
@media (prefers-reduced-motion: reduce) {
|
|
25295
|
-
.d-none-c-prefers-reduced-motion {
|
|
25296
|
-
display: none !important;
|
|
25297
|
-
}
|
|
25298
|
-
|
|
25299
|
-
.d-block-c-prefers-reduced-motion {
|
|
25300
|
-
display: block !important;
|
|
25301
|
-
}
|
|
25302
|
-
|
|
25303
|
-
.d-inline-block-c-prefers-reduced-motion {
|
|
25304
|
-
display: inline-block !important;
|
|
25305
|
-
}
|
|
25306
|
-
}
|
|
25307
|
-
.c-prefers-reduced-motion .d-none-c-prefers-reduced-motion {
|
|
25308
|
-
display: none !important;
|
|
25309
|
-
}
|
|
25310
|
-
.c-prefers-reduced-motion .d-block-c-prefers-reduced-motion {
|
|
25311
|
-
display: block !important;
|
|
25312
|
-
}
|
|
25313
|
-
.c-prefers-reduced-motion .d-inline-block-c-prefers-reduced-motion {
|
|
25314
|
-
display: inline-block !important;
|
|
25315
|
-
}
|
|
25316
|
-
|
|
25317
25277
|
@media print {
|
|
25318
25278
|
.d-print-none {
|
|
25319
25279
|
display: none !important;
|
|
@@ -29590,11 +29550,25 @@ button.bg-dark:focus {
|
|
|
29590
29550
|
}
|
|
29591
29551
|
|
|
29592
29552
|
.text-truncate {
|
|
29553
|
+
display: block;
|
|
29593
29554
|
overflow: hidden;
|
|
29594
29555
|
text-overflow: ellipsis;
|
|
29595
29556
|
white-space: nowrap;
|
|
29596
29557
|
}
|
|
29597
|
-
|
|
29558
|
+
.text-truncate-inline {
|
|
29559
|
+
display: inline-flex;
|
|
29560
|
+
max-width: 100%;
|
|
29561
|
+
}
|
|
29562
|
+
.text-truncate-inline .text-truncate {
|
|
29563
|
+
display: inline-block;
|
|
29564
|
+
max-width: 100%;
|
|
29565
|
+
overflow: hidden;
|
|
29566
|
+
text-overflow: ellipsis;
|
|
29567
|
+
vertical-align: bottom;
|
|
29568
|
+
white-space: nowrap;
|
|
29569
|
+
overflow-wrap: normal;
|
|
29570
|
+
word-wrap: normal;
|
|
29571
|
+
}
|
|
29598
29572
|
.text-left {
|
|
29599
29573
|
text-align: left !important;
|
|
29600
29574
|
}
|
|
@@ -29870,6 +29844,65 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
29870
29844
|
visibility: hidden !important;
|
|
29871
29845
|
}
|
|
29872
29846
|
|
|
29847
|
+
.c-prefers-expanded-text .breadcrumb-text-truncate, .c-prefers-expanded-text .form-control-plaintext, .c-prefers-expanded-text .form-control-select, .c-prefers-expanded-text .modal-title, .c-prefers-expanded-text .multi-step-title-center .multi-step-title, .c-prefers-expanded-text .multi-step-indicator .multi-step-indicator-label, .c-prefers-expanded-text .nav-text-truncate, .c-prefers-expanded-text .navbar-text-truncate, .c-prefers-expanded-text .text-truncate, .c-prefers-expanded-text .text-truncate-inline .text-truncate {
|
|
29848
|
+
max-width: 100% !important;
|
|
29849
|
+
overflow-wrap: break-word !important;
|
|
29850
|
+
white-space: normal !important;
|
|
29851
|
+
word-wrap: break-word !important;
|
|
29852
|
+
}
|
|
29853
|
+
|
|
29854
|
+
.c-prefers-link-underline [href]:not(.disabled):not([role=button]) {
|
|
29855
|
+
text-decoration: underline !important;
|
|
29856
|
+
}
|
|
29857
|
+
.c-prefers-link-underline .btn-monospaced[href]:not(.disabled):not([role=button]):not([role=tab])::after, .c-prefers-link-underline .nav-btn-monospaced[href]:not(.disabled):not([role=button]):not([role=tab])::after, .c-prefers-link-underline .nav-link-monospaced[href]:not(.disabled):not([role=button]):not([role=tab])::after {
|
|
29858
|
+
content: " ";
|
|
29859
|
+
position: absolute;
|
|
29860
|
+
text-decoration: underline !important;
|
|
29861
|
+
}
|
|
29862
|
+
.c-prefers-link-underline .multi-step-item.active .multi-step-icon[href]:not([role=button])::after, .c-prefers-link-underline .multi-step-item.complete .multi-step-icon[href]:not([role=button])::after, .c-prefers-link-underline .multi-step-item.error .multi-step-icon[href]:not([role=button])::after, .c-prefers-link-underline .dropdown .multi-step-icon[href]:not([role=button])::after {
|
|
29863
|
+
content: " ";
|
|
29864
|
+
position: absolute;
|
|
29865
|
+
text-decoration: underline !important;
|
|
29866
|
+
}
|
|
29867
|
+
.c-prefers-link-underline .multi-step-item.disabled .multi-step-icon[href]:not([role=button])::after {
|
|
29868
|
+
text-decoration: none !important;
|
|
29869
|
+
}
|
|
29870
|
+
|
|
29871
|
+
.c-prefers-letter-spacing-1 {
|
|
29872
|
+
letter-spacing: 1px !important;
|
|
29873
|
+
}
|
|
29874
|
+
|
|
29875
|
+
.d-block-c-prefers-reduced-motion {
|
|
29876
|
+
display: none !important;
|
|
29877
|
+
}
|
|
29878
|
+
|
|
29879
|
+
.d-inline-block-c-prefers-reduced-motion {
|
|
29880
|
+
display: none !important;
|
|
29881
|
+
}
|
|
29882
|
+
|
|
29883
|
+
@media (prefers-reduced-motion: reduce) {
|
|
29884
|
+
.d-none-c-prefers-reduced-motion {
|
|
29885
|
+
display: none !important;
|
|
29886
|
+
}
|
|
29887
|
+
|
|
29888
|
+
.d-block-c-prefers-reduced-motion {
|
|
29889
|
+
display: block !important;
|
|
29890
|
+
}
|
|
29891
|
+
|
|
29892
|
+
.d-inline-block-c-prefers-reduced-motion {
|
|
29893
|
+
display: inline-block !important;
|
|
29894
|
+
}
|
|
29895
|
+
}
|
|
29896
|
+
.c-prefers-reduced-motion .d-none-c-prefers-reduced-motion {
|
|
29897
|
+
display: none !important;
|
|
29898
|
+
}
|
|
29899
|
+
.c-prefers-reduced-motion .d-block-c-prefers-reduced-motion {
|
|
29900
|
+
display: block !important;
|
|
29901
|
+
}
|
|
29902
|
+
.c-prefers-reduced-motion .d-inline-block-c-prefers-reduced-motion {
|
|
29903
|
+
display: inline-block !important;
|
|
29904
|
+
}
|
|
29905
|
+
|
|
29873
29906
|
.c-prefers-reduced-motion {
|
|
29874
29907
|
scroll-behavior: auto;
|
|
29875
29908
|
transition: none;
|