mod-base 1.0.35 → 1.0.37-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,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.36
4
+
5
+ - Updating the dark-mode duplicate submission styles do not override the button color
6
+
3
7
  ## 1.0.35
4
8
 
5
9
  - Add water treatment stroke icon
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.35",
3
+ "version": "1.0.37-beta.1",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -531,7 +531,8 @@ $contact-us-blue-light: #8498E7;
531
531
  background-color: $background-color !important;
532
532
  color: $text-color !important;
533
533
 
534
- & * {
534
+ h3,
535
+ p {
535
536
  color: $text-color !important;
536
537
  }
537
538
  }
@@ -679,6 +680,57 @@ $contact-us-blue-light: #8498E7;
679
680
  }
680
681
  }
681
682
 
683
+ // Ketch Preference dashboard styles
684
+ #lanyard_root * {
685
+ background-color: $color-black !important;
686
+ color: $color-white !important;
687
+ outline-color: $color-white !important;
688
+
689
+ button {
690
+ background-color: $color-charcoal7 !important;
691
+
692
+ * {
693
+ background-color: $color-charcoal7 !important;
694
+ }
695
+
696
+ input[type="checkbox"] ~ span {
697
+ background: transparent !important;
698
+
699
+ svg {
700
+ background: transparent !important;
701
+ }
702
+ }
703
+
704
+ input[type="checkbox"]:not(:checked) + div {
705
+ background-color: $color-charcoal8 !important;
706
+ }
707
+ }
708
+
709
+ button[aria-label='Reject All'],
710
+ button[aria-label='Accept All'],
711
+ button[aria-label='Save'] {
712
+ background-color: $color-white !important;
713
+ color: $color-black !important;
714
+ }
715
+
716
+ button[aria-label='Exit'] {
717
+ div {
718
+ svg {
719
+ path {
720
+ filter: invert(1) !important;
721
+ }
722
+ }
723
+ }
724
+
725
+ }
726
+
727
+ a[aria-label='Learn more about Ketch for data privacy'] {
728
+ svg {
729
+ filter: brightness(5);
730
+ }
731
+ }
732
+ }
733
+
682
734
  @include breakpoint-phone {
683
735
  .hero--full {
684
736
  background-color: $background;