Skip to content

Commit

Permalink
Enforce checbox default background color
Browse files Browse the repository at this point in the history
otherwise, in case validation fails on a checkbox, https://github.com/cprodhomme/arctic_admin/blob/76af378f4fda01783a838d9ea157ce82a6bc6b3b/app/assets/stylesheets/arctic_admin/components/_form.scss#L29..L33 overwrites it and checking only works internally but no visual change can be seen
  • Loading branch information
wasifhossain authored and cprodhomme committed Dec 7, 2020
1 parent 1037a94 commit e6dc87a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -62,7 +62,7 @@ input[type="checkbox"] {

&:checked {
border-color: $primary-color;
background-color: $primary-color;
background-color: $primary-color !important;
}
}

Expand Down

0 comments on commit e6dc87a

Please sign in to comment.