mod-base 1.0.38-beta.2 → 1.0.39-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 +17 -7
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -66,6 +66,7 @@ $contact-us-blue-light: #8498E7;
|
|
|
66
66
|
$radio-btn-icon-background: transparent,
|
|
67
67
|
$radio-btn-icon-color: $background,
|
|
68
68
|
$radio-btn-text-color: $color-grey-300,
|
|
69
|
+
$tcpa-color: lighten($color-grey-500, 2%),
|
|
69
70
|
$value-props-background: null
|
|
70
71
|
) {
|
|
71
72
|
// Theme global variables if required to use after including the mixin
|
|
@@ -150,9 +151,18 @@ $contact-us-blue-light: #8498E7;
|
|
|
150
151
|
color: $color-grey-500;
|
|
151
152
|
}
|
|
152
153
|
|
|
153
|
-
.tcpa
|
|
154
|
-
|
|
155
|
-
|
|
154
|
+
.tcpa{
|
|
155
|
+
color: $tcpa-color;
|
|
156
|
+
|
|
157
|
+
a,
|
|
158
|
+
.checkbox {
|
|
159
|
+
color: $tcpa-color;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
input[type=checkbox]::before {
|
|
163
|
+
border-color: $tcpa-color;
|
|
164
|
+
color: $tcpa-color;
|
|
165
|
+
}
|
|
156
166
|
}
|
|
157
167
|
|
|
158
168
|
.icon-close:hover {
|
|
@@ -697,7 +707,7 @@ $contact-us-blue-light: #8498E7;
|
|
|
697
707
|
|
|
698
708
|
button {
|
|
699
709
|
background-color: $color-charcoal7 !important;
|
|
700
|
-
|
|
710
|
+
|
|
701
711
|
* {
|
|
702
712
|
background-color: $color-charcoal7 !important;
|
|
703
713
|
}
|
|
@@ -715,8 +725,8 @@ $contact-us-blue-light: #8498E7;
|
|
|
715
725
|
}
|
|
716
726
|
}
|
|
717
727
|
|
|
718
|
-
button[aria-label='Reject All'],
|
|
719
|
-
button[aria-label='Accept All'],
|
|
728
|
+
button[aria-label='Reject All'],
|
|
729
|
+
button[aria-label='Accept All'],
|
|
720
730
|
button[aria-label='Save'] {
|
|
721
731
|
background-color: $color-white !important;
|
|
722
732
|
color: $color-black !important;
|
|
@@ -730,7 +740,7 @@ $contact-us-blue-light: #8498E7;
|
|
|
730
740
|
}
|
|
731
741
|
}
|
|
732
742
|
}
|
|
733
|
-
|
|
743
|
+
|
|
734
744
|
}
|
|
735
745
|
|
|
736
746
|
a[aria-label='Learn more about Ketch for data privacy'] {
|