mod-base 1.0.72-beta.1 → 1.0.72-beta.3
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 +23 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -58,9 +58,11 @@ $contact-us-blue-light: #8498E7;
|
|
|
58
58
|
$checkbox-label-color: null,
|
|
59
59
|
$footer-background: $color-charcoal9,
|
|
60
60
|
$foreground: $color-grey-300,
|
|
61
|
-
$form-input-border-color:
|
|
61
|
+
$form-input-border-color: null,
|
|
62
62
|
$form-focus-border-color: $color-grey-400,
|
|
63
63
|
$hero-content-box-shadow-mobile: null,
|
|
64
|
+
$hero-wave-accent: null,
|
|
65
|
+
$hero-wave-base: null,
|
|
64
66
|
$interactive-text-color: $color-grey-500,
|
|
65
67
|
$interactive-text-color-hover: lighten($interactive-text-color, 20%),
|
|
66
68
|
$logo-filter: invert(1) hue-rotate(180deg),
|
|
@@ -120,6 +122,14 @@ $contact-us-blue-light: #8498E7;
|
|
|
120
122
|
$theme: $base-color !global;
|
|
121
123
|
}
|
|
122
124
|
|
|
125
|
+
@if $hero-wave-accent == null {
|
|
126
|
+
$hero-wave-accent: $accent-color;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
@if $hero-wave-base == null {
|
|
130
|
+
$hero-wave-base: $background;
|
|
131
|
+
}
|
|
132
|
+
|
|
123
133
|
@if $reviews-card-active-star-color == null {
|
|
124
134
|
@if $theme != null {
|
|
125
135
|
$reviews-card-active-star-color: $theme;
|
|
@@ -188,6 +198,10 @@ $contact-us-blue-light: #8498E7;
|
|
|
188
198
|
$progress-bar-percentage-color: $text-color;
|
|
189
199
|
}
|
|
190
200
|
|
|
201
|
+
@if ($form-input-border-color == null) {
|
|
202
|
+
$form-input-border-color: $form-focus-border-color;
|
|
203
|
+
}
|
|
204
|
+
|
|
191
205
|
// Most common selectors list
|
|
192
206
|
$content-selectors: '.hero__title,.hero__subtitle,input,.toggle-wrapper,.step__title,[class^="information__"],[class^="featured-block__"],[class^="partners__"],.form-group__label,[class^="abandonment__"],.modal-header--close,.modal-phone,.modal-body p,legend,[class^="loader__"],table tr,.tile__text,.select,.hiw-block__title,.hiw-card__title,.hiw-card__description,.banner__title,.banner__description,.accordion__title,.reviews__title,.accordion .expand-collapse__toggle,.accordion__content p,.accordion__content li,.result__title,.result__subtitle,.result__call-text';
|
|
193
207
|
$background-selectors: '.form,.header,.guarantee,.information,.modal-content,.matched-steps,.loader,.information__header,.hero__background,.hero__content,&.form-in-progress:not(.fixed-width-desktop) .hero__content,.form-input,.form-input:focus,.expand-collapse__icon,.featured-block,table tr,.form-control,.accordion,.hiw-block,.reviews';
|
|
@@ -551,6 +565,14 @@ $contact-us-blue-light: #8498E7;
|
|
|
551
565
|
filter: $background-img-brightness;
|
|
552
566
|
}
|
|
553
567
|
|
|
568
|
+
.hero__wave-accent {
|
|
569
|
+
fill: $hero-wave-accent;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.hero__wave-base {
|
|
573
|
+
fill: $hero-wave-base;
|
|
574
|
+
}
|
|
575
|
+
|
|
554
576
|
@if $color-btn != null {
|
|
555
577
|
.btn--primary,
|
|
556
578
|
.btn-primary,
|