mod-base 1.0.24 → 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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.25
4
+
5
+ - Adding styles for transfer overlay and missed input field icon error state
6
+
3
7
  ## 1.0.24
4
8
 
5
9
  - Adding color transition for radio button checkmarks
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.24",
3
+ "version": "1.0.25",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -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;