mod-base 1.0.65 → 1.0.66-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 +31 -10
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -167,6 +167,10 @@ $contact-us-blue-light: #8498E7;
|
|
|
167
167
|
color: $checkbox-label-color;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
+
.checkbox__disclaimer {
|
|
171
|
+
color: $color-grey-500;
|
|
172
|
+
}
|
|
173
|
+
|
|
170
174
|
.checkbox--multi-select-options {
|
|
171
175
|
.checkbox__label-text {
|
|
172
176
|
color: $color-grey-300;
|
|
@@ -174,26 +178,43 @@ $contact-us-blue-light: #8498E7;
|
|
|
174
178
|
|
|
175
179
|
label {
|
|
176
180
|
input[type="checkbox"] {
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
border: 1px solid $color-grey-500;
|
|
181
|
-
}
|
|
181
|
+
&::before {
|
|
182
|
+
background: transparent;
|
|
183
|
+
border: 1px solid $radio-btn-border-color;
|
|
182
184
|
}
|
|
183
|
-
|
|
185
|
+
|
|
184
186
|
~ .checkbox__label-text {
|
|
185
187
|
&::before {
|
|
186
|
-
border: 1px solid $
|
|
188
|
+
border: 1px solid $radio-btn-border-color;
|
|
187
189
|
}
|
|
188
190
|
}
|
|
189
|
-
|
|
191
|
+
|
|
190
192
|
&:active,
|
|
191
|
-
&:focus,
|
|
192
193
|
&:hover,
|
|
194
|
+
&:focus-visible {
|
|
195
|
+
&::before {
|
|
196
|
+
background: $radio-btn-standard-hover-select-background-color;
|
|
197
|
+
border: 1px solid $radio-btn-standard-hover-select-background-color;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
193
201
|
&:checked {
|
|
194
202
|
~ .checkbox__label-text {
|
|
195
203
|
&::before {
|
|
196
|
-
border: 1px solid $radio-btn-
|
|
204
|
+
border: 1px solid $radio-btn-checked-border-color;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
&::before {
|
|
209
|
+
background: $radio-btn-checked-border-color;
|
|
210
|
+
border: 1px solid $radio-btn-checked-border-color;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
&:focus-visible {
|
|
215
|
+
~ .checkbox__label-text {
|
|
216
|
+
&::before {
|
|
217
|
+
border: 1px solid $radio-btn-checked-border-color;
|
|
197
218
|
}
|
|
198
219
|
}
|
|
199
220
|
}
|