mod-base 1.0.38 → 1.0.39-beta.2
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 +24 -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,25 @@ $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
|
+
}
|
|
166
|
+
|
|
167
|
+
a,
|
|
168
|
+
input[type=checkbox] {
|
|
169
|
+
&:focus {
|
|
170
|
+
outline-color: $color-white;
|
|
171
|
+
}
|
|
172
|
+
}
|
|
156
173
|
}
|
|
157
174
|
|
|
158
175
|
.icon-close:hover {
|
|
@@ -697,7 +714,7 @@ $contact-us-blue-light: #8498E7;
|
|
|
697
714
|
|
|
698
715
|
button {
|
|
699
716
|
background-color: $color-charcoal7 !important;
|
|
700
|
-
|
|
717
|
+
|
|
701
718
|
* {
|
|
702
719
|
background-color: $color-charcoal7 !important;
|
|
703
720
|
}
|
|
@@ -715,8 +732,8 @@ $contact-us-blue-light: #8498E7;
|
|
|
715
732
|
}
|
|
716
733
|
}
|
|
717
734
|
|
|
718
|
-
button[aria-label='Reject All'],
|
|
719
|
-
button[aria-label='Accept All'],
|
|
735
|
+
button[aria-label='Reject All'],
|
|
736
|
+
button[aria-label='Accept All'],
|
|
720
737
|
button[aria-label='Save'] {
|
|
721
738
|
background-color: $color-white !important;
|
|
722
739
|
color: $color-black !important;
|
|
@@ -730,7 +747,7 @@ $contact-us-blue-light: #8498E7;
|
|
|
730
747
|
}
|
|
731
748
|
}
|
|
732
749
|
}
|
|
733
|
-
|
|
750
|
+
|
|
734
751
|
}
|
|
735
752
|
|
|
736
753
|
a[aria-label='Learn more about Ketch for data privacy'] {
|