mod-base 1.0.14 → 1.0.15
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/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/styles/templates/_dark-mode.scss +99 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -24,7 +24,7 @@ $contact-us-blue-light: #8498E7;
|
|
|
24
24
|
$color-button: $color-btn !global;
|
|
25
25
|
|
|
26
26
|
// Most common selectors list
|
|
27
|
-
$selectors: '.header,.step__title,.form,.form-radio label,.form-input,.form-input:focus,.progress-bar__content,.progress-bar__text,.progress-bar__percentage,.partners,.guarantee,.guarantee__text,.information,.information__header::before,.modal-content,.modal-content .icon-close,.matched-steps,.form--inverted .loader,.form-groups,.step__windowtype label,.form-control,.form-group__label,.step__overview,.progress-bar__title,.checkbox,#tcpa-copy,body .modal-body ul,body .modal-body p,.modal-body ul,.modal-body p,.modal-body .contact-us .step__list a,.form-group__tooltip-message,.form__qualify--step span,.form-group__city-state,.hero__background, .modal-body table tr';
|
|
27
|
+
$selectors: '.header,.step__title,.step__subtitle,.form,.form-radio label,.form-input,.form-input:focus,.progress-bar__content,.progress-bar__text,.progress-bar__percentage,.partners,.guarantee,.guarantee__text,.information,.information__header::before,.modal-content,.modal-content .icon-close,.matched-steps,.form--inverted .loader,.form-groups,.step__windowtype label,.form-control,.form-group__label,.step__overview,.progress-bar__title,.checkbox,#tcpa-copy,body .modal-body ul,body .modal-body p,.modal-body ul,.modal-body p,.modal-body .contact-us .step__list a,.form-group__tooltip-message,.form__qualify--step span,.form-group__city-state,.hero__background, .modal-body table tr';
|
|
28
28
|
|
|
29
29
|
@media (prefers-color-scheme: dark){
|
|
30
30
|
body[data-color-scheme="system"] {
|
|
@@ -46,11 +46,19 @@ $contact-us-blue-light: #8498E7;
|
|
|
46
46
|
color: $foreground;
|
|
47
47
|
}
|
|
48
48
|
|
|
49
|
+
.header {
|
|
50
|
+
&__logo img,
|
|
51
|
+
&__logo svg {
|
|
52
|
+
filter: $img-filter;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
49
56
|
.secure-text {
|
|
50
57
|
color: $color-charcoal2;
|
|
51
58
|
}
|
|
52
59
|
|
|
53
|
-
.step__supertitle
|
|
60
|
+
.step__supertitle,
|
|
61
|
+
.progress-bar__percentage {
|
|
54
62
|
background-color: $accent-color;
|
|
55
63
|
}
|
|
56
64
|
|
|
@@ -328,6 +336,89 @@ $contact-us-blue-light: #8498E7;
|
|
|
328
336
|
}
|
|
329
337
|
}
|
|
330
338
|
|
|
339
|
+
.bbb-logo,
|
|
340
|
+
.header__bbb-logo {
|
|
341
|
+
filter: invert(.9) brightness(2);
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.back-btn,
|
|
345
|
+
.btn--back,
|
|
346
|
+
.zip-control__location,
|
|
347
|
+
.zip-control__icon {
|
|
348
|
+
color: lighten($accent-color, 25%);
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.featured-block {
|
|
352
|
+
background-color: $background;
|
|
353
|
+
color: $foreground;
|
|
354
|
+
|
|
355
|
+
&__btn {
|
|
356
|
+
background-color: $color-btn;
|
|
357
|
+
|
|
358
|
+
&:hover {
|
|
359
|
+
background-color: darken($color-btn, 5%);
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.form-tcpa {
|
|
365
|
+
label {
|
|
366
|
+
a {
|
|
367
|
+
color: $color-charcoal1;
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
&.form-in-progress {
|
|
373
|
+
.hero {
|
|
374
|
+
border-color: $color-charcoal4;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.form-input-group {
|
|
379
|
+
&--includes-label {
|
|
380
|
+
.form-input:not(:placeholder-shown) {
|
|
381
|
+
background-color: $background-color;
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.radio {
|
|
387
|
+
&__button {
|
|
388
|
+
label {
|
|
389
|
+
input[type=radio] {
|
|
390
|
+
+ span {
|
|
391
|
+
color: $text-color;
|
|
392
|
+
|
|
393
|
+
&::before {
|
|
394
|
+
background-color: transparent;
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
&:checked,
|
|
399
|
+
&:hover {
|
|
400
|
+
+ span {
|
|
401
|
+
color: $text-color;
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.tile {
|
|
408
|
+
&__icon {
|
|
409
|
+
border-radius: 10px;
|
|
410
|
+
padding: 3px;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
&__text {
|
|
414
|
+
&::before {
|
|
415
|
+
border-radius: 10px;
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
|
|
331
422
|
@include breakpoint-phone {
|
|
332
423
|
.hero--full {
|
|
333
424
|
background-color: $background;
|
|
@@ -338,6 +429,12 @@ $contact-us-blue-light: #8498E7;
|
|
|
338
429
|
box-shadow: none;
|
|
339
430
|
}
|
|
340
431
|
}
|
|
432
|
+
|
|
433
|
+
&.form-in-progress {
|
|
434
|
+
.hero {
|
|
435
|
+
background-color: $background-color;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
341
438
|
}
|
|
342
439
|
// To load additional site-level style blocks
|
|
343
440
|
@content;
|