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 +4 -0
- package/package.json +1 -1
- package/src/styles/templates/_dark-mode.scss +53 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -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;
|