epfl-elements 4.6.0 → 4.7.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/assets/config/bootstrap-variables.scss +2 -1
- package/assets/config/colors.json +1 -0
- package/dist/components/atoms/link/link-button.twig +2 -0
- package/dist/components/atoms/link/link.yml +6 -0
- package/dist/css/elements.css +190 -308
- package/dist/css/elements.min.css +1 -1
- package/dist/css/elements.min.css.map +1 -1
- package/dist/css/reader.css +4 -4
- package/dist/css/reader.min.css +1 -1
- package/dist/css/reader.min.css.map +1 -1
- package/dist/icons/icons.svg +1 -1
- package/dist/js/reader.js +33 -24
- package/dist/js/reader.min.js +1 -1
- package/dist/js/reader.min.js.map +1 -1
- package/dist/package.json +2 -2
- package/package.json +2 -2
package/dist/css/elements.css
CHANGED
|
@@ -73,10 +73,6 @@ body {
|
|
|
73
73
|
background-color: #fff;
|
|
74
74
|
}
|
|
75
75
|
|
|
76
|
-
[tabindex="-1"]:focus:not(.focus-visible) {
|
|
77
|
-
outline: 0 !important;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
76
|
[tabindex="-1"]:focus:not(:focus-visible) {
|
|
81
77
|
outline: 0 !important;
|
|
82
78
|
}
|
|
@@ -100,6 +96,7 @@ p {
|
|
|
100
96
|
|
|
101
97
|
abbr[title],
|
|
102
98
|
abbr[data-original-title] {
|
|
99
|
+
text-decoration: underline;
|
|
103
100
|
text-decoration: underline;
|
|
104
101
|
-webkit-text-decoration: underline dotted;
|
|
105
102
|
text-decoration: underline dotted;
|
|
@@ -169,20 +166,24 @@ sup {
|
|
|
169
166
|
|
|
170
167
|
a {
|
|
171
168
|
color: #212121;
|
|
169
|
+
-webkit-text-decoration: underline;
|
|
172
170
|
text-decoration: underline;
|
|
173
171
|
background-color: transparent;
|
|
174
172
|
}
|
|
175
173
|
a:hover {
|
|
176
174
|
color: #ff0000;
|
|
175
|
+
-webkit-text-decoration: underline;
|
|
177
176
|
text-decoration: underline;
|
|
178
177
|
}
|
|
179
178
|
|
|
180
179
|
a:not([href]):not([class]) {
|
|
181
180
|
color: inherit;
|
|
181
|
+
-webkit-text-decoration: none;
|
|
182
182
|
text-decoration: none;
|
|
183
183
|
}
|
|
184
184
|
a:not([href]):not([class]):hover {
|
|
185
185
|
color: inherit;
|
|
186
|
+
-webkit-text-decoration: none;
|
|
186
187
|
text-decoration: none;
|
|
187
188
|
}
|
|
188
189
|
|
|
@@ -241,10 +242,6 @@ button {
|
|
|
241
242
|
border-radius: 0;
|
|
242
243
|
}
|
|
243
244
|
|
|
244
|
-
button:focus:not(.focus-visible) {
|
|
245
|
-
outline: 0;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
245
|
button:focus:not(:focus-visible) {
|
|
249
246
|
outline: 0;
|
|
250
247
|
}
|
|
@@ -2050,7 +2047,7 @@ mark,
|
|
|
2050
2047
|
color: #212121;
|
|
2051
2048
|
background-color: #fff;
|
|
2052
2049
|
background-clip: padding-box;
|
|
2053
|
-
border: 1px solid #
|
|
2050
|
+
border: 1px solid #8e8e8e;
|
|
2054
2051
|
border-radius: 2px;
|
|
2055
2052
|
-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
|
|
2056
2053
|
transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
|
|
@@ -2555,6 +2552,7 @@ textarea.form-control, .selectize-control textarea.selectize-input {
|
|
|
2555
2552
|
font-weight: 400;
|
|
2556
2553
|
color: #212121;
|
|
2557
2554
|
text-align: center;
|
|
2555
|
+
-webkit-text-decoration: none;
|
|
2558
2556
|
text-decoration: none;
|
|
2559
2557
|
vertical-align: middle;
|
|
2560
2558
|
-webkit-user-select: none;
|
|
@@ -2580,6 +2578,7 @@ textarea.form-control, .selectize-control textarea.selectize-input {
|
|
|
2580
2578
|
}
|
|
2581
2579
|
.btn:hover {
|
|
2582
2580
|
color: #212121;
|
|
2581
|
+
-webkit-text-decoration: none;
|
|
2583
2582
|
text-decoration: none;
|
|
2584
2583
|
}
|
|
2585
2584
|
.btn:focus, .btn.focus {
|
|
@@ -3073,13 +3072,16 @@ fieldset:disabled a.btn {
|
|
|
3073
3072
|
.btn-link {
|
|
3074
3073
|
font-weight: 400;
|
|
3075
3074
|
color: #212121;
|
|
3075
|
+
-webkit-text-decoration: underline;
|
|
3076
3076
|
text-decoration: underline;
|
|
3077
3077
|
}
|
|
3078
3078
|
.btn-link:hover {
|
|
3079
3079
|
color: #ff0000;
|
|
3080
|
+
-webkit-text-decoration: underline;
|
|
3080
3081
|
text-decoration: underline;
|
|
3081
3082
|
}
|
|
3082
3083
|
.btn-link:focus, .btn-link.focus {
|
|
3084
|
+
-webkit-text-decoration: underline;
|
|
3083
3085
|
text-decoration: underline;
|
|
3084
3086
|
}
|
|
3085
3087
|
.btn-link:disabled, .btn-link.disabled {
|
|
@@ -3359,6 +3361,7 @@ input[type=button].btn-block {
|
|
|
3359
3361
|
font-weight: 400;
|
|
3360
3362
|
color: #212121;
|
|
3361
3363
|
text-align: inherit;
|
|
3364
|
+
-webkit-text-decoration: none;
|
|
3362
3365
|
text-decoration: none;
|
|
3363
3366
|
white-space: nowrap;
|
|
3364
3367
|
background-color: transparent;
|
|
@@ -3366,11 +3369,13 @@ input[type=button].btn-block {
|
|
|
3366
3369
|
}
|
|
3367
3370
|
.dropdown-item:hover, .dropdown-item:focus {
|
|
3368
3371
|
color: #141414;
|
|
3372
|
+
-webkit-text-decoration: none;
|
|
3369
3373
|
text-decoration: none;
|
|
3370
3374
|
background-color: #e6e6e6;
|
|
3371
3375
|
}
|
|
3372
3376
|
.dropdown-item.active, .dropdown-item:active {
|
|
3373
3377
|
color: #fff;
|
|
3378
|
+
-webkit-text-decoration: none;
|
|
3374
3379
|
text-decoration: none;
|
|
3375
3380
|
background-color: #ff0000;
|
|
3376
3381
|
}
|
|
@@ -3536,7 +3541,7 @@ input[type=button].btn-block {
|
|
|
3536
3541
|
text-align: center;
|
|
3537
3542
|
white-space: nowrap;
|
|
3538
3543
|
background-color: #d5d5d5;
|
|
3539
|
-
border: 1px solid #
|
|
3544
|
+
border: 1px solid #8e8e8e;
|
|
3540
3545
|
border-radius: 2px;
|
|
3541
3546
|
}
|
|
3542
3547
|
.input-group-text input[type=radio],
|
|
@@ -3611,7 +3616,8 @@ input[type=button].btn-block {
|
|
|
3611
3616
|
display: block;
|
|
3612
3617
|
min-height: 1.5rem;
|
|
3613
3618
|
padding-left: 2.5rem;
|
|
3614
|
-
print-color-adjust: exact;
|
|
3619
|
+
-webkit-print-color-adjust: exact;
|
|
3620
|
+
print-color-adjust: exact;
|
|
3615
3621
|
}
|
|
3616
3622
|
|
|
3617
3623
|
.custom-control-inline {
|
|
@@ -3668,7 +3674,7 @@ input[type=button].btn-block {
|
|
|
3668
3674
|
pointer-events: none;
|
|
3669
3675
|
content: "";
|
|
3670
3676
|
background-color: #fff;
|
|
3671
|
-
border: 1px solid #
|
|
3677
|
+
border: 1px solid #8e8e8e;
|
|
3672
3678
|
}
|
|
3673
3679
|
.custom-control-label::after {
|
|
3674
3680
|
position: absolute;
|
|
@@ -3725,7 +3731,7 @@ input[type=button].btn-block {
|
|
|
3725
3731
|
left: calc(-3.25rem + 2px);
|
|
3726
3732
|
width: calc(1rem - 4px);
|
|
3727
3733
|
height: calc(1rem - 4px);
|
|
3728
|
-
background-color: #
|
|
3734
|
+
background-color: #8e8e8e;
|
|
3729
3735
|
border-radius: 0.5rem;
|
|
3730
3736
|
-webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
|
|
3731
3737
|
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
|
|
@@ -3758,7 +3764,7 @@ input[type=button].btn-block {
|
|
|
3758
3764
|
color: #212121;
|
|
3759
3765
|
vertical-align: middle;
|
|
3760
3766
|
background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23212121' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px 10px no-repeat;
|
|
3761
|
-
border: 1px solid #
|
|
3767
|
+
border: 1px solid #8e8e8e;
|
|
3762
3768
|
border-radius: 2px;
|
|
3763
3769
|
-webkit-appearance: none;
|
|
3764
3770
|
-moz-appearance: none;
|
|
@@ -3852,7 +3858,7 @@ input[type=button].btn-block {
|
|
|
3852
3858
|
line-height: 1.5;
|
|
3853
3859
|
color: #212121;
|
|
3854
3860
|
background-color: #fff;
|
|
3855
|
-
border: 1px solid #
|
|
3861
|
+
border: 1px solid #8e8e8e;
|
|
3856
3862
|
border-radius: 2px;
|
|
3857
3863
|
}
|
|
3858
3864
|
.custom-file-label::after {
|
|
@@ -3999,19 +4005,19 @@ input[type=button].btn-block {
|
|
|
3999
4005
|
border-radius: 1rem;
|
|
4000
4006
|
}
|
|
4001
4007
|
.custom-range:disabled::-webkit-slider-thumb {
|
|
4002
|
-
background-color: #
|
|
4008
|
+
background-color: #8e8e8e;
|
|
4003
4009
|
}
|
|
4004
4010
|
.custom-range:disabled::-webkit-slider-runnable-track {
|
|
4005
4011
|
cursor: default;
|
|
4006
4012
|
}
|
|
4007
4013
|
.custom-range:disabled::-moz-range-thumb {
|
|
4008
|
-
background-color: #
|
|
4014
|
+
background-color: #8e8e8e;
|
|
4009
4015
|
}
|
|
4010
4016
|
.custom-range:disabled::-moz-range-track {
|
|
4011
4017
|
cursor: default;
|
|
4012
4018
|
}
|
|
4013
4019
|
.custom-range:disabled::-ms-thumb {
|
|
4014
|
-
background-color: #
|
|
4020
|
+
background-color: #8e8e8e;
|
|
4015
4021
|
}
|
|
4016
4022
|
|
|
4017
4023
|
.custom-control-label::before,
|
|
@@ -4045,9 +4051,11 @@ input[type=button].btn-block {
|
|
|
4045
4051
|
.nav-link {
|
|
4046
4052
|
display: block;
|
|
4047
4053
|
padding: 0.5rem 1rem;
|
|
4054
|
+
-webkit-text-decoration: none;
|
|
4048
4055
|
text-decoration: none;
|
|
4049
4056
|
}
|
|
4050
4057
|
.nav-link:hover, .nav-link:focus {
|
|
4058
|
+
-webkit-text-decoration: none;
|
|
4051
4059
|
text-decoration: none;
|
|
4052
4060
|
}
|
|
4053
4061
|
.nav-link.disabled {
|
|
@@ -4184,6 +4192,7 @@ input[type=button].btn-block {
|
|
|
4184
4192
|
}
|
|
4185
4193
|
|
|
4186
4194
|
.card-link:hover {
|
|
4195
|
+
-webkit-text-decoration: none;
|
|
4187
4196
|
text-decoration: none;
|
|
4188
4197
|
}
|
|
4189
4198
|
.card-link + .card-link {
|
|
@@ -4333,7 +4342,6 @@ input[type=button].btn-block {
|
|
|
4333
4342
|
-webkit-column-count: 3;
|
|
4334
4343
|
-moz-column-count: 3;
|
|
4335
4344
|
column-count: 3;
|
|
4336
|
-
grid-column-gap: 1.25rem;
|
|
4337
4345
|
-webkit-column-gap: 1.25rem;
|
|
4338
4346
|
-moz-column-gap: 1.25rem;
|
|
4339
4347
|
column-gap: 1.25rem;
|
|
@@ -4382,6 +4390,7 @@ input[type=button].btn-block {
|
|
|
4382
4390
|
margin-left: -1px;
|
|
4383
4391
|
line-height: 1.25;
|
|
4384
4392
|
color: #ff0000;
|
|
4393
|
+
-webkit-text-decoration: none;
|
|
4385
4394
|
text-decoration: none;
|
|
4386
4395
|
background-color: #fff;
|
|
4387
4396
|
border: 1px solid #d5d5d5;
|
|
@@ -4389,6 +4398,7 @@ input[type=button].btn-block {
|
|
|
4389
4398
|
.page-link:hover {
|
|
4390
4399
|
z-index: 2;
|
|
4391
4400
|
color: #ff0000;
|
|
4401
|
+
-webkit-text-decoration: none;
|
|
4392
4402
|
text-decoration: none;
|
|
4393
4403
|
background-color: #fff;
|
|
4394
4404
|
border-color: #707070;
|
|
@@ -4473,6 +4483,7 @@ input[type=button].btn-block {
|
|
|
4473
4483
|
}
|
|
4474
4484
|
}
|
|
4475
4485
|
a.badge:hover, a.badge:focus {
|
|
4486
|
+
-webkit-text-decoration: none;
|
|
4476
4487
|
text-decoration: none;
|
|
4477
4488
|
}
|
|
4478
4489
|
|
|
@@ -4819,6 +4830,7 @@ a.badge-dark:focus, a.badge-dark.focus {
|
|
|
4819
4830
|
.list-group-item-action:hover, .list-group-item-action:focus {
|
|
4820
4831
|
z-index: 1;
|
|
4821
4832
|
color: #707070;
|
|
4833
|
+
-webkit-text-decoration: none;
|
|
4822
4834
|
text-decoration: none;
|
|
4823
4835
|
background-color: #e6e6e6;
|
|
4824
4836
|
}
|
|
@@ -4831,6 +4843,7 @@ a.badge-dark:focus, a.badge-dark.focus {
|
|
|
4831
4843
|
position: relative;
|
|
4832
4844
|
display: block;
|
|
4833
4845
|
padding: 0.75rem 1.25rem;
|
|
4846
|
+
-webkit-text-decoration: none;
|
|
4834
4847
|
text-decoration: none;
|
|
4835
4848
|
background-color: #fff;
|
|
4836
4849
|
border: 1px solid rgba(33, 33, 33, 0.125);
|
|
@@ -5156,6 +5169,7 @@ a.badge-dark:focus, a.badge-dark.focus {
|
|
|
5156
5169
|
}
|
|
5157
5170
|
.close:hover {
|
|
5158
5171
|
color: #707070;
|
|
5172
|
+
-webkit-text-decoration: none;
|
|
5159
5173
|
text-decoration: none;
|
|
5160
5174
|
}
|
|
5161
5175
|
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
|
|
@@ -5405,12 +5419,6 @@ a.close.disabled {
|
|
|
5405
5419
|
max-width: 1140px;
|
|
5406
5420
|
}
|
|
5407
5421
|
}
|
|
5408
|
-
[dir="ltr"] .tooltip{
|
|
5409
|
-
text-align: left;
|
|
5410
|
-
}
|
|
5411
|
-
[dir="rtl"] .tooltip{
|
|
5412
|
-
text-align: right;
|
|
5413
|
-
}
|
|
5414
5422
|
.tooltip {
|
|
5415
5423
|
position: absolute;
|
|
5416
5424
|
z-index: 1070;
|
|
@@ -5421,6 +5429,8 @@ a.close.disabled {
|
|
|
5421
5429
|
font-weight: 400;
|
|
5422
5430
|
line-height: 1.5;
|
|
5423
5431
|
text-align: left;
|
|
5432
|
+
text-align: start;
|
|
5433
|
+
-webkit-text-decoration: none;
|
|
5424
5434
|
text-decoration: none;
|
|
5425
5435
|
text-shadow: none;
|
|
5426
5436
|
text-transform: none;
|
|
@@ -5510,14 +5520,6 @@ a.close.disabled {
|
|
|
5510
5520
|
border-radius: 2px;
|
|
5511
5521
|
}
|
|
5512
5522
|
|
|
5513
|
-
[dir="ltr"] .popover{
|
|
5514
|
-
text-align: left;
|
|
5515
|
-
}
|
|
5516
|
-
|
|
5517
|
-
[dir="rtl"] .popover{
|
|
5518
|
-
text-align: right;
|
|
5519
|
-
}
|
|
5520
|
-
|
|
5521
5523
|
.popover {
|
|
5522
5524
|
position: absolute;
|
|
5523
5525
|
top: 0;
|
|
@@ -5530,6 +5532,8 @@ a.close.disabled {
|
|
|
5530
5532
|
font-weight: 400;
|
|
5531
5533
|
line-height: 1.5;
|
|
5532
5534
|
text-align: left;
|
|
5535
|
+
text-align: start;
|
|
5536
|
+
-webkit-text-decoration: none;
|
|
5533
5537
|
text-decoration: none;
|
|
5534
5538
|
text-shadow: none;
|
|
5535
5539
|
text-transform: none;
|
|
@@ -5785,6 +5789,7 @@ a.close.disabled {
|
|
|
5785
5789
|
.carousel-control-next:hover,
|
|
5786
5790
|
.carousel-control-next:focus {
|
|
5787
5791
|
color: #fff;
|
|
5792
|
+
-webkit-text-decoration: none;
|
|
5788
5793
|
text-decoration: none;
|
|
5789
5794
|
outline: 0;
|
|
5790
5795
|
opacity: 0.9;
|
|
@@ -7518,7 +7523,6 @@ button.bg-dark:focus {
|
|
|
7518
7523
|
.user-select-all {
|
|
7519
7524
|
-webkit-user-select: all !important;
|
|
7520
7525
|
-moz-user-select: all !important;
|
|
7521
|
-
-ms-user-select: all !important;
|
|
7522
7526
|
user-select: all !important;
|
|
7523
7527
|
}
|
|
7524
7528
|
|
|
@@ -10795,6 +10799,7 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
10795
10799
|
}
|
|
10796
10800
|
|
|
10797
10801
|
.text-decoration-none {
|
|
10802
|
+
-webkit-text-decoration: none !important;
|
|
10798
10803
|
text-decoration: none !important;
|
|
10799
10804
|
}
|
|
10800
10805
|
|
|
@@ -10824,6 +10829,7 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
10824
10829
|
box-shadow: none !important;
|
|
10825
10830
|
}
|
|
10826
10831
|
a:not(.btn) {
|
|
10832
|
+
-webkit-text-decoration: underline;
|
|
10827
10833
|
text-decoration: underline;
|
|
10828
10834
|
}
|
|
10829
10835
|
abbr[title]::after {
|
|
@@ -10834,7 +10840,7 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
10834
10840
|
}
|
|
10835
10841
|
pre,
|
|
10836
10842
|
blockquote {
|
|
10837
|
-
border: 1px solid #
|
|
10843
|
+
border: 1px solid #8e8e8e;
|
|
10838
10844
|
page-break-inside: avoid;
|
|
10839
10845
|
}
|
|
10840
10846
|
tr,
|
|
@@ -11354,18 +11360,22 @@ a:hover .text-arrow:after {
|
|
|
11354
11360
|
Bootstrap v5 + legacy
|
|
11355
11361
|
*/
|
|
11356
11362
|
.underline, .text-decoration-underline {
|
|
11363
|
+
-webkit-text-decoration: underline;
|
|
11357
11364
|
text-decoration: underline;
|
|
11358
11365
|
}
|
|
11359
11366
|
|
|
11360
11367
|
.overline, .text-decoration-overline {
|
|
11368
|
+
-webkit-text-decoration: overline;
|
|
11361
11369
|
text-decoration: overline;
|
|
11362
11370
|
}
|
|
11363
11371
|
|
|
11364
11372
|
.line-through, .text-decoration-line-through {
|
|
11373
|
+
-webkit-text-decoration: line-through;
|
|
11365
11374
|
text-decoration: line-through;
|
|
11366
11375
|
}
|
|
11367
11376
|
|
|
11368
11377
|
.no-underline {
|
|
11378
|
+
-webkit-text-decoration: none;
|
|
11369
11379
|
text-decoration: none;
|
|
11370
11380
|
}
|
|
11371
11381
|
|
|
@@ -11451,13 +11461,13 @@ button.bg-gray-400:focus {
|
|
|
11451
11461
|
}
|
|
11452
11462
|
|
|
11453
11463
|
.bg-gray-500 {
|
|
11454
|
-
background-color: #
|
|
11464
|
+
background-color: #8e8e8e !important;
|
|
11455
11465
|
}
|
|
11456
11466
|
|
|
11457
11467
|
a.bg-gray-500:hover, a.bg-gray-500:focus,
|
|
11458
11468
|
button.bg-gray-500:hover,
|
|
11459
11469
|
button.bg-gray-500:focus {
|
|
11460
|
-
background-color: #
|
|
11470
|
+
background-color: #757575 !important;
|
|
11461
11471
|
}
|
|
11462
11472
|
|
|
11463
11473
|
.bg-gray-600 {
|
|
@@ -11521,7 +11531,7 @@ hr {
|
|
|
11521
11531
|
}
|
|
11522
11532
|
|
|
11523
11533
|
.text-gray-500 {
|
|
11524
|
-
color: #
|
|
11534
|
+
color: #8e8e8e !important;
|
|
11525
11535
|
}
|
|
11526
11536
|
|
|
11527
11537
|
.text-gray-600 {
|
|
@@ -11754,20 +11764,6 @@ input[type=button]:disabled,
|
|
|
11754
11764
|
input[type=button].disabled {
|
|
11755
11765
|
opacity: 1;
|
|
11756
11766
|
}
|
|
11757
|
-
.btn:focus, .btn.focus-visible, .btn.focus,
|
|
11758
|
-
button:focus,
|
|
11759
|
-
button.focus-visible,
|
|
11760
|
-
button.focus,
|
|
11761
|
-
button.btn:focus,
|
|
11762
|
-
button.btn.focus-visible,
|
|
11763
|
-
button.btn.focus,
|
|
11764
|
-
input[type=button]:focus,
|
|
11765
|
-
input[type=button].focus-visible,
|
|
11766
|
-
input[type=button].focus {
|
|
11767
|
-
outline-width: 2px !important;
|
|
11768
|
-
outline-style: solid !important;
|
|
11769
|
-
outline-offset: 2px;
|
|
11770
|
-
}
|
|
11771
11767
|
.btn:focus, .btn:focus-visible, .btn.focus,
|
|
11772
11768
|
button:focus,
|
|
11773
11769
|
button:focus-visible,
|
|
@@ -11784,6 +11780,7 @@ input[type=button].focus {
|
|
|
11784
11780
|
}
|
|
11785
11781
|
|
|
11786
11782
|
.btn {
|
|
11783
|
+
-webkit-text-decoration: none;
|
|
11787
11784
|
text-decoration: none;
|
|
11788
11785
|
white-space: normal;
|
|
11789
11786
|
-webkit-transition: background 0.15s, color 0.15s, border-color 0.15s;
|
|
@@ -11800,9 +11797,6 @@ input[type=button].focus {
|
|
|
11800
11797
|
background: #b51f1f;
|
|
11801
11798
|
border-color: #b51f1f;
|
|
11802
11799
|
}
|
|
11803
|
-
.btn-primary:focus, .btn-primary.focus-visible, .btn-primary.focus {
|
|
11804
|
-
outline-color: #b51f1f !important;
|
|
11805
|
-
}
|
|
11806
11800
|
.btn-primary:focus, .btn-primary:focus-visible, .btn-primary.focus {
|
|
11807
11801
|
outline-color: #b51f1f !important;
|
|
11808
11802
|
}
|
|
@@ -11823,7 +11817,7 @@ input[type=button].focus {
|
|
|
11823
11817
|
|
|
11824
11818
|
.btn-secondary {
|
|
11825
11819
|
background: transparent;
|
|
11826
|
-
border-color: #
|
|
11820
|
+
border-color: #8e8e8e;
|
|
11827
11821
|
}
|
|
11828
11822
|
.bg-dark .btn-secondary {
|
|
11829
11823
|
border-color: #707070;
|
|
@@ -11840,9 +11834,6 @@ input[type=button].focus {
|
|
|
11840
11834
|
background: transparent;
|
|
11841
11835
|
border-color: #e6e6e6;
|
|
11842
11836
|
}
|
|
11843
|
-
.btn-secondary:focus, .btn-secondary.focus-visible, .btn-secondary.focus {
|
|
11844
|
-
outline-color: #707070 !important;
|
|
11845
|
-
}
|
|
11846
11837
|
.btn-secondary:focus, .btn-secondary:focus-visible, .btn-secondary.focus {
|
|
11847
11838
|
outline-color: #707070 !important;
|
|
11848
11839
|
}
|
|
@@ -11901,16 +11892,18 @@ a.tag:hover {
|
|
|
11901
11892
|
border-right-color: #a8a8a8;
|
|
11902
11893
|
border-left-color: #a8a8a8;
|
|
11903
11894
|
color: #212121;
|
|
11895
|
+
-webkit-text-decoration: none;
|
|
11904
11896
|
text-decoration: none;
|
|
11905
11897
|
}
|
|
11906
11898
|
|
|
11907
|
-
.tag {
|
|
11899
|
+
a.tag, button.tag, span.tag, div.tag, p.tag {
|
|
11908
11900
|
display: inline-block;
|
|
11909
11901
|
margin: 0 0.1em 0.3em 0;
|
|
11910
11902
|
padding: 0.4em 0.6em;
|
|
11903
|
+
-webkit-text-decoration: none;
|
|
11911
11904
|
text-decoration: none;
|
|
11912
11905
|
background: #fff;
|
|
11913
|
-
border: 1px solid #
|
|
11906
|
+
border: 1px solid #8e8e8e;
|
|
11914
11907
|
font-size: inherit;
|
|
11915
11908
|
line-height: 1;
|
|
11916
11909
|
font-weight: 400;
|
|
@@ -11920,7 +11913,8 @@ a.tag:hover {
|
|
|
11920
11913
|
transition: color 0.2s ease-in-out, background 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
11921
11914
|
vertical-align: middle;
|
|
11922
11915
|
}
|
|
11923
|
-
.tag .remove {
|
|
11916
|
+
a.tag .remove, button.tag .remove, span.tag .remove, div.tag .remove, p.tag .remove {
|
|
11917
|
+
-webkit-text-decoration: none;
|
|
11924
11918
|
text-decoration: none;
|
|
11925
11919
|
float: right;
|
|
11926
11920
|
padding: 0;
|
|
@@ -11933,39 +11927,39 @@ a.tag:hover {
|
|
|
11933
11927
|
-webkit-transition: all 0.2s ease-in-out;
|
|
11934
11928
|
transition: all 0.2s ease-in-out;
|
|
11935
11929
|
}
|
|
11936
|
-
.tag .remove:hover {
|
|
11930
|
+
a.tag .remove:hover, button.tag .remove:hover, span.tag .remove:hover, div.tag .remove:hover, p.tag .remove:hover {
|
|
11937
11931
|
color: #ff0000;
|
|
11938
11932
|
}
|
|
11939
|
-
.tag.tag-sm {
|
|
11933
|
+
a.tag.tag-sm, button.tag.tag-sm, span.tag.tag-sm, div.tag.tag-sm, p.tag.tag-sm {
|
|
11940
11934
|
font-size: 0.75em;
|
|
11941
11935
|
}
|
|
11942
|
-
.tag.tag-plain {
|
|
11936
|
+
a.tag.tag-plain, button.tag.tag-plain, span.tag.tag-plain, div.tag.tag-plain, p.tag.tag-plain {
|
|
11943
11937
|
border-color: #707070;
|
|
11944
11938
|
background: #707070;
|
|
11945
11939
|
color: #fff;
|
|
11946
11940
|
}
|
|
11947
|
-
.tag.tag-primary {
|
|
11941
|
+
a.tag.tag-primary, button.tag.tag-primary, span.tag.tag-primary, div.tag.tag-primary, p.tag.tag-primary {
|
|
11948
11942
|
border-bottom: 1px solid #ff0000;
|
|
11949
11943
|
}
|
|
11950
|
-
.tag.tag-secondary {
|
|
11944
|
+
a.tag.tag-secondary, button.tag.tag-secondary, span.tag.tag-secondary, div.tag.tag-secondary, p.tag.tag-secondary {
|
|
11951
11945
|
border-bottom: 1px solid #212121;
|
|
11952
11946
|
}
|
|
11953
|
-
.tag.tag-success {
|
|
11947
|
+
a.tag.tag-success, button.tag.tag-success, span.tag.tag-success, div.tag.tag-success, p.tag.tag-success {
|
|
11954
11948
|
border-bottom: 1px solid #7ed321;
|
|
11955
11949
|
}
|
|
11956
|
-
.tag.tag-info {
|
|
11950
|
+
a.tag.tag-info, button.tag.tag-info, span.tag.tag-info, div.tag.tag-info, p.tag.tag-info {
|
|
11957
11951
|
border-bottom: 1px solid #4a90e2;
|
|
11958
11952
|
}
|
|
11959
|
-
.tag.tag-warning {
|
|
11953
|
+
a.tag.tag-warning, button.tag.tag-warning, span.tag.tag-warning, div.tag.tag-warning, p.tag.tag-warning {
|
|
11960
11954
|
border-bottom: 1px solid #f5a623;
|
|
11961
11955
|
}
|
|
11962
|
-
.tag.tag-danger {
|
|
11956
|
+
a.tag.tag-danger, button.tag.tag-danger, span.tag.tag-danger, div.tag.tag-danger, p.tag.tag-danger {
|
|
11963
11957
|
border-bottom: 1px solid #ff0000;
|
|
11964
11958
|
}
|
|
11965
|
-
.tag.tag-light {
|
|
11959
|
+
a.tag.tag-light, button.tag.tag-light, span.tag.tag-light, div.tag.tag-light, p.tag.tag-light {
|
|
11966
11960
|
border-bottom: 1px solid #c1c1c1;
|
|
11967
11961
|
}
|
|
11968
|
-
.tag.tag-dark {
|
|
11962
|
+
a.tag.tag-dark, button.tag.tag-dark, span.tag.tag-dark, div.tag.tag-dark, p.tag.tag-dark {
|
|
11969
11963
|
border-bottom: 1px solid #212121;
|
|
11970
11964
|
}
|
|
11971
11965
|
|
|
@@ -12002,16 +11996,6 @@ button.tag:focus .remove {
|
|
|
12002
11996
|
background: #ff0000;
|
|
12003
11997
|
color: #fff;
|
|
12004
11998
|
}
|
|
12005
|
-
a.tag:focus, a.tag.focus-visible, a.tag.focus,
|
|
12006
|
-
.btn.tag:focus,
|
|
12007
|
-
.btn.tag.focus-visible,
|
|
12008
|
-
.btn.tag.focus,
|
|
12009
|
-
button.tag:focus,
|
|
12010
|
-
button.tag.focus-visible,
|
|
12011
|
-
button.tag.focus {
|
|
12012
|
-
outline: solid 2px #ff0000 !important;
|
|
12013
|
-
outline-offset: 2px;
|
|
12014
|
-
}
|
|
12015
11999
|
a.tag:focus, a.tag:focus-visible, a.tag.focus,
|
|
12016
12000
|
.btn.tag:focus,
|
|
12017
12001
|
.btn.tag:focus-visible,
|
|
@@ -12022,21 +12006,6 @@ button.tag.focus {
|
|
|
12022
12006
|
outline: solid 2px #ff0000 !important;
|
|
12023
12007
|
outline-offset: 2px;
|
|
12024
12008
|
}
|
|
12025
|
-
a.tag.tag-secondary:focus, a.tag.tag-secondary.focus-visible, a.tag.tag-secondary.focus, a.tag.tag-plain:focus, a.tag.tag-plain.focus-visible, a.tag.tag-plain.focus,
|
|
12026
|
-
.btn.tag.tag-secondary:focus,
|
|
12027
|
-
.btn.tag.tag-secondary.focus-visible,
|
|
12028
|
-
.btn.tag.tag-secondary.focus,
|
|
12029
|
-
.btn.tag.tag-plain:focus,
|
|
12030
|
-
.btn.tag.tag-plain.focus-visible,
|
|
12031
|
-
.btn.tag.tag-plain.focus,
|
|
12032
|
-
button.tag.tag-secondary:focus,
|
|
12033
|
-
button.tag.tag-secondary.focus-visible,
|
|
12034
|
-
button.tag.tag-secondary.focus,
|
|
12035
|
-
button.tag.tag-plain:focus,
|
|
12036
|
-
button.tag.tag-plain.focus-visible,
|
|
12037
|
-
button.tag.tag-plain.focus {
|
|
12038
|
-
outline-color: #707070 !important;
|
|
12039
|
-
}
|
|
12040
12009
|
a.tag.tag-secondary:focus, a.tag.tag-secondary:focus-visible, a.tag.tag-secondary.focus, a.tag.tag-plain:focus, a.tag.tag-plain:focus-visible, a.tag.tag-plain.focus,
|
|
12041
12010
|
.btn.tag.tag-secondary:focus,
|
|
12042
12011
|
.btn.tag.tag-secondary:focus-visible,
|
|
@@ -12128,6 +12097,7 @@ button.tag.tag-plain:focus .remove {
|
|
|
12128
12097
|
border-right-color: #a8a8a8;
|
|
12129
12098
|
border-left-color: #a8a8a8;
|
|
12130
12099
|
color: #212121;
|
|
12100
|
+
-webkit-text-decoration: none;
|
|
12131
12101
|
text-decoration: none;
|
|
12132
12102
|
}
|
|
12133
12103
|
.selectize-control .selectize-input input {
|
|
@@ -12420,10 +12390,6 @@ button.tag.tag-plain:focus .remove {
|
|
|
12420
12390
|
margin-bottom: 0;
|
|
12421
12391
|
}
|
|
12422
12392
|
|
|
12423
|
-
button.collapse-title:focus, button.collapse-title.focus-visible {
|
|
12424
|
-
outline: 0 !important;
|
|
12425
|
-
}
|
|
12426
|
-
|
|
12427
12393
|
button.collapse-title:focus, button.collapse-title:focus-visible {
|
|
12428
12394
|
outline: 0 !important;
|
|
12429
12395
|
}
|
|
@@ -12482,6 +12448,7 @@ header.collapse-title + .collapse-item:before {
|
|
|
12482
12448
|
-webkit-box-align: baseline;
|
|
12483
12449
|
-ms-flex-align: baseline;
|
|
12484
12450
|
align-items: baseline;
|
|
12451
|
+
-webkit-text-decoration: none;
|
|
12485
12452
|
text-decoration: none;
|
|
12486
12453
|
}
|
|
12487
12454
|
.link-collapse:after {
|
|
@@ -12686,14 +12653,11 @@ header.collapse-title + .collapse-item:before {
|
|
|
12686
12653
|
transform: translateY(-50%);
|
|
12687
12654
|
-webkit-transition: all 0.3s ease-in-out;
|
|
12688
12655
|
transition: all 0.3s ease-in-out;
|
|
12656
|
+
-webkit-text-decoration: underline;
|
|
12689
12657
|
text-decoration: underline;
|
|
12690
12658
|
text-decoration-thickness: 0.08em;
|
|
12691
12659
|
text-underline-offset: 2px;
|
|
12692
12660
|
}
|
|
12693
|
-
.drawer .drawer-link.focus-visible .text {
|
|
12694
|
-
text-decoration-thickness: 0.2em;
|
|
12695
|
-
text-underline-offset: 4px;
|
|
12696
|
-
}
|
|
12697
12661
|
.drawer .drawer-link:focus-visible .text {
|
|
12698
12662
|
text-decoration-thickness: 0.2em;
|
|
12699
12663
|
text-underline-offset: 4px;
|
|
@@ -12724,9 +12688,6 @@ header.collapse-title + .collapse-item:before {
|
|
|
12724
12688
|
.drawer .drawer-toggle:hover {
|
|
12725
12689
|
background: #b51f1f;
|
|
12726
12690
|
}
|
|
12727
|
-
.drawer .drawer-toggle:focus, .drawer .drawer-toggle.focus-visible {
|
|
12728
|
-
outline: 0 !important;
|
|
12729
|
-
}
|
|
12730
12691
|
.drawer .drawer-toggle:focus, .drawer .drawer-toggle:focus-visible {
|
|
12731
12692
|
outline: 0 !important;
|
|
12732
12693
|
}
|
|
@@ -12734,10 +12695,6 @@ header.collapse-title + .collapse-item:before {
|
|
|
12734
12695
|
-webkit-transform: rotate(180deg) translateY(50%);
|
|
12735
12696
|
transform: rotate(180deg) translateY(50%);
|
|
12736
12697
|
}
|
|
12737
|
-
.drawer[focus-within] {
|
|
12738
|
-
outline: 2px solid #b51f1f;
|
|
12739
|
-
outline-offset: 2px;
|
|
12740
|
-
}
|
|
12741
12698
|
.drawer:focus-within {
|
|
12742
12699
|
outline: 2px solid #b51f1f;
|
|
12743
12700
|
outline-offset: 2px;
|
|
@@ -12786,6 +12743,7 @@ header.collapse-title + .collapse-item:before {
|
|
|
12786
12743
|
}
|
|
12787
12744
|
|
|
12788
12745
|
.form-control, .selectize-control .selectize-input {
|
|
12746
|
+
border-color: #8e8e8e;
|
|
12789
12747
|
height: auto;
|
|
12790
12748
|
-webkit-transition: color 0.3s, border-color 0.3s, outline 0.3s, -webkit-box-shadow 0.3s;
|
|
12791
12749
|
transition: color 0.3s, border-color 0.3s, outline 0.3s, -webkit-box-shadow 0.3s;
|
|
@@ -12821,7 +12779,7 @@ header.collapse-title + .collapse-item:before {
|
|
|
12821
12779
|
margin-right: 3rem;
|
|
12822
12780
|
}
|
|
12823
12781
|
.nav-lang.show .dropdown-toggle {
|
|
12824
|
-
border: 1px solid #
|
|
12782
|
+
border: 1px solid #8e8e8e;
|
|
12825
12783
|
}
|
|
12826
12784
|
.nav-lang .dropdown-toggle,
|
|
12827
12785
|
.nav-lang .dropdown-item {
|
|
@@ -12888,7 +12846,7 @@ header.collapse-title + .collapse-item:before {
|
|
|
12888
12846
|
}
|
|
12889
12847
|
.nav-lang .dropdown-menu a:not(.active) {
|
|
12890
12848
|
background: white;
|
|
12891
|
-
border: 1px solid #
|
|
12849
|
+
border: 1px solid #8e8e8e;
|
|
12892
12850
|
}
|
|
12893
12851
|
.nav-lang .dropdown-menu a:not(.active):hover {
|
|
12894
12852
|
background: #e6e6e6;
|
|
@@ -12955,7 +12913,7 @@ header.collapse-title + .collapse-item:before {
|
|
|
12955
12913
|
color: #ff0000;
|
|
12956
12914
|
}
|
|
12957
12915
|
.nav-lang-short ul li a {
|
|
12958
|
-
color: #
|
|
12916
|
+
color: #8e8e8e;
|
|
12959
12917
|
}
|
|
12960
12918
|
.nav-lang-short ul li a:hover {
|
|
12961
12919
|
color: #212121;
|
|
@@ -12963,6 +12921,7 @@ header.collapse-title + .collapse-item:before {
|
|
|
12963
12921
|
.nav-lang-short ul li a,
|
|
12964
12922
|
.nav-lang-short ul li span {
|
|
12965
12923
|
padding: 0.4rem;
|
|
12924
|
+
-webkit-text-decoration: none;
|
|
12966
12925
|
text-decoration: none;
|
|
12967
12926
|
}
|
|
12968
12927
|
|
|
@@ -13097,159 +13056,85 @@ header.collapse-title + .collapse-item:before {
|
|
|
13097
13056
|
overflow: hidden;
|
|
13098
13057
|
}
|
|
13099
13058
|
|
|
13100
|
-
a
|
|
13101
|
-
|
|
13102
|
-
|
|
13103
|
-
text-decoration: underline;
|
|
13104
|
-
background-color: transparent;
|
|
13105
|
-
-webkit-text-decoration-color: #ff0000;
|
|
13106
|
-
text-decoration-color: #ff0000;
|
|
13107
|
-
-webkit-transition: color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
|
|
13108
|
-
transition: color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
|
|
13059
|
+
a {
|
|
13060
|
+
text-decoration-color: #ff0000;
|
|
13061
|
+
-webkit-transition: text-decoration-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
|
13109
13062
|
transition: text-decoration-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
|
13110
|
-
transition: text-decoration-color 0.2s ease-in-out, color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
|
|
13111
13063
|
}
|
|
13112
|
-
a:hover, a:focus, a:active
|
|
13113
|
-
|
|
13114
|
-
a:visited:focus,
|
|
13115
|
-
a:visited:active {
|
|
13116
|
-
-webkit-text-decoration-color: #212121;
|
|
13117
|
-
text-decoration-color: #212121;
|
|
13064
|
+
a:hover, a:focus, a:active {
|
|
13065
|
+
text-decoration-color: #212121;
|
|
13118
13066
|
}
|
|
13119
|
-
a:active
|
|
13120
|
-
a:visited:active {
|
|
13067
|
+
a:active {
|
|
13121
13068
|
color: #ff0000;
|
|
13122
13069
|
}
|
|
13123
|
-
a.text-muted
|
|
13124
|
-
|
|
13125
|
-
-webkit-text-decoration-color: #707070;
|
|
13126
|
-
text-decoration-color: #707070;
|
|
13070
|
+
a.text-muted {
|
|
13071
|
+
text-decoration-color: #707070;
|
|
13127
13072
|
}
|
|
13128
|
-
a.text-muted:hover
|
|
13129
|
-
a:visited.text-muted:hover {
|
|
13073
|
+
a.text-muted:hover {
|
|
13130
13074
|
color: #212121 !important;
|
|
13131
|
-
|
|
13132
|
-
|
|
13133
|
-
|
|
13134
|
-
|
|
13135
|
-
|
|
13136
|
-
a:
|
|
13137
|
-
|
|
13138
|
-
|
|
13139
|
-
|
|
13140
|
-
.text-white a:hover, .text-white a:focus, .text-white a:active, a.text-white:hover, a.text-white:focus, a.text-white:active,
|
|
13141
|
-
.text-white a:visited:hover,
|
|
13142
|
-
.text-white a:visited:focus,
|
|
13143
|
-
.text-white a:visited:active,
|
|
13144
|
-
a:visited.text-white:hover,
|
|
13145
|
-
a:visited.text-white:focus,
|
|
13146
|
-
a:visited.text-white:active {
|
|
13147
|
-
-webkit-text-decoration-color: transparent;
|
|
13148
|
-
text-decoration-color: transparent;
|
|
13149
|
-
}
|
|
13150
|
-
.bg-primary a,
|
|
13151
|
-
.bg-primary a:visited {
|
|
13075
|
+
text-decoration-color: #212121;
|
|
13076
|
+
}
|
|
13077
|
+
.text-white a, a.text-white {
|
|
13078
|
+
text-decoration-color: currentcolor;
|
|
13079
|
+
}
|
|
13080
|
+
.text-white a:hover, .text-white a:focus, .text-white a:active, a.text-white:hover, a.text-white:focus, a.text-white:active {
|
|
13081
|
+
text-decoration-color: transparent;
|
|
13082
|
+
}
|
|
13083
|
+
.bg-primary a {
|
|
13152
13084
|
color: #fff;
|
|
13153
|
-
|
|
13154
|
-
|
|
13155
|
-
|
|
13156
|
-
|
|
13157
|
-
|
|
13158
|
-
.bg-
|
|
13159
|
-
.bg-primary a:visited:active {
|
|
13160
|
-
-webkit-text-decoration-color: transparent;
|
|
13161
|
-
text-decoration-color: transparent;
|
|
13162
|
-
}
|
|
13163
|
-
.bg-secondary a,
|
|
13164
|
-
.bg-secondary a:visited {
|
|
13085
|
+
text-decoration-color: currentcolor;
|
|
13086
|
+
}
|
|
13087
|
+
.bg-primary a:hover, .bg-primary a:focus, .bg-primary a:active {
|
|
13088
|
+
text-decoration-color: transparent;
|
|
13089
|
+
}
|
|
13090
|
+
.bg-secondary a {
|
|
13165
13091
|
color: #212121;
|
|
13166
|
-
|
|
13167
|
-
|
|
13168
|
-
|
|
13169
|
-
|
|
13170
|
-
|
|
13171
|
-
.bg-
|
|
13172
|
-
.bg-secondary a:visited:active {
|
|
13173
|
-
-webkit-text-decoration-color: transparent;
|
|
13174
|
-
text-decoration-color: transparent;
|
|
13175
|
-
}
|
|
13176
|
-
.bg-success a,
|
|
13177
|
-
.bg-success a:visited {
|
|
13092
|
+
text-decoration-color: currentcolor;
|
|
13093
|
+
}
|
|
13094
|
+
.bg-secondary a:hover, .bg-secondary a:focus, .bg-secondary a:active {
|
|
13095
|
+
text-decoration-color: transparent;
|
|
13096
|
+
}
|
|
13097
|
+
.bg-success a {
|
|
13178
13098
|
color: #212121;
|
|
13179
|
-
|
|
13180
|
-
|
|
13181
|
-
|
|
13182
|
-
|
|
13183
|
-
|
|
13184
|
-
.bg-
|
|
13185
|
-
.bg-success a:visited:active {
|
|
13186
|
-
-webkit-text-decoration-color: transparent;
|
|
13187
|
-
text-decoration-color: transparent;
|
|
13188
|
-
}
|
|
13189
|
-
.bg-info a,
|
|
13190
|
-
.bg-info a:visited {
|
|
13099
|
+
text-decoration-color: currentcolor;
|
|
13100
|
+
}
|
|
13101
|
+
.bg-success a:hover, .bg-success a:focus, .bg-success a:active {
|
|
13102
|
+
text-decoration-color: transparent;
|
|
13103
|
+
}
|
|
13104
|
+
.bg-info a {
|
|
13191
13105
|
color: #fff;
|
|
13192
|
-
|
|
13193
|
-
|
|
13194
|
-
|
|
13195
|
-
|
|
13196
|
-
|
|
13197
|
-
.bg-
|
|
13198
|
-
.bg-info a:visited:active {
|
|
13199
|
-
-webkit-text-decoration-color: transparent;
|
|
13200
|
-
text-decoration-color: transparent;
|
|
13201
|
-
}
|
|
13202
|
-
.bg-warning a,
|
|
13203
|
-
.bg-warning a:visited {
|
|
13106
|
+
text-decoration-color: currentcolor;
|
|
13107
|
+
}
|
|
13108
|
+
.bg-info a:hover, .bg-info a:focus, .bg-info a:active {
|
|
13109
|
+
text-decoration-color: transparent;
|
|
13110
|
+
}
|
|
13111
|
+
.bg-warning a {
|
|
13204
13112
|
color: #212121;
|
|
13205
|
-
|
|
13206
|
-
|
|
13207
|
-
|
|
13208
|
-
|
|
13209
|
-
|
|
13210
|
-
.bg-
|
|
13211
|
-
.bg-warning a:visited:active {
|
|
13212
|
-
-webkit-text-decoration-color: transparent;
|
|
13213
|
-
text-decoration-color: transparent;
|
|
13214
|
-
}
|
|
13215
|
-
.bg-danger a,
|
|
13216
|
-
.bg-danger a:visited {
|
|
13113
|
+
text-decoration-color: currentcolor;
|
|
13114
|
+
}
|
|
13115
|
+
.bg-warning a:hover, .bg-warning a:focus, .bg-warning a:active {
|
|
13116
|
+
text-decoration-color: transparent;
|
|
13117
|
+
}
|
|
13118
|
+
.bg-danger a {
|
|
13217
13119
|
color: #fff;
|
|
13218
|
-
|
|
13219
|
-
|
|
13220
|
-
|
|
13221
|
-
|
|
13222
|
-
|
|
13223
|
-
.bg-
|
|
13224
|
-
.bg-danger a:visited:active {
|
|
13225
|
-
-webkit-text-decoration-color: transparent;
|
|
13226
|
-
text-decoration-color: transparent;
|
|
13227
|
-
}
|
|
13228
|
-
.bg-light a,
|
|
13229
|
-
.bg-light a:visited {
|
|
13120
|
+
text-decoration-color: currentcolor;
|
|
13121
|
+
}
|
|
13122
|
+
.bg-danger a:hover, .bg-danger a:focus, .bg-danger a:active {
|
|
13123
|
+
text-decoration-color: transparent;
|
|
13124
|
+
}
|
|
13125
|
+
.bg-light a {
|
|
13230
13126
|
color: #212121;
|
|
13231
|
-
|
|
13232
|
-
|
|
13233
|
-
|
|
13234
|
-
|
|
13235
|
-
|
|
13236
|
-
.bg-
|
|
13237
|
-
.bg-light a:visited:active {
|
|
13238
|
-
-webkit-text-decoration-color: transparent;
|
|
13239
|
-
text-decoration-color: transparent;
|
|
13240
|
-
}
|
|
13241
|
-
.bg-dark a,
|
|
13242
|
-
.bg-dark a:visited {
|
|
13127
|
+
text-decoration-color: currentcolor;
|
|
13128
|
+
}
|
|
13129
|
+
.bg-light a:hover, .bg-light a:focus, .bg-light a:active {
|
|
13130
|
+
text-decoration-color: transparent;
|
|
13131
|
+
}
|
|
13132
|
+
.bg-dark a {
|
|
13243
13133
|
color: #fff;
|
|
13244
|
-
|
|
13245
|
-
text-decoration-color: currentcolor;
|
|
13134
|
+
text-decoration-color: currentcolor;
|
|
13246
13135
|
}
|
|
13247
|
-
.bg-dark a:hover, .bg-dark a:focus, .bg-dark a:active
|
|
13248
|
-
|
|
13249
|
-
.bg-dark a:visited:focus,
|
|
13250
|
-
.bg-dark a:visited:active {
|
|
13251
|
-
-webkit-text-decoration-color: transparent;
|
|
13252
|
-
text-decoration-color: transparent;
|
|
13136
|
+
.bg-dark a:hover, .bg-dark a:focus, .bg-dark a:active {
|
|
13137
|
+
text-decoration-color: transparent;
|
|
13253
13138
|
}
|
|
13254
13139
|
|
|
13255
13140
|
a,
|
|
@@ -13263,43 +13148,35 @@ a:visited {
|
|
|
13263
13148
|
}
|
|
13264
13149
|
|
|
13265
13150
|
a.text-primary:hover, a.text-primary:focus {
|
|
13266
|
-
|
|
13267
|
-
text-decoration-color: #ff0000;
|
|
13151
|
+
text-decoration-color: #ff0000;
|
|
13268
13152
|
}
|
|
13269
13153
|
|
|
13270
13154
|
a.text-secondary:hover, a.text-secondary:focus {
|
|
13271
|
-
|
|
13272
|
-
text-decoration-color: #fff;
|
|
13155
|
+
text-decoration-color: #fff;
|
|
13273
13156
|
}
|
|
13274
13157
|
|
|
13275
13158
|
a.text-success:hover, a.text-success:focus {
|
|
13276
|
-
|
|
13277
|
-
text-decoration-color: #7ed321;
|
|
13159
|
+
text-decoration-color: #7ed321;
|
|
13278
13160
|
}
|
|
13279
13161
|
|
|
13280
13162
|
a.text-info:hover, a.text-info:focus {
|
|
13281
|
-
|
|
13282
|
-
text-decoration-color: #4a90e2;
|
|
13163
|
+
text-decoration-color: #4a90e2;
|
|
13283
13164
|
}
|
|
13284
13165
|
|
|
13285
13166
|
a.text-warning:hover, a.text-warning:focus {
|
|
13286
|
-
|
|
13287
|
-
text-decoration-color: #f5a623;
|
|
13167
|
+
text-decoration-color: #f5a623;
|
|
13288
13168
|
}
|
|
13289
13169
|
|
|
13290
13170
|
a.text-danger:hover, a.text-danger:focus {
|
|
13291
|
-
|
|
13292
|
-
text-decoration-color: #ff0000;
|
|
13171
|
+
text-decoration-color: #ff0000;
|
|
13293
13172
|
}
|
|
13294
13173
|
|
|
13295
13174
|
a.text-light:hover, a.text-light:focus {
|
|
13296
|
-
|
|
13297
|
-
text-decoration-color: #e6e6e6;
|
|
13175
|
+
text-decoration-color: #e6e6e6;
|
|
13298
13176
|
}
|
|
13299
13177
|
|
|
13300
13178
|
a.text-dark:hover, a.text-dark:focus {
|
|
13301
|
-
|
|
13302
|
-
text-decoration-color: #212121;
|
|
13179
|
+
text-decoration-color: #212121;
|
|
13303
13180
|
}
|
|
13304
13181
|
|
|
13305
13182
|
/*
|
|
@@ -13310,16 +13187,15 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
13310
13187
|
}
|
|
13311
13188
|
*/
|
|
13312
13189
|
.nav-link.link-pretty {
|
|
13190
|
+
-webkit-text-decoration: underline;
|
|
13313
13191
|
text-decoration: underline;
|
|
13314
|
-
|
|
13315
|
-
text-decoration-color: #ff0000;
|
|
13192
|
+
text-decoration-color: #ff0000;
|
|
13316
13193
|
text-decoration-thickness: 0.08em;
|
|
13317
13194
|
text-decoration-thickness: min(0.08em, 0.1rem);
|
|
13318
13195
|
text-underline-offset: 0.14em;
|
|
13319
13196
|
}
|
|
13320
13197
|
.nav-link.link-pretty:hover, .nav-link.link-pretty:focus, .nav-link.link-pretty:active {
|
|
13321
|
-
|
|
13322
|
-
text-decoration-color: #212121;
|
|
13198
|
+
text-decoration-color: #212121;
|
|
13323
13199
|
}
|
|
13324
13200
|
|
|
13325
13201
|
.bg-dark .link-pretty,
|
|
@@ -13330,8 +13206,7 @@ a.text-dark:hover, a.text-dark:focus {
|
|
|
13330
13206
|
.bg-gray-600 .link-pretty:focus,
|
|
13331
13207
|
.bg-gray-600 .link-pretty:hover,
|
|
13332
13208
|
.bg-gray-600 .link-pretty:active {
|
|
13333
|
-
|
|
13334
|
-
text-decoration-color: #fff;
|
|
13209
|
+
text-decoration-color: #fff;
|
|
13335
13210
|
}
|
|
13336
13211
|
|
|
13337
13212
|
.link-icon {
|
|
@@ -13508,6 +13383,10 @@ picture .img-fluid {
|
|
|
13508
13383
|
background: linear-gradient(#ff0000, #ff0000) 0/var(--sx) 100% no-repeat #c1c1c1;
|
|
13509
13384
|
}
|
|
13510
13385
|
|
|
13386
|
+
.custom-select {
|
|
13387
|
+
border-color: #8e8e8e;
|
|
13388
|
+
}
|
|
13389
|
+
|
|
13511
13390
|
.ms-offscreen {
|
|
13512
13391
|
clip: rect(0 0 0 0) !important;
|
|
13513
13392
|
position: absolute !important;
|
|
@@ -13536,9 +13415,10 @@ picture .img-fluid {
|
|
|
13536
13415
|
white-space: nowrap;
|
|
13537
13416
|
background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23212121' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
|
|
13538
13417
|
background-size: 8px 10px;
|
|
13539
|
-
border: 1px solid #
|
|
13418
|
+
border: 1px solid #8e8e8e;
|
|
13540
13419
|
border-radius: 2px;
|
|
13541
13420
|
text-align: left;
|
|
13421
|
+
-webkit-text-decoration: none;
|
|
13542
13422
|
text-decoration: none;
|
|
13543
13423
|
line-height: 1.5;
|
|
13544
13424
|
color: #212121;
|
|
@@ -13552,7 +13432,7 @@ picture .img-fluid {
|
|
|
13552
13432
|
.ms-choice.disabled {
|
|
13553
13433
|
background-color: #d5d5d5;
|
|
13554
13434
|
background-image: none;
|
|
13555
|
-
border: 1px solid #
|
|
13435
|
+
border: 1px solid #8e8e8e;
|
|
13556
13436
|
cursor: default;
|
|
13557
13437
|
}
|
|
13558
13438
|
.ms-choice > span {
|
|
@@ -13671,6 +13551,7 @@ hr.darker {
|
|
|
13671
13551
|
|
|
13672
13552
|
.social-icon-details {
|
|
13673
13553
|
min-height: 2.6em;
|
|
13554
|
+
-webkit-text-decoration: none !important;
|
|
13674
13555
|
text-decoration: none !important;
|
|
13675
13556
|
vertical-align: bottom;
|
|
13676
13557
|
}
|
|
@@ -13755,8 +13636,6 @@ a.social-icon:hover, a.social-icon:focus {
|
|
|
13755
13636
|
}
|
|
13756
13637
|
|
|
13757
13638
|
.social-icon-round.social-icon-instagram, .social-icon-instagram {
|
|
13758
|
-
background: radial-gradient(circle farthest-corner at 35%, at 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0, at 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0, at -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20%, at -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100%, at 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60%, at -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100%, at 100%, #d9317a, transparent), -webkit-gradient(linear, left top, left bottom, from(#6559ca), color-stop(30%, #bc318f), color-stop(50%, #e33f5f), color-stop(70%, #f77638), to(#fec66d));
|
|
13759
|
-
background: radial-gradient(circle farthest-corner at 35%, at 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0, at 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0, at -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20%, at -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100%, at 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60%, at -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100%, at 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
|
|
13760
13639
|
background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), -webkit-gradient(linear, left top, left bottom, from(#6559ca), color-stop(30%, #bc318f), color-stop(50%, #e33f5f), color-stop(70%, #f77638), to(#fec66d));
|
|
13761
13640
|
background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
|
|
13762
13641
|
}
|
|
@@ -13842,28 +13721,19 @@ a.social-icon:hover, a.social-icon:focus {
|
|
|
13842
13721
|
opacity: 0;
|
|
13843
13722
|
z-index: -1;
|
|
13844
13723
|
}
|
|
13845
|
-
.upload-input:focus + label.btn, .upload-input.focus-visible + label.btn {
|
|
13846
|
-
outline: 2px solid;
|
|
13847
|
-
outline-offset: 2px;
|
|
13848
|
-
}
|
|
13849
13724
|
.upload-input:focus + label.btn, .upload-input:focus-visible + label.btn {
|
|
13850
13725
|
outline: 2px solid;
|
|
13851
13726
|
outline-offset: 2px;
|
|
13852
13727
|
}
|
|
13853
|
-
.upload-input:focus + label.btn-primary, .upload-input.focus-visible + label.btn-primary {
|
|
13854
|
-
outline-color: #b51f1f;
|
|
13855
|
-
}
|
|
13856
13728
|
.upload-input:focus + label.btn-primary, .upload-input:focus-visible + label.btn-primary {
|
|
13857
13729
|
outline-color: #b51f1f;
|
|
13858
13730
|
}
|
|
13859
|
-
.upload-input:focus + label.btn-secondary, .upload-input.focus-visible + label.btn-secondary {
|
|
13860
|
-
outline-color: #707070;
|
|
13861
|
-
}
|
|
13862
13731
|
.upload-input:focus + label.btn-secondary, .upload-input:focus-visible + label.btn-secondary {
|
|
13863
13732
|
outline-color: #707070;
|
|
13864
13733
|
}
|
|
13865
13734
|
|
|
13866
13735
|
.dropdown-item {
|
|
13736
|
+
-webkit-text-decoration: none;
|
|
13867
13737
|
text-decoration: none;
|
|
13868
13738
|
}
|
|
13869
13739
|
.dropdown-item.active {
|
|
@@ -14267,8 +14137,11 @@ figcaption {
|
|
|
14267
14137
|
}
|
|
14268
14138
|
.user-dropdown .btn .user-avatar {
|
|
14269
14139
|
--avatar-size: 2.5rem;
|
|
14140
|
+
-ms-flex-preferred-size: 2.5rem;
|
|
14141
|
+
flex-basis: 2.5rem;
|
|
14270
14142
|
-ms-flex-preferred-size: var(--avatar-size);
|
|
14271
14143
|
flex-basis: var(--avatar-size);
|
|
14144
|
+
width: 2.5rem;
|
|
14272
14145
|
width: var(--avatar-size);
|
|
14273
14146
|
}
|
|
14274
14147
|
@media (min-width: 576px) {
|
|
@@ -14598,6 +14471,7 @@ figcaption {
|
|
|
14598
14471
|
margin-right: 0.6rem;
|
|
14599
14472
|
background-color: #d5d5d5;
|
|
14600
14473
|
border-radius: 50%;
|
|
14474
|
+
-webkit-text-decoration: none;
|
|
14601
14475
|
text-decoration: none;
|
|
14602
14476
|
font-weight: 700;
|
|
14603
14477
|
-webkit-transition: background-color 0.2s;
|
|
@@ -14612,6 +14486,7 @@ a.avatar-teaser-img,
|
|
|
14612
14486
|
a.avatar-teaser-img-placeholder {
|
|
14613
14487
|
position: relative;
|
|
14614
14488
|
z-index: 0;
|
|
14489
|
+
-webkit-text-decoration: none;
|
|
14615
14490
|
text-decoration: none;
|
|
14616
14491
|
}
|
|
14617
14492
|
a.avatar-teaser-img:before,
|
|
@@ -14773,6 +14648,7 @@ a.card-gray:hover .card-body {
|
|
|
14773
14648
|
.card-info a {
|
|
14774
14649
|
display: inline-block;
|
|
14775
14650
|
color: #ff0000;
|
|
14651
|
+
-webkit-text-decoration: none;
|
|
14776
14652
|
text-decoration: none;
|
|
14777
14653
|
}
|
|
14778
14654
|
.card-info a.btn:hover, .card-info a.btn.hover {
|
|
@@ -14826,6 +14702,7 @@ a.card-img-top:hover:before {
|
|
|
14826
14702
|
}
|
|
14827
14703
|
|
|
14828
14704
|
a.card {
|
|
14705
|
+
-webkit-text-decoration: none;
|
|
14829
14706
|
text-decoration: none;
|
|
14830
14707
|
}
|
|
14831
14708
|
a.card .card-title {
|
|
@@ -15325,6 +15202,7 @@ article aside ol li:before {
|
|
|
15325
15202
|
[aria-describedby=sidenote-label],
|
|
15326
15203
|
[aria-describedby=sidenote-label]:hover {
|
|
15327
15204
|
counter-increment: footnotes; /* 1 */
|
|
15205
|
+
-webkit-text-decoration: none;
|
|
15328
15206
|
text-decoration: none; /* 2 */
|
|
15329
15207
|
color: inherit; /* 2 */
|
|
15330
15208
|
cursor: default; /* 2 */
|
|
@@ -15757,6 +15635,7 @@ ol.flickity-page-dots li:before {
|
|
|
15757
15635
|
.list-group-gray .list-group-teaser-container,
|
|
15758
15636
|
.list-group-item-gray .list-group-teaser-container {
|
|
15759
15637
|
--card-bg: #e6e6e6;
|
|
15638
|
+
background: #e6e6e6;
|
|
15760
15639
|
background: var(--card-bg);
|
|
15761
15640
|
}
|
|
15762
15641
|
.list-group-gray .list-group-teaser-container .card-title a,
|
|
@@ -15775,6 +15654,7 @@ ol.flickity-page-dots li:before {
|
|
|
15775
15654
|
}
|
|
15776
15655
|
.list-group .list-group-teaser {
|
|
15777
15656
|
display: block;
|
|
15657
|
+
-webkit-text-decoration: none;
|
|
15778
15658
|
text-decoration: none;
|
|
15779
15659
|
padding: 0;
|
|
15780
15660
|
border: none;
|
|
@@ -16067,6 +15947,7 @@ ol.flickity-page-dots li:before {
|
|
|
16067
15947
|
.breadcrumb-item a {
|
|
16068
15948
|
background-image: none !important;
|
|
16069
15949
|
color: #495057;
|
|
15950
|
+
-webkit-text-decoration: none;
|
|
16070
15951
|
text-decoration: none;
|
|
16071
15952
|
}
|
|
16072
15953
|
.breadcrumb-item a:hover {
|
|
@@ -16191,6 +16072,7 @@ ol.flickity-page-dots li:before {
|
|
|
16191
16072
|
background-color: transparent;
|
|
16192
16073
|
border-color: transparent;
|
|
16193
16074
|
border-radius: 0;
|
|
16075
|
+
-webkit-text-decoration: none;
|
|
16194
16076
|
text-decoration: none;
|
|
16195
16077
|
font-weight: 700;
|
|
16196
16078
|
-webkit-transition: margin 0.1s ease-in-out;
|
|
@@ -16622,9 +16504,9 @@ ol.flickity-page-dots li:before {
|
|
|
16622
16504
|
border-bottom: 1px solid #d5d5d5;
|
|
16623
16505
|
}
|
|
16624
16506
|
@media (max-width: 767.98px) {
|
|
16625
|
-
.table tbody td:last-child
|
|
16626
|
-
.table tfoot td:last-child
|
|
16627
|
-
.semaineDeRef tfoot td:last-child
|
|
16507
|
+
.table tbody td:last-child, .semaineDeRef tbody td:last-child,
|
|
16508
|
+
.table tfoot td:last-child,
|
|
16509
|
+
.semaineDeRef tfoot td:last-child {
|
|
16628
16510
|
margin-bottom: 1.2rem;
|
|
16629
16511
|
}
|
|
16630
16512
|
}
|
|
@@ -16733,6 +16615,7 @@ ol.flickity-page-dots li:before {
|
|
|
16733
16615
|
position: relative;
|
|
16734
16616
|
background-color: #e6e6e6;
|
|
16735
16617
|
border-color: #d5d5d5;
|
|
16618
|
+
-webkit-text-decoration: none;
|
|
16736
16619
|
text-decoration: none;
|
|
16737
16620
|
border-radius: 0;
|
|
16738
16621
|
padding: 0.5rem 0.8125rem;
|
|
@@ -16835,6 +16718,7 @@ ol.flickity-page-dots li:before {
|
|
|
16835
16718
|
margin-right: 2rem;
|
|
16836
16719
|
padding-right: 0;
|
|
16837
16720
|
padding-left: 0;
|
|
16721
|
+
-webkit-text-decoration: none;
|
|
16838
16722
|
text-decoration: none;
|
|
16839
16723
|
font-weight: 700;
|
|
16840
16724
|
}
|
|
@@ -17452,10 +17336,6 @@ ol.flickity-page-dots li:before {
|
|
|
17452
17336
|
.fullwidth-teaser-header .btn:focus {
|
|
17453
17337
|
outline: 0 !important;
|
|
17454
17338
|
}
|
|
17455
|
-
.fullwidth-teaser-header .btn.focus-visible {
|
|
17456
|
-
outline: 2px solid #fff !important;
|
|
17457
|
-
outline-offset: -4px !important;
|
|
17458
|
-
}
|
|
17459
17339
|
.fullwidth-teaser-header .btn:focus-visible {
|
|
17460
17340
|
outline: 2px solid #fff !important;
|
|
17461
17341
|
outline-offset: -4px !important;
|
|
@@ -17623,6 +17503,7 @@ ol.flickity-page-dots li:before {
|
|
|
17623
17503
|
padding: 0.4rem;
|
|
17624
17504
|
-webkit-transition: all 0.2s;
|
|
17625
17505
|
transition: all 0.2s;
|
|
17506
|
+
-webkit-text-decoration: none;
|
|
17626
17507
|
text-decoration: none;
|
|
17627
17508
|
margin-left: -0.7rem;
|
|
17628
17509
|
padding-left: 0.7rem;
|
|
@@ -17666,7 +17547,7 @@ li.nav-home a {
|
|
|
17666
17547
|
.nav-back .icon,
|
|
17667
17548
|
li.nav-back .icon,
|
|
17668
17549
|
li.nav-home .icon {
|
|
17669
|
-
color: #
|
|
17550
|
+
color: #8e8e8e;
|
|
17670
17551
|
}
|
|
17671
17552
|
|
|
17672
17553
|
li.nav-back .icon {
|
|
@@ -17998,6 +17879,7 @@ a.nav-arrow:hover .icon-container {
|
|
|
17998
17879
|
display: block;
|
|
17999
17880
|
position: relative;
|
|
18000
17881
|
padding: 0.625rem 3rem;
|
|
17882
|
+
-webkit-text-decoration: none;
|
|
18001
17883
|
text-decoration: none;
|
|
18002
17884
|
color: #495057;
|
|
18003
17885
|
}
|
|
@@ -18248,6 +18130,7 @@ a.nav-arrow:hover .icon-container {
|
|
|
18248
18130
|
font-size: 0.83rem;
|
|
18249
18131
|
line-height: 1.2rem;
|
|
18250
18132
|
color: #707070;
|
|
18133
|
+
-webkit-text-decoration: none;
|
|
18251
18134
|
text-decoration: none;
|
|
18252
18135
|
}
|
|
18253
18136
|
.footer-links a:hover {
|
|
@@ -18491,6 +18374,7 @@ a.nav-arrow:hover .icon-container {
|
|
|
18491
18374
|
margin: 0;
|
|
18492
18375
|
padding: 2rem 0.7rem;
|
|
18493
18376
|
font-weight: bold;
|
|
18377
|
+
-webkit-text-decoration: none;
|
|
18494
18378
|
text-decoration: none;
|
|
18495
18379
|
}
|
|
18496
18380
|
.header .nav-header li a:after, .header .nav-header li.dropdown .btn:before {
|
|
@@ -18538,6 +18422,7 @@ a.nav-arrow:hover .icon-container {
|
|
|
18538
18422
|
padding: 0.7rem;
|
|
18539
18423
|
font-size: inherit;
|
|
18540
18424
|
font-weight: bold;
|
|
18425
|
+
-webkit-text-decoration: none;
|
|
18541
18426
|
text-decoration: none;
|
|
18542
18427
|
}
|
|
18543
18428
|
.header .nav-header .dropdown .btn:before {
|
|
@@ -18592,6 +18477,7 @@ a.nav-arrow:hover .icon-container {
|
|
|
18592
18477
|
}
|
|
18593
18478
|
.header-light h1 a,
|
|
18594
18479
|
.header-light .site-title a {
|
|
18480
|
+
-webkit-text-decoration: none;
|
|
18595
18481
|
text-decoration: none;
|
|
18596
18482
|
}
|
|
18597
18483
|
.header-light p.site-title {
|
|
@@ -19058,6 +18944,7 @@ a.nav-arrow:hover .icon-container {
|
|
|
19058
18944
|
}
|
|
19059
18945
|
|
|
19060
18946
|
a.cc-btn {
|
|
18947
|
+
-webkit-text-decoration: none;
|
|
19061
18948
|
text-decoration: none;
|
|
19062
18949
|
}
|
|
19063
18950
|
|
|
@@ -19098,6 +18985,7 @@ a.cc-link {
|
|
|
19098
18985
|
display: inline;
|
|
19099
18986
|
}
|
|
19100
18987
|
.coursebook-program .tree > li .underline > a {
|
|
18988
|
+
-webkit-text-decoration: none;
|
|
19101
18989
|
text-decoration: none;
|
|
19102
18990
|
}
|
|
19103
18991
|
.coursebook-program .tree > li > ul {
|
|
@@ -19146,8 +19034,7 @@ a.cc-link {
|
|
|
19146
19034
|
}
|
|
19147
19035
|
.taken a {
|
|
19148
19036
|
color: white !important;
|
|
19149
|
-
|
|
19150
|
-
text-decoration-color: #fff;
|
|
19037
|
+
text-decoration-color: #fff;
|
|
19151
19038
|
}
|
|
19152
19039
|
.taken a:hover {
|
|
19153
19040
|
font-weight: bold;
|
|
@@ -19311,18 +19198,13 @@ a.cc-link {
|
|
|
19311
19198
|
|
|
19312
19199
|
.event-location a {
|
|
19313
19200
|
color: #212121;
|
|
19314
|
-
|
|
19315
|
-
|
|
19316
|
-
-webkit-text-decoration-color
|
|
19317
|
-
text-decoration-color: #ff0000;
|
|
19318
|
-
-webkit-transition: color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
|
|
19319
|
-
transition: color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
|
|
19201
|
+
text-decoration-line: underline !important;
|
|
19202
|
+
text-decoration-color: #ff0000;
|
|
19203
|
+
-webkit-transition: text-decoration-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
|
19320
19204
|
transition: text-decoration-color 0.2s ease-in-out, color 0.2s ease-in-out;
|
|
19321
|
-
transition: text-decoration-color 0.2s ease-in-out, color 0.2s ease-in-out, -webkit-text-decoration-color 0.2s ease-in-out;
|
|
19322
19205
|
}
|
|
19323
19206
|
.event-location a:hover, .event-location a:focus, .event-location a:active {
|
|
19324
|
-
|
|
19325
|
-
text-decoration-color: #212121 !important;
|
|
19207
|
+
text-decoration-color: #212121 !important;
|
|
19326
19208
|
}
|
|
19327
19209
|
.event-location a:active {
|
|
19328
19210
|
color: #ff0000;
|