mod-base 1.0.65-beta.9 → 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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.66
4
+
5
+ - Updated dark mode color for checkbox disclaimer
6
+
3
7
  ## 1.0.65
4
8
 
5
9
  - Updated dark mode colors for review cards
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mod-base",
3
- "version": "1.0.65-beta.9",
3
+ "version": "1.0.66-beta.1",
4
4
  "description": "Base Styles for S3 Sites",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -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
- &:not(:checked) {
178
- &::before {
179
- background: transparent;
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 $color-grey-500;
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-standard-hover-select-background-color;
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
  }
@@ -525,7 +546,7 @@ $contact-us-blue-light: #8498E7;
525
546
  }
526
547
  }
527
548
 
528
- .review-stacked-card {
549
+ .swiper--stacked-cards {
529
550
  .reviews-card {
530
551
  &.swiper-slide-active {
531
552
  background-color: $reviews-card-active-background;
@@ -1028,21 +1049,21 @@ $contact-us-blue-light: #8498E7;
1028
1049
  }
1029
1050
 
1030
1051
  @include breakpoint-lg {
1031
- .review-stacked-card {
1052
+ .swiper--stacked-cards {
1032
1053
  .reviews-card {
1033
1054
  &:not(.swiper-slide-active) {
1034
1055
  background-color: $reviews-card-inactive-background;
1035
1056
 
1036
- &__review,
1037
- &__author {
1057
+ .reviews-card__review,
1058
+ .reviews-card__author {
1038
1059
  color: $reviews-card-inactive-text-color;
1039
1060
  }
1040
1061
 
1041
- &__author-name {
1062
+ .reviews-card__author-name {
1042
1063
  border-color: $reviews-card-inactive-author-border-color;
1043
1064
  }
1044
1065
 
1045
- &__verified {
1066
+ .reviews-card__verified {
1046
1067
  color: $reviews-card-inactive-verified-color;
1047
1068
  }
1048
1069