mod-base 1.0.73-beta.1 → 1.0.73-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 +1 -1
- package/package.json +1 -1
- package/src/styles/templates/_dark-mode.scss +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
## 1.0.73
|
|
4
|
-
- Fix hero content box-shadow not being removed in dark mode when form-in-progress is active on mobile
|
|
4
|
+
- Fix hero content box-shadow not being removed in dark mode when form-in-progress is active on mobile, and adding featured block image box shadow in dark mode styles
|
|
5
5
|
|
|
6
6
|
## 1.0.72
|
|
7
7
|
|
package/package.json
CHANGED
|
@@ -46,6 +46,7 @@ $contact-us-blue-light: #8498E7;
|
|
|
46
46
|
$bbb-img-filter: grayscale(1) invert(.915) brightness(1.5),
|
|
47
47
|
// Banner
|
|
48
48
|
$banner-overlay-background: linear-gradient(90deg, $background 17%, rgba($background, .5) 100%),
|
|
49
|
+
$banner-overlay-background-desktop: $banner-overlay-background,
|
|
49
50
|
$banner-callout-background: $color-charcoal8,
|
|
50
51
|
$banner-callout-border-color: $color-grey-700,
|
|
51
52
|
$banner-callout-text-color: null,
|
|
@@ -56,6 +57,8 @@ $contact-us-blue-light: #8498E7;
|
|
|
56
57
|
$color-btn: null,
|
|
57
58
|
$color-btn-text: null,
|
|
58
59
|
$checkbox-label-color: null,
|
|
60
|
+
// featured block
|
|
61
|
+
$featured-block-img-box-shadow: null,
|
|
59
62
|
$footer-background: $color-charcoal9,
|
|
60
63
|
$foreground: $color-grey-300,
|
|
61
64
|
$form-input-border-color: null,
|
|
@@ -254,6 +257,14 @@ $contact-us-blue-light: #8498E7;
|
|
|
254
257
|
}
|
|
255
258
|
}
|
|
256
259
|
|
|
260
|
+
@include breakpoint-md {
|
|
261
|
+
.banner {
|
|
262
|
+
&__background-overlay {
|
|
263
|
+
background: $banner-overlay-background-desktop;
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
|
|
257
268
|
.checkbox {
|
|
258
269
|
color: $checkbox-label-color;
|
|
259
270
|
}
|
|
@@ -332,6 +343,12 @@ $contact-us-blue-light: #8498E7;
|
|
|
332
343
|
filter: $background-img-brightness;
|
|
333
344
|
}
|
|
334
345
|
|
|
346
|
+
@if $featured-block-img-box-shadow != null {
|
|
347
|
+
.featured-block__media img {
|
|
348
|
+
box-shadow: $featured-block-img-box-shadow;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
335
352
|
.header__logo img,
|
|
336
353
|
.header__logo svg {
|
|
337
354
|
filter: $logo-filter;
|