@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/atlas.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>
|
|
@@ -546,24 +546,6 @@ strong {
|
|
|
546
546
|
color: #fff;
|
|
547
547
|
}
|
|
548
548
|
|
|
549
|
-
.text-truncate {
|
|
550
|
-
display: block;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.text-truncate-inline {
|
|
554
|
-
display: inline-flex;
|
|
555
|
-
max-width: 100%;
|
|
556
|
-
}
|
|
557
|
-
.text-truncate-inline .text-truncate {
|
|
558
|
-
display: inline-block;
|
|
559
|
-
max-width: 100%;
|
|
560
|
-
overflow: hidden;
|
|
561
|
-
text-overflow: ellipsis;
|
|
562
|
-
vertical-align: bottom;
|
|
563
|
-
white-space: nowrap;
|
|
564
|
-
word-wrap: normal;
|
|
565
|
-
}
|
|
566
|
-
|
|
567
549
|
code {
|
|
568
550
|
color: #ff73c3;
|
|
569
551
|
font-size: 87.5%;
|
|
@@ -1187,6 +1169,7 @@ button.collapse-icon .c-inner {
|
|
|
1187
1169
|
display: inline-block;
|
|
1188
1170
|
font-size: 1rem;
|
|
1189
1171
|
font-weight: 600;
|
|
1172
|
+
letter-spacing: inherit;
|
|
1190
1173
|
line-height: 1.5;
|
|
1191
1174
|
padding-bottom: 0.4375rem;
|
|
1192
1175
|
padding-left: 0.9375rem;
|
|
@@ -1354,6 +1337,7 @@ input[type=button].btn-block {
|
|
|
1354
1337
|
cursor: pointer;
|
|
1355
1338
|
font-size: inherit;
|
|
1356
1339
|
font-weight: inherit;
|
|
1340
|
+
letter-spacing: inherit;
|
|
1357
1341
|
line-height: inherit;
|
|
1358
1342
|
max-width: 100%;
|
|
1359
1343
|
padding: 0;
|
|
@@ -3313,11 +3297,6 @@ input[type=button].btn-block {
|
|
|
3313
3297
|
padding-top: 1rem;
|
|
3314
3298
|
}
|
|
3315
3299
|
}
|
|
3316
|
-
@media (max-width: 991.98px) {
|
|
3317
|
-
.container-form-lg .menubar-vertical-expand-lg {
|
|
3318
|
-
margin-top: -1rem;
|
|
3319
|
-
}
|
|
3320
|
-
}
|
|
3321
3300
|
|
|
3322
3301
|
.container-view {
|
|
3323
3302
|
padding-bottom: 1.5rem;
|
|
@@ -7391,6 +7370,7 @@ fieldset[disabled] label .form-control {
|
|
|
7391
7370
|
font-size: 1rem;
|
|
7392
7371
|
font-weight: 400;
|
|
7393
7372
|
height: 2.5rem;
|
|
7373
|
+
letter-spacing: inherit;
|
|
7394
7374
|
line-height: 1.5;
|
|
7395
7375
|
min-width: 0;
|
|
7396
7376
|
padding-bottom: 0.4375rem;
|
|
@@ -7484,16 +7464,17 @@ fieldset[disabled] .form-control {
|
|
|
7484
7464
|
.form-control-plaintext {
|
|
7485
7465
|
background-clip: border-box;
|
|
7486
7466
|
background-color: transparent;
|
|
7487
|
-
border-color: transparent;
|
|
7488
|
-
border-style: solid;
|
|
7489
7467
|
border-bottom-width: 0.0625rem;
|
|
7468
|
+
border-color: transparent;
|
|
7490
7469
|
border-left-width: 0.0625rem;
|
|
7491
7470
|
border-right-width: 0.0625rem;
|
|
7471
|
+
border-style: solid;
|
|
7492
7472
|
border-top-width: 0.0625rem;
|
|
7493
7473
|
color: #272833;
|
|
7494
7474
|
display: block;
|
|
7495
7475
|
font-size: 1rem;
|
|
7496
7476
|
height: 2.5rem;
|
|
7477
|
+
letter-spacing: inherit;
|
|
7497
7478
|
line-height: 1.5;
|
|
7498
7479
|
margin-bottom: 0;
|
|
7499
7480
|
min-width: 0;
|
|
@@ -10711,8 +10692,31 @@ label.custom-control-label {
|
|
|
10711
10692
|
overflow-wrap: break-word;
|
|
10712
10693
|
word-wrap: break-word;
|
|
10713
10694
|
}
|
|
10695
|
+
.input-group-item::after {
|
|
10696
|
+
border-radius: inherit;
|
|
10697
|
+
bottom: 0;
|
|
10698
|
+
content: "";
|
|
10699
|
+
display: block;
|
|
10700
|
+
left: 0;
|
|
10701
|
+
pointer-events: none;
|
|
10702
|
+
position: absolute;
|
|
10703
|
+
right: 0;
|
|
10704
|
+
top: 0;
|
|
10705
|
+
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
10706
|
+
}
|
|
10707
|
+
@media (prefers-reduced-motion: reduce) {
|
|
10708
|
+
.input-group-item::after {
|
|
10709
|
+
transition: none;
|
|
10710
|
+
}
|
|
10711
|
+
}
|
|
10712
|
+
.c-prefers-reduced-motion .input-group-item::after {
|
|
10713
|
+
transition: none;
|
|
10714
|
+
}
|
|
10715
|
+
|
|
10714
10716
|
.input-group-item.focus {
|
|
10715
10717
|
border-radius: 0.25rem;
|
|
10718
|
+
}
|
|
10719
|
+
.input-group-item.focus::after {
|
|
10716
10720
|
box-shadow: 0 0 0 0.125rem #fff, 0 0 0 0.25rem #528eff;
|
|
10717
10721
|
}
|
|
10718
10722
|
.input-group-item.focus.input-group-prepend {
|
|
@@ -12383,7 +12387,6 @@ label.custom-control-label {
|
|
|
12383
12387
|
white-space: nowrap;
|
|
12384
12388
|
width: auto;
|
|
12385
12389
|
}
|
|
12386
|
-
|
|
12387
12390
|
.multi-step-item {
|
|
12388
12391
|
margin-bottom: 10px;
|
|
12389
12392
|
position: relative;
|
|
@@ -12426,7 +12429,6 @@ label.custom-control-label {
|
|
|
12426
12429
|
background-color: #da1414;
|
|
12427
12430
|
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");
|
|
12428
12431
|
color: #fff;
|
|
12429
|
-
text-indent: -100px;
|
|
12430
12432
|
}
|
|
12431
12433
|
.multi-step-item.error .multi-step-icon[data-multi-step-icon]::before {
|
|
12432
12434
|
content: none;
|
|
@@ -12497,13 +12499,12 @@ label.custom-control-label {
|
|
|
12497
12499
|
font-weight: 600;
|
|
12498
12500
|
left: 50%;
|
|
12499
12501
|
max-width: 100px;
|
|
12500
|
-
position: absolute;
|
|
12501
|
-
transform: translateX(-50%);
|
|
12502
12502
|
overflow: hidden;
|
|
12503
|
+
position: absolute;
|
|
12503
12504
|
text-overflow: ellipsis;
|
|
12505
|
+
transform: translateX(-50%);
|
|
12504
12506
|
white-space: nowrap;
|
|
12505
12507
|
}
|
|
12506
|
-
|
|
12507
12508
|
.multi-step-icon {
|
|
12508
12509
|
align-items: center;
|
|
12509
12510
|
background-color: #e7e7ed;
|
|
@@ -12792,7 +12793,6 @@ label.custom-control-label {
|
|
|
12792
12793
|
text-overflow: ellipsis;
|
|
12793
12794
|
white-space: nowrap;
|
|
12794
12795
|
}
|
|
12795
|
-
|
|
12796
12796
|
.dropdown-toggle .nav-text-truncate {
|
|
12797
12797
|
max-width: calc(100% - 24px);
|
|
12798
12798
|
}
|
|
@@ -13083,9 +13083,7 @@ label.custom-control-label {
|
|
|
13083
13083
|
}
|
|
13084
13084
|
@media (max-width: 767.98px) {
|
|
13085
13085
|
.menubar-vertical-expand-md {
|
|
13086
|
-
margin-bottom:
|
|
13087
|
-
margin-left: -12px;
|
|
13088
|
-
margin-right: -12px;
|
|
13086
|
+
margin-bottom: 1rem;
|
|
13089
13087
|
max-width: none;
|
|
13090
13088
|
}
|
|
13091
13089
|
.menubar-vertical-expand-md .menubar-collapse {
|
|
@@ -13102,12 +13100,14 @@ label.custom-control-label {
|
|
|
13102
13100
|
border-color: transparent;
|
|
13103
13101
|
border-style: solid;
|
|
13104
13102
|
border-width: 0.0625rem;
|
|
13105
|
-
display: flex;
|
|
13103
|
+
display: inline-flex;
|
|
13106
13104
|
height: 2rem;
|
|
13107
13105
|
padding-left: 0.5rem;
|
|
13108
13106
|
padding-right: 0.5rem;
|
|
13109
13107
|
}
|
|
13110
13108
|
.menubar-vertical-expand-md .menubar-toggler .c-inner {
|
|
13109
|
+
margin-left: -0.5rem;
|
|
13110
|
+
margin-right: -0.5rem;
|
|
13111
13111
|
max-width: none;
|
|
13112
13112
|
}
|
|
13113
13113
|
.menubar-vertical-expand-md .menubar-toggler .lexicon-icon {
|
|
@@ -13142,8 +13142,9 @@ label.custom-control-label {
|
|
|
13142
13142
|
.menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
13143
13143
|
border-radius: 0.25rem;
|
|
13144
13144
|
color: #6b6c7e;
|
|
13145
|
-
|
|
13145
|
+
letter-spacing: 0.02em;
|
|
13146
13146
|
margin-bottom: 0.25rem;
|
|
13147
|
+
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;
|
|
13147
13148
|
}
|
|
13148
13149
|
@media (prefers-reduced-motion: reduce) {
|
|
13149
13150
|
.menubar-vertical-expand-md.menubar-transparent .nav-link {
|
|
@@ -13154,11 +13155,24 @@ label.custom-control-label {
|
|
|
13154
13155
|
transition: none;
|
|
13155
13156
|
}
|
|
13156
13157
|
|
|
13158
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link::before {
|
|
13159
|
+
border-radius: 0.25rem 0 0 0.25rem;
|
|
13160
|
+
bottom: 0;
|
|
13161
|
+
content: "";
|
|
13162
|
+
display: block;
|
|
13163
|
+
left: 0;
|
|
13164
|
+
position: absolute;
|
|
13165
|
+
top: 0;
|
|
13166
|
+
}
|
|
13157
13167
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:hover, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
|
|
13158
13168
|
background-color: rgba(39, 40, 51, 0.04);
|
|
13159
13169
|
color: #272833;
|
|
13160
|
-
box-shadow: inset 0.125rem 0 0 0 #88889a;
|
|
13161
13170
|
font-weight: 600;
|
|
13171
|
+
letter-spacing: 0;
|
|
13172
|
+
}
|
|
13173
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link:hover::before, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover::before {
|
|
13174
|
+
background: #88889a;
|
|
13175
|
+
width: 0.1875rem;
|
|
13162
13176
|
}
|
|
13163
13177
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.focus, .menubar-vertical-expand-md.menubar-transparent .nav-link:focus {
|
|
13164
13178
|
color: #272833;
|
|
@@ -13182,16 +13196,37 @@ label.custom-control-label {
|
|
|
13182
13196
|
.menubar-vertical-expand-md.menubar-transparent .nav-link.active {
|
|
13183
13197
|
font-weight: 600;
|
|
13184
13198
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13185
|
-
box-shadow: inset 0.25rem 0 0 0 #528eff;
|
|
13186
13199
|
color: #272833;
|
|
13200
|
+
letter-spacing: 0;
|
|
13201
|
+
}
|
|
13202
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link.active::before {
|
|
13203
|
+
background-color: #528eff;
|
|
13204
|
+
width: 0.25rem;
|
|
13187
13205
|
}
|
|
13188
13206
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:disabled, .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled {
|
|
13207
|
+
background-color: transparent;
|
|
13189
13208
|
color: rgba(0, 0, 0, 0.3);
|
|
13190
13209
|
box-shadow: none;
|
|
13210
|
+
font-weight: 400;
|
|
13211
|
+
letter-spacing: 0.02em;
|
|
13212
|
+
}
|
|
13213
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link:disabled::before, .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled::before {
|
|
13214
|
+
content: none;
|
|
13215
|
+
}
|
|
13216
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link:disabled::after, .menubar-vertical-expand-md.menubar-transparent .nav-link.disabled::after {
|
|
13217
|
+
content: none;
|
|
13191
13218
|
}
|
|
13192
13219
|
.menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true], .menubar-vertical-expand-md.menubar-transparent .nav-link.show {
|
|
13193
13220
|
font-weight: 600;
|
|
13194
13221
|
color: #272833;
|
|
13222
|
+
letter-spacing: 0;
|
|
13223
|
+
}
|
|
13224
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true]::before, .menubar-vertical-expand-md.menubar-transparent .nav-link.show::before {
|
|
13225
|
+
background-color: transparent;
|
|
13226
|
+
}
|
|
13227
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link[aria-expanded=true]:hover::before, .menubar-vertical-expand-md.menubar-transparent .nav-link.show:hover::before {
|
|
13228
|
+
background-color: #88889a;
|
|
13229
|
+
width: 0.1875rem;
|
|
13195
13230
|
}
|
|
13196
13231
|
@media (max-width: 767.98px) {
|
|
13197
13232
|
.menubar-vertical-expand-md.menubar-transparent {
|
|
@@ -13205,7 +13240,7 @@ label.custom-control-label {
|
|
|
13205
13240
|
}
|
|
13206
13241
|
.menubar-vertical-expand-md.menubar-transparent .menubar-toggler {
|
|
13207
13242
|
text-decoration: none;
|
|
13208
|
-
color: #
|
|
13243
|
+
color: #6b6c7e;
|
|
13209
13244
|
font-size: 0.875rem;
|
|
13210
13245
|
font-weight: 600;
|
|
13211
13246
|
transition: box-shadow 0.15s ease-in-out;
|
|
@@ -13227,6 +13262,9 @@ label.custom-control-label {
|
|
|
13227
13262
|
color: #272833;
|
|
13228
13263
|
margin-bottom: 0;
|
|
13229
13264
|
}
|
|
13265
|
+
.menubar-vertical-expand-md.menubar-transparent .nav-link::before {
|
|
13266
|
+
content: none;
|
|
13267
|
+
}
|
|
13230
13268
|
.menubar-vertical-expand-md.menubar-transparent .nav-link:hover, .menubar-vertical-expand-md.menubar-transparent .nav-link.hover {
|
|
13231
13269
|
background-color: rgba(39, 40, 51, 0.04);
|
|
13232
13270
|
color: #1c1d25;
|
|
@@ -13290,9 +13328,7 @@ label.custom-control-label {
|
|
|
13290
13328
|
}
|
|
13291
13329
|
@media (max-width: 991.98px) {
|
|
13292
13330
|
.menubar-vertical-expand-lg {
|
|
13293
|
-
margin-bottom:
|
|
13294
|
-
margin-left: -12px;
|
|
13295
|
-
margin-right: -12px;
|
|
13331
|
+
margin-bottom: 1rem;
|
|
13296
13332
|
max-width: none;
|
|
13297
13333
|
}
|
|
13298
13334
|
.menubar-vertical-expand-lg .menubar-collapse {
|
|
@@ -13309,12 +13345,14 @@ label.custom-control-label {
|
|
|
13309
13345
|
border-color: transparent;
|
|
13310
13346
|
border-style: solid;
|
|
13311
13347
|
border-width: 0.0625rem;
|
|
13312
|
-
display: flex;
|
|
13348
|
+
display: inline-flex;
|
|
13313
13349
|
height: 2rem;
|
|
13314
13350
|
padding-left: 0.5rem;
|
|
13315
13351
|
padding-right: 0.5rem;
|
|
13316
13352
|
}
|
|
13317
13353
|
.menubar-vertical-expand-lg .menubar-toggler .c-inner {
|
|
13354
|
+
margin-left: -0.5rem;
|
|
13355
|
+
margin-right: -0.5rem;
|
|
13318
13356
|
max-width: none;
|
|
13319
13357
|
}
|
|
13320
13358
|
.menubar-vertical-expand-lg .menubar-toggler .lexicon-icon {
|
|
@@ -13349,8 +13387,9 @@ label.custom-control-label {
|
|
|
13349
13387
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
13350
13388
|
border-radius: 0.25rem;
|
|
13351
13389
|
color: #6b6c7e;
|
|
13352
|
-
|
|
13390
|
+
letter-spacing: 0.02em;
|
|
13353
13391
|
margin-bottom: 0.25rem;
|
|
13392
|
+
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;
|
|
13354
13393
|
}
|
|
13355
13394
|
@media (prefers-reduced-motion: reduce) {
|
|
13356
13395
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link {
|
|
@@ -13361,14 +13400,26 @@ label.custom-control-label {
|
|
|
13361
13400
|
transition: none;
|
|
13362
13401
|
}
|
|
13363
13402
|
|
|
13403
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link::before {
|
|
13404
|
+
border-radius: 0.25rem 0 0 0.25rem;
|
|
13405
|
+
bottom: 0;
|
|
13406
|
+
content: "";
|
|
13407
|
+
display: block;
|
|
13408
|
+
left: 0;
|
|
13409
|
+
position: absolute;
|
|
13410
|
+
top: 0;
|
|
13411
|
+
}
|
|
13364
13412
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
|
|
13365
13413
|
background-color: rgba(39, 40, 51, 0.04);
|
|
13366
13414
|
color: #272833;
|
|
13367
|
-
box-shadow: inset 0.125rem 0 0 0 #88889a;
|
|
13368
13415
|
font-weight: 600;
|
|
13416
|
+
letter-spacing: 0;
|
|
13417
|
+
}
|
|
13418
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link:hover::before, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover::before {
|
|
13419
|
+
background: #88889a;
|
|
13420
|
+
width: 0.1875rem;
|
|
13369
13421
|
}
|
|
13370
13422
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.focus, .menubar-vertical-expand-lg.menubar-transparent .nav-link:focus {
|
|
13371
|
-
background-color: rgba(11, 95, 255, 0.04);
|
|
13372
13423
|
color: #272833;
|
|
13373
13424
|
outline: 0;
|
|
13374
13425
|
}
|
|
@@ -13389,16 +13440,37 @@ label.custom-control-label {
|
|
|
13389
13440
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link.active {
|
|
13390
13441
|
font-weight: 600;
|
|
13391
13442
|
background-color: rgba(11, 95, 255, 0.06);
|
|
13392
|
-
box-shadow: inset 0.25rem 0 0 0 #528eff;
|
|
13393
13443
|
color: #272833;
|
|
13444
|
+
letter-spacing: 0;
|
|
13445
|
+
}
|
|
13446
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link.active::before {
|
|
13447
|
+
background-color: #528eff;
|
|
13448
|
+
width: 0.25rem;
|
|
13394
13449
|
}
|
|
13395
13450
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled, .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled {
|
|
13451
|
+
background-color: transparent;
|
|
13396
13452
|
color: rgba(0, 0, 0, 0.3);
|
|
13397
13453
|
box-shadow: none;
|
|
13454
|
+
font-weight: 400;
|
|
13455
|
+
letter-spacing: 0.02em;
|
|
13456
|
+
}
|
|
13457
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled::before, .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled::before {
|
|
13458
|
+
content: none;
|
|
13459
|
+
}
|
|
13460
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link:disabled::after, .menubar-vertical-expand-lg.menubar-transparent .nav-link.disabled::after {
|
|
13461
|
+
content: none;
|
|
13398
13462
|
}
|
|
13399
13463
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true], .menubar-vertical-expand-lg.menubar-transparent .nav-link.show {
|
|
13400
13464
|
font-weight: 600;
|
|
13401
13465
|
color: #272833;
|
|
13466
|
+
letter-spacing: 0;
|
|
13467
|
+
}
|
|
13468
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true]::before, .menubar-vertical-expand-lg.menubar-transparent .nav-link.show::before {
|
|
13469
|
+
background-color: transparent;
|
|
13470
|
+
}
|
|
13471
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link[aria-expanded=true]:hover::before, .menubar-vertical-expand-lg.menubar-transparent .nav-link.show:hover::before {
|
|
13472
|
+
background-color: #88889a;
|
|
13473
|
+
width: 0.1875rem;
|
|
13402
13474
|
}
|
|
13403
13475
|
@media (max-width: 991.98px) {
|
|
13404
13476
|
.menubar-vertical-expand-lg.menubar-transparent {
|
|
@@ -13412,7 +13484,7 @@ label.custom-control-label {
|
|
|
13412
13484
|
}
|
|
13413
13485
|
.menubar-vertical-expand-lg.menubar-transparent .menubar-toggler {
|
|
13414
13486
|
text-decoration: none;
|
|
13415
|
-
color: #
|
|
13487
|
+
color: #6b6c7e;
|
|
13416
13488
|
font-size: 0.875rem;
|
|
13417
13489
|
font-weight: 600;
|
|
13418
13490
|
transition: box-shadow 0.15s ease-in-out;
|
|
@@ -13434,6 +13506,9 @@ label.custom-control-label {
|
|
|
13434
13506
|
color: #272833;
|
|
13435
13507
|
margin-bottom: 0;
|
|
13436
13508
|
}
|
|
13509
|
+
.menubar-vertical-expand-lg.menubar-transparent .nav-link::before {
|
|
13510
|
+
content: none;
|
|
13511
|
+
}
|
|
13437
13512
|
.menubar-vertical-expand-lg.menubar-transparent .nav-link:hover, .menubar-vertical-expand-lg.menubar-transparent .nav-link.hover {
|
|
13438
13513
|
background-color: rgba(39, 40, 51, 0.04);
|
|
13439
13514
|
color: #1c1d25;
|
|
@@ -13599,11 +13674,11 @@ label.custom-control-label {
|
|
|
13599
13674
|
display: inline-block;
|
|
13600
13675
|
max-width: 100%;
|
|
13601
13676
|
overflow: hidden;
|
|
13677
|
+
text-decoration: inherit;
|
|
13602
13678
|
text-overflow: ellipsis;
|
|
13603
13679
|
vertical-align: bottom;
|
|
13604
13680
|
white-space: nowrap;
|
|
13605
13681
|
}
|
|
13606
|
-
|
|
13607
13682
|
.navbar-toggler-icon {
|
|
13608
13683
|
background-size: 100% 100%;
|
|
13609
13684
|
background: no-repeat center center;
|
|
@@ -17459,16 +17534,28 @@ label.custom-control-label {
|
|
|
17459
17534
|
transition: none;
|
|
17460
17535
|
}
|
|
17461
17536
|
|
|
17537
|
+
.page-link::before {
|
|
17538
|
+
border-radius: 0 0 0.25rem 0.25rem;
|
|
17539
|
+
bottom: 0;
|
|
17540
|
+
content: "";
|
|
17541
|
+
display: block;
|
|
17542
|
+
left: 0;
|
|
17543
|
+
position: absolute;
|
|
17544
|
+
right: 0;
|
|
17545
|
+
}
|
|
17462
17546
|
.page-link:hover, .page-link.hover {
|
|
17463
17547
|
background-color: rgba(39, 40, 51, 0.04);
|
|
17464
17548
|
border-color: transparent;
|
|
17465
17549
|
color: #272833;
|
|
17466
17550
|
text-decoration: none;
|
|
17467
17551
|
z-index: 2;
|
|
17468
|
-
box-shadow: inset 0 -0.125rem 0 0 #88889a;
|
|
17469
17552
|
font-weight: 600;
|
|
17470
17553
|
letter-spacing: 0;
|
|
17471
17554
|
}
|
|
17555
|
+
.page-link:hover::before, .page-link.hover::before {
|
|
17556
|
+
background-color: #88889a;
|
|
17557
|
+
height: 0.1875rem;
|
|
17558
|
+
}
|
|
17472
17559
|
.page-link.focus, .page-link:focus {
|
|
17473
17560
|
box-shadow: none;
|
|
17474
17561
|
outline: 0;
|
|
@@ -17493,7 +17580,6 @@ label.custom-control-label {
|
|
|
17493
17580
|
border-color: transparent;
|
|
17494
17581
|
color: #272833;
|
|
17495
17582
|
z-index: 3;
|
|
17496
|
-
box-shadow: inset 0 -0.125rem 0 0 #528eff;
|
|
17497
17583
|
font-weight: 600;
|
|
17498
17584
|
letter-spacing: 0;
|
|
17499
17585
|
}
|
|
@@ -17502,10 +17588,13 @@ label.custom-control-label {
|
|
|
17502
17588
|
border-color: transparent;
|
|
17503
17589
|
color: #272833;
|
|
17504
17590
|
z-index: 3;
|
|
17505
|
-
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
17506
17591
|
font-weight: 600;
|
|
17507
17592
|
letter-spacing: 0;
|
|
17508
17593
|
}
|
|
17594
|
+
.page-link.active::before {
|
|
17595
|
+
background-color: #528eff;
|
|
17596
|
+
height: 0.25rem;
|
|
17597
|
+
}
|
|
17509
17598
|
.page-link:disabled, .page-link.disabled {
|
|
17510
17599
|
background-color: transparent;
|
|
17511
17600
|
border-color: transparent;
|
|
@@ -17516,6 +17605,9 @@ label.custom-control-label {
|
|
|
17516
17605
|
pointer-events: auto;
|
|
17517
17606
|
z-index: 0;
|
|
17518
17607
|
}
|
|
17608
|
+
.page-link:disabled::before, .page-link.disabled::before {
|
|
17609
|
+
content: none;
|
|
17610
|
+
}
|
|
17519
17611
|
.page-link:disabled:focus::after, .page-link.disabled:focus::after {
|
|
17520
17612
|
content: none;
|
|
17521
17613
|
}
|
|
@@ -17527,10 +17619,16 @@ label.custom-control-label {
|
|
|
17527
17619
|
border-color: transparent;
|
|
17528
17620
|
color: #272833;
|
|
17529
17621
|
z-index: 3;
|
|
17530
|
-
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
17531
17622
|
font-weight: 600;
|
|
17532
17623
|
letter-spacing: 0;
|
|
17533
17624
|
}
|
|
17625
|
+
.page-link[aria-expanded=true]::before, .page-link.show::before {
|
|
17626
|
+
background-color: transparent;
|
|
17627
|
+
}
|
|
17628
|
+
.page-link[aria-expanded=true]:hover::before, .page-link.show:hover::before {
|
|
17629
|
+
background-color: #88889a;
|
|
17630
|
+
height: 0.1875rem;
|
|
17631
|
+
}
|
|
17534
17632
|
.page-link > .c-inner {
|
|
17535
17633
|
margin-bottom: 0;
|
|
17536
17634
|
margin-left: -0.625rem;
|
|
@@ -17550,10 +17648,13 @@ label.custom-control-label {
|
|
|
17550
17648
|
border-color: transparent;
|
|
17551
17649
|
color: #272833;
|
|
17552
17650
|
z-index: 3;
|
|
17553
|
-
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
17554
17651
|
font-weight: 600;
|
|
17555
17652
|
letter-spacing: 0;
|
|
17556
17653
|
}
|
|
17654
|
+
.page-item.active .page-link::before {
|
|
17655
|
+
background-color: #528eff;
|
|
17656
|
+
height: 0.25rem;
|
|
17657
|
+
}
|
|
17557
17658
|
.page-item.disabled .page-link {
|
|
17558
17659
|
background-color: transparent;
|
|
17559
17660
|
border-color: transparent;
|
|
@@ -17564,6 +17665,9 @@ label.custom-control-label {
|
|
|
17564
17665
|
pointer-events: auto;
|
|
17565
17666
|
z-index: 0;
|
|
17566
17667
|
}
|
|
17668
|
+
.page-item.disabled .page-link::before {
|
|
17669
|
+
content: none;
|
|
17670
|
+
}
|
|
17567
17671
|
.page-item.disabled .page-link.focus::after, .page-item.disabled .page-link:focus::after {
|
|
17568
17672
|
content: none;
|
|
17569
17673
|
}
|
|
@@ -17615,18 +17719,33 @@ label.custom-control-label {
|
|
|
17615
17719
|
transition: none;
|
|
17616
17720
|
}
|
|
17617
17721
|
|
|
17722
|
+
.pagination-items-per-page > a::before,
|
|
17723
|
+
.pagination-items-per-page > button::before {
|
|
17724
|
+
border-radius: 0 0 0.25rem 0.25rem;
|
|
17725
|
+
bottom: 0;
|
|
17726
|
+
content: "";
|
|
17727
|
+
display: block;
|
|
17728
|
+
left: 0;
|
|
17729
|
+
position: absolute;
|
|
17730
|
+
right: 0;
|
|
17731
|
+
}
|
|
17618
17732
|
.pagination-items-per-page > a:hover, .pagination-items-per-page > a.hover,
|
|
17619
17733
|
.pagination-items-per-page > button:hover,
|
|
17620
17734
|
.pagination-items-per-page > button.hover {
|
|
17621
17735
|
background-color: rgba(39, 40, 51, 0.04);
|
|
17622
17736
|
border-color: transparent;
|
|
17623
17737
|
color: #272833;
|
|
17624
|
-
box-shadow: inset 0 -0.125rem 0 0 #88889a;
|
|
17625
17738
|
font-weight: 600;
|
|
17626
17739
|
letter-spacing: 0;
|
|
17627
17740
|
text-decoration: none;
|
|
17628
17741
|
z-index: 2;
|
|
17629
17742
|
}
|
|
17743
|
+
.pagination-items-per-page > a:hover::before, .pagination-items-per-page > a.hover::before,
|
|
17744
|
+
.pagination-items-per-page > button:hover::before,
|
|
17745
|
+
.pagination-items-per-page > button.hover::before {
|
|
17746
|
+
background-color: #88889a;
|
|
17747
|
+
height: 0.1875rem;
|
|
17748
|
+
}
|
|
17630
17749
|
.pagination-items-per-page > a.focus, .pagination-items-per-page > a:focus,
|
|
17631
17750
|
.pagination-items-per-page > button.focus,
|
|
17632
17751
|
.pagination-items-per-page > button:focus {
|
|
@@ -17670,6 +17789,18 @@ label.custom-control-label {
|
|
|
17670
17789
|
cursor: not-allowed;
|
|
17671
17790
|
opacity: 0.5;
|
|
17672
17791
|
pointer-events: auto;
|
|
17792
|
+
font-weight: 400;
|
|
17793
|
+
letter-spacing: 0.033em;
|
|
17794
|
+
}
|
|
17795
|
+
.pagination-items-per-page > a:disabled::before, .pagination-items-per-page > a.disabled::before,
|
|
17796
|
+
.pagination-items-per-page > button:disabled::before,
|
|
17797
|
+
.pagination-items-per-page > button.disabled::before {
|
|
17798
|
+
content: none;
|
|
17799
|
+
}
|
|
17800
|
+
.pagination-items-per-page > a:disabled:focus::after, .pagination-items-per-page > a.disabled:focus::after,
|
|
17801
|
+
.pagination-items-per-page > button:disabled:focus::after,
|
|
17802
|
+
.pagination-items-per-page > button.disabled:focus::after {
|
|
17803
|
+
content: none;
|
|
17673
17804
|
}
|
|
17674
17805
|
.pagination-items-per-page > a[aria-expanded=true], .pagination-items-per-page > a.show,
|
|
17675
17806
|
.pagination-items-per-page > button[aria-expanded=true],
|
|
@@ -17678,9 +17809,19 @@ label.custom-control-label {
|
|
|
17678
17809
|
border-color: transparent;
|
|
17679
17810
|
color: #272833;
|
|
17680
17811
|
font-weight: 600;
|
|
17681
|
-
box-shadow: inset 0 -0.25rem 0 0 #528eff;
|
|
17682
17812
|
letter-spacing: 0;
|
|
17683
17813
|
}
|
|
17814
|
+
.pagination-items-per-page > a[aria-expanded=true]::before, .pagination-items-per-page > a.show::before,
|
|
17815
|
+
.pagination-items-per-page > button[aria-expanded=true]::before,
|
|
17816
|
+
.pagination-items-per-page > button.show::before {
|
|
17817
|
+
background-color: transparent;
|
|
17818
|
+
}
|
|
17819
|
+
.pagination-items-per-page > a[aria-expanded=true]:hover::before, .pagination-items-per-page > a.show:hover::before,
|
|
17820
|
+
.pagination-items-per-page > button[aria-expanded=true]:hover::before,
|
|
17821
|
+
.pagination-items-per-page > button.show:hover::before {
|
|
17822
|
+
background-color: #88889a;
|
|
17823
|
+
height: 0.1875rem;
|
|
17824
|
+
}
|
|
17684
17825
|
.pagination-items-per-page > a > .c-inner,
|
|
17685
17826
|
.pagination-items-per-page > button > .c-inner {
|
|
17686
17827
|
margin-bottom: 0;
|
|
@@ -17702,6 +17843,17 @@ label.custom-control-label {
|
|
|
17702
17843
|
cursor: not-allowed;
|
|
17703
17844
|
opacity: 0.5;
|
|
17704
17845
|
pointer-events: auto;
|
|
17846
|
+
font-weight: 400;
|
|
17847
|
+
letter-spacing: 0.033em;
|
|
17848
|
+
}
|
|
17849
|
+
.pagination-items-per-page.disabled > a::before,
|
|
17850
|
+
.pagination-items-per-page.disabled > button::before {
|
|
17851
|
+
content: none;
|
|
17852
|
+
}
|
|
17853
|
+
.pagination-items-per-page.disabled > a.focus::after, .pagination-items-per-page.disabled > a:focus::after,
|
|
17854
|
+
.pagination-items-per-page.disabled > button.focus::after,
|
|
17855
|
+
.pagination-items-per-page.disabled > button:focus::after {
|
|
17856
|
+
content: none;
|
|
17705
17857
|
}
|
|
17706
17858
|
@media (max-width: 767.98px) {
|
|
17707
17859
|
.pagination-items-per-page + .pagination-results {
|
|
@@ -20018,7 +20170,7 @@ caption {
|
|
|
20018
20170
|
.table-title [href] {
|
|
20019
20171
|
color: #272833;
|
|
20020
20172
|
border-radius: 1px;
|
|
20021
|
-
display: inline-
|
|
20173
|
+
display: inline-flex;
|
|
20022
20174
|
max-width: 100%;
|
|
20023
20175
|
transition: box-shadow 0.15s ease-in-out;
|
|
20024
20176
|
}
|
|
@@ -20047,7 +20199,7 @@ caption {
|
|
|
20047
20199
|
.table-link {
|
|
20048
20200
|
color: #272833;
|
|
20049
20201
|
border-radius: 1px;
|
|
20050
|
-
display: inline-
|
|
20202
|
+
display: inline-flex;
|
|
20051
20203
|
max-width: 100%;
|
|
20052
20204
|
transition: box-shadow 0.15s ease-in-out;
|
|
20053
20205
|
}
|
|
@@ -20374,7 +20526,7 @@ caption {
|
|
|
20374
20526
|
.table-list-title [href] {
|
|
20375
20527
|
color: #272833;
|
|
20376
20528
|
border-radius: 1px;
|
|
20377
|
-
display: inline-
|
|
20529
|
+
display: inline-flex;
|
|
20378
20530
|
max-width: 100%;
|
|
20379
20531
|
transition: box-shadow 0.15s ease-in-out;
|
|
20380
20532
|
}
|
|
@@ -20403,7 +20555,7 @@ caption {
|
|
|
20403
20555
|
.table-list-link {
|
|
20404
20556
|
color: #272833;
|
|
20405
20557
|
border-radius: 1px;
|
|
20406
|
-
display: inline-
|
|
20558
|
+
display: inline-flex;
|
|
20407
20559
|
max-width: 100%;
|
|
20408
20560
|
transition: box-shadow 0.15s ease-in-out;
|
|
20409
20561
|
}
|
|
@@ -22638,7 +22790,6 @@ ul.autofit-row {
|
|
|
22638
22790
|
padding-left: inherit;
|
|
22639
22791
|
padding-right: inherit;
|
|
22640
22792
|
padding-top: inherit;
|
|
22641
|
-
text-overflow: inherit;
|
|
22642
22793
|
width: inherit;
|
|
22643
22794
|
}
|
|
22644
22795
|
|
|
@@ -27495,37 +27646,6 @@ button.bg-dark:focus {
|
|
|
27495
27646
|
display: none !important;
|
|
27496
27647
|
}
|
|
27497
27648
|
|
|
27498
|
-
.d-block-c-prefers-reduced-motion {
|
|
27499
|
-
display: none !important;
|
|
27500
|
-
}
|
|
27501
|
-
|
|
27502
|
-
.d-inline-block-c-prefers-reduced-motion {
|
|
27503
|
-
display: none !important;
|
|
27504
|
-
}
|
|
27505
|
-
|
|
27506
|
-
@media (prefers-reduced-motion: reduce) {
|
|
27507
|
-
.d-none-c-prefers-reduced-motion {
|
|
27508
|
-
display: none !important;
|
|
27509
|
-
}
|
|
27510
|
-
|
|
27511
|
-
.d-block-c-prefers-reduced-motion {
|
|
27512
|
-
display: block !important;
|
|
27513
|
-
}
|
|
27514
|
-
|
|
27515
|
-
.d-inline-block-c-prefers-reduced-motion {
|
|
27516
|
-
display: inline-block !important;
|
|
27517
|
-
}
|
|
27518
|
-
}
|
|
27519
|
-
.c-prefers-reduced-motion .d-none-c-prefers-reduced-motion {
|
|
27520
|
-
display: none !important;
|
|
27521
|
-
}
|
|
27522
|
-
.c-prefers-reduced-motion .d-block-c-prefers-reduced-motion {
|
|
27523
|
-
display: block !important;
|
|
27524
|
-
}
|
|
27525
|
-
.c-prefers-reduced-motion .d-inline-block-c-prefers-reduced-motion {
|
|
27526
|
-
display: inline-block !important;
|
|
27527
|
-
}
|
|
27528
|
-
|
|
27529
27649
|
@media print {
|
|
27530
27650
|
.d-print-none {
|
|
27531
27651
|
display: none !important;
|
|
@@ -32554,11 +32674,25 @@ button.bg-dark:focus {
|
|
|
32554
32674
|
}
|
|
32555
32675
|
|
|
32556
32676
|
.text-truncate {
|
|
32677
|
+
display: block;
|
|
32557
32678
|
overflow: hidden;
|
|
32558
32679
|
text-overflow: ellipsis;
|
|
32559
32680
|
white-space: nowrap;
|
|
32560
32681
|
}
|
|
32561
|
-
|
|
32682
|
+
.text-truncate-inline {
|
|
32683
|
+
display: inline-flex;
|
|
32684
|
+
max-width: 100%;
|
|
32685
|
+
}
|
|
32686
|
+
.text-truncate-inline .text-truncate {
|
|
32687
|
+
display: inline-block;
|
|
32688
|
+
max-width: 100%;
|
|
32689
|
+
overflow: hidden;
|
|
32690
|
+
text-overflow: ellipsis;
|
|
32691
|
+
vertical-align: bottom;
|
|
32692
|
+
white-space: nowrap;
|
|
32693
|
+
overflow-wrap: normal;
|
|
32694
|
+
word-wrap: normal;
|
|
32695
|
+
}
|
|
32562
32696
|
.text-left {
|
|
32563
32697
|
text-align: left !important;
|
|
32564
32698
|
}
|
|
@@ -32834,6 +32968,65 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
32834
32968
|
visibility: hidden !important;
|
|
32835
32969
|
}
|
|
32836
32970
|
|
|
32971
|
+
.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 {
|
|
32972
|
+
max-width: 100% !important;
|
|
32973
|
+
overflow-wrap: break-word !important;
|
|
32974
|
+
white-space: normal !important;
|
|
32975
|
+
word-wrap: break-word !important;
|
|
32976
|
+
}
|
|
32977
|
+
|
|
32978
|
+
.c-prefers-link-underline [href]:not(.disabled):not([role=button]) {
|
|
32979
|
+
text-decoration: underline !important;
|
|
32980
|
+
}
|
|
32981
|
+
.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 {
|
|
32982
|
+
content: " ";
|
|
32983
|
+
position: absolute;
|
|
32984
|
+
text-decoration: underline !important;
|
|
32985
|
+
}
|
|
32986
|
+
.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 {
|
|
32987
|
+
content: " ";
|
|
32988
|
+
position: absolute;
|
|
32989
|
+
text-decoration: underline !important;
|
|
32990
|
+
}
|
|
32991
|
+
.c-prefers-link-underline .multi-step-item.disabled .multi-step-icon[href]:not([role=button])::after {
|
|
32992
|
+
text-decoration: none !important;
|
|
32993
|
+
}
|
|
32994
|
+
|
|
32995
|
+
.c-prefers-letter-spacing-1 {
|
|
32996
|
+
letter-spacing: 1px !important;
|
|
32997
|
+
}
|
|
32998
|
+
|
|
32999
|
+
.d-block-c-prefers-reduced-motion {
|
|
33000
|
+
display: none !important;
|
|
33001
|
+
}
|
|
33002
|
+
|
|
33003
|
+
.d-inline-block-c-prefers-reduced-motion {
|
|
33004
|
+
display: none !important;
|
|
33005
|
+
}
|
|
33006
|
+
|
|
33007
|
+
@media (prefers-reduced-motion: reduce) {
|
|
33008
|
+
.d-none-c-prefers-reduced-motion {
|
|
33009
|
+
display: none !important;
|
|
33010
|
+
}
|
|
33011
|
+
|
|
33012
|
+
.d-block-c-prefers-reduced-motion {
|
|
33013
|
+
display: block !important;
|
|
33014
|
+
}
|
|
33015
|
+
|
|
33016
|
+
.d-inline-block-c-prefers-reduced-motion {
|
|
33017
|
+
display: inline-block !important;
|
|
33018
|
+
}
|
|
33019
|
+
}
|
|
33020
|
+
.c-prefers-reduced-motion .d-none-c-prefers-reduced-motion {
|
|
33021
|
+
display: none !important;
|
|
33022
|
+
}
|
|
33023
|
+
.c-prefers-reduced-motion .d-block-c-prefers-reduced-motion {
|
|
33024
|
+
display: block !important;
|
|
33025
|
+
}
|
|
33026
|
+
.c-prefers-reduced-motion .d-inline-block-c-prefers-reduced-motion {
|
|
33027
|
+
display: inline-block !important;
|
|
33028
|
+
}
|
|
33029
|
+
|
|
32837
33030
|
.c-prefers-reduced-motion {
|
|
32838
33031
|
scroll-behavior: auto;
|
|
32839
33032
|
transition: none;
|