mod-base 1.0.70-beta.2 → 1.0.70

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,9 +1,15 @@
1
1
  # Changelog
2
2
 
3
3
  ## 1.0.70
4
+
4
5
  - Adding support for custom background color and fill on progress bars in dark mode.
5
6
 
7
+ ## 1.0.69
8
+
9
+ - Fix to stacked card darkmode
10
+
6
11
  ## 1.0.68
12
+
7
13
  - Adding dark mode support for the new elements (`callout`, `overlay` and `background image`) added to banner accessible component.
8
14
 
9
15
  ## 1.0.67
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.70-beta.2",
3
+ "version": "1.0.70",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -633,7 +633,7 @@ $contact-us-blue-light: #8498E7;
633
633
  border-color: $reviews-card-active-background;
634
634
  box-shadow: none;
635
635
 
636
- &__author-name {
636
+ .reviews-card__author-name {
637
637
  border-color: $reviews-card-active-author-border-color;
638
638
  }
639
639
 
@@ -643,7 +643,7 @@ $contact-us-blue-light: #8498E7;
643
643
  }
644
644
  }
645
645
 
646
- &__verified {
646
+ .reviews-card__verified {
647
647
  color: $reviews-card-active-verified-color;
648
648
  }
649
649
  }
@@ -1145,6 +1145,7 @@ $contact-us-blue-light: #8498E7;
1145
1145
  .reviews-card {
1146
1146
  &:not(.swiper-slide-active) {
1147
1147
  background-color: $reviews-card-inactive-background;
1148
+ box-shadow: none;
1148
1149
 
1149
1150
  .reviews-card__review,
1150
1151
  .reviews-card__author {
@@ -1159,10 +1160,17 @@ $contact-us-blue-light: #8498E7;
1159
1160
  color: $reviews-card-inactive-verified-color;
1160
1161
  }
1161
1162
 
1162
- .star-rating__text,
1163
+ .star-rating__text {
1164
+ color: $reviews-card-inactive-text-color;
1165
+ }
1166
+
1163
1167
  .star-rating__icons .stars .stars-filled {
1164
1168
  color: $reviews-card-inactive-star-color;
1165
1169
  }
1170
+
1171
+ .star-rating__icons .stars .stars-empty {
1172
+ color: $reviews-card-inactive-text-color;
1173
+ }
1166
1174
  }
1167
1175
  }
1168
1176
  }