Merge pull request #1346 from Safelite/CSR-1373-tick-mark-not-visible

CSR-1373 fix checkmark in checkbox.
This commit is contained in:
bmauger 2023-09-18 10:35:31 -04:00 committed by GitHub
commit ed0d3aacc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,6 +68,10 @@ export default {
&:focus {
box-shadow: 0 0 0 2.5px $blue;
}
&:checked[type="checkbox"] {
background-color: $blue;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
}
&:hover {
.form-check-input {