mod-base 1.0.54 → 1.0.56-beta.1

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
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.56
4
+
5
+ - Added `.form-in-progress:not(.fixed-width-desktop) .hero__content` to background selectors in dark mode.
6
+
7
+ ## 1.0.55
8
+
9
+ - Adjusting a bug with the review stars (`background-color` was set instead of `color` which was adding a box around the stars).
10
+
3
11
  ## 1.0.54
4
12
 
5
13
  - Adding dark mode styles for the new `result` accessible component.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.54",
3
+ "version": "1.0.56-beta.1",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -106,7 +106,7 @@ $contact-us-blue-light: #8498E7;
106
106
 
107
107
  // Most common selectors list
108
108
  $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,.result__title,.result__subtitle,.result__call-text';
109
- $background-selectors: '.form,.header,.guarantee,.information,.modal-content,.matched-steps,.loader,.information__header,.hero__background,.hero__content,.form-input,.form-input:focus,.expand-collapse__icon,.featured-block,table tr,.form-control,.accordion,.hiw-block,.reviews';
109
+ $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';
110
110
 
111
111
  @media (prefers-color-scheme: dark){
112
112
  body[data-color-scheme='system'] {
@@ -425,7 +425,7 @@ $contact-us-blue-light: #8498E7;
425
425
 
426
426
  .star-rating__stars {
427
427
  &::before {
428
- background-color: $color-grey-800;
428
+ color: $color-grey-800;
429
429
  }
430
430
  }
431
431
  }