Set a white background-color on checkboxes

Otherwise they appear with the same color as the background, which is
not what we want. They should always be white.
This commit is contained in:
Samuel Mannehed 2022-12-09 12:43:30 +01:00
parent faf921b023
commit 7519f2d4ad
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ option {
input[type=checkbox] { input[type=checkbox] {
position: relative; position: relative;
appearance: none; appearance: none;
background-color: white;
border: 1px solid dimgrey; border: 1px solid dimgrey;
border-radius: 3px; border-radius: 3px;
width: 0.8em; width: 0.8em;