Fix form switch checkmark visual bug

This commit is contained in:
shamoon 2023-09-14 13:58:16 -07:00
parent 7c9ab8c0b6
commit 116da276c7

View File

@ -37,12 +37,14 @@ $form-check-radio-checked-bg-image-dark: url("data:image/svg+xml,<svg xmlns='htt
.primary-light { .primary-light {
--pngx-primary-text-contrast: #{$text-color-light-bg} !important; --pngx-primary-text-contrast: #{$text-color-light-bg} !important;
.form-check-input:checked[type=checkbox] { .form-check:not(.form-switch) {
background-image: escape-svg($form-check-input-checked-bg-image-dark); .form-check-input:checked[type=checkbox] {
} background-image: escape-svg($form-check-input-checked-bg-image-dark);
}
.form-check-input:checked[type=radio] { .form-check-input:checked[type=radio] {
background-image: escape-svg($form-check-radio-checked-bg-image-dark); background-image: escape-svg($form-check-radio-checked-bg-image-dark);
}
} }
.toast .btn-close { .toast .btn-close {