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 CHANGED
@@ -4,6 +4,10 @@
4
4
 
5
5
  - Adding dark mode support for the input component when the input is active or focused.
6
6
 
7
+ ## 1.0.71
8
+
9
+ - Hero wave dark mode support
10
+
7
11
  ## 1.0.70
8
12
 
9
13
  - Adding support for custom background color and fill on progress bars in dark mode.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.72-beta.1",
3
+ "version": "1.0.72-beta.3",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -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: $color-grey-400,
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,