Skip to content

Commit 1fbfc9e

Browse files
authored
Merge pull request #546 from GSA/checkbox-radio-color-revert
Fix color
2 parents a36c410 + 079d918 commit 1fbfc9e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/stylesheets/elements/_inputs.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
.usa-checkbox__input[aria-checked="mixed"]+.usa-checkbox__label:before,
120120
.usa-checkbox__input[aria-checked="mixed"]:disabled+.usa-checkbox__label:before {
121121
@include u-bg("primary");
122-
box-shadow: 0 0 0 2px $theme-color-primary;
122+
box-shadow: 0 0 0 2px #70e17b;
123123
background-image: url("#{$theme-image-path}/minus-white.svg");
124124
background-repeat: no-repeat;
125125
background-position: center center;
@@ -176,19 +176,19 @@
176176
.usa-checkbox__input:checked+.usa-checkbox__label,
177177
.usa-radio__input:checked+.usa-radio__label {
178178
&::before {
179-
background-color: $theme-color-primary !important;
179+
background-color: #70e17b !important;
180180
}
181181
}
182182

183183
.usa-checkbox__input:checked+.usa-checkbox__label {
184184
&::before {
185-
box-shadow: 0 0 0 2px $theme-color-primary !important;
185+
box-shadow: 0 0 0 2px #70e17b !important;
186186
}
187187
}
188188

189189
.usa-radio__input:checked+.usa-radio__label {
190190
&::before {
191-
box-shadow: 0 0 0 2px $theme-color-primary, inset 0 0 0 2px white !important;
191+
box-shadow: 0 0 0 2px #70e17b, inset 0 0 0 2px white !important;
192192
}
193193
}
194194
}

0 commit comments

Comments
 (0)