mod-base 1.0.23 → 1.0.25
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 +8 -0
- package/package.json +1 -1
- package/src/styles/templates/_dark-mode.scss +24 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.25
|
|
4
|
+
|
|
5
|
+
- Adding styles for transfer overlay and missed input field icon error state
|
|
6
|
+
|
|
7
|
+
## 1.0.24
|
|
8
|
+
|
|
9
|
+
- Adding color transition for radio button checkmarks
|
|
10
|
+
|
|
3
11
|
## 1.0.23
|
|
4
12
|
|
|
5
13
|
- Adding customization to cover all radio button different HTML structures, value props to have gradients as background, input fields active/focus states, back and edit zip code button colors, box shadow for mobile forms, bbb logo filters
|
package/package.json
CHANGED
|
@@ -235,7 +235,8 @@ $contact-us-blue-light: #8498E7;
|
|
|
235
235
|
|
|
236
236
|
.form-input-group {
|
|
237
237
|
&--includes-label {
|
|
238
|
-
.form-input:focus
|
|
238
|
+
.form-input:focus,
|
|
239
|
+
.form-input:not(:placeholder-shown) {
|
|
239
240
|
~ .form-input-group__icon {
|
|
240
241
|
color: $color-red4;
|
|
241
242
|
}
|
|
@@ -460,6 +461,27 @@ $contact-us-blue-light: #8498E7;
|
|
|
460
461
|
}
|
|
461
462
|
}
|
|
462
463
|
|
|
464
|
+
.loader {
|
|
465
|
+
image {
|
|
466
|
+
filter: invert(1) hue-rotate(180deg) brightness(2);
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
#Circle {
|
|
470
|
+
filter: invert(1);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
#Left-Arrow,
|
|
474
|
+
#Right-Arrow {
|
|
475
|
+
path {
|
|
476
|
+
fill: $color-lavender-500;
|
|
477
|
+
|
|
478
|
+
&:not(:first-of-type) {
|
|
479
|
+
stroke: $color-lavender-500;
|
|
480
|
+
}
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
|
|
463
485
|
/* Need to overwrite inline styles of double submission block */
|
|
464
486
|
.duplicate-submission {
|
|
465
487
|
background-color: $background-color !important;
|
|
@@ -573,6 +595,7 @@ $contact-us-blue-light: #8498E7;
|
|
|
573
595
|
|
|
574
596
|
&::before {
|
|
575
597
|
color: $radio-btn-icon-color;
|
|
598
|
+
transition: color .15s ease;
|
|
576
599
|
}
|
|
577
600
|
}
|
|
578
601
|
}
|