From 7519f2d4adae6023147eb8cd5ba71d241d015a6d Mon Sep 17 00:00:00 2001 From: Samuel Mannehed Date: Fri, 9 Dec 2022 12:43:30 +0100 Subject: [PATCH] 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. --- app/styles/input.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/styles/input.css b/app/styles/input.css index 35653ea8..59bd111b 100644 --- a/app/styles/input.css +++ b/app/styles/input.css @@ -90,6 +90,7 @@ option { input[type=checkbox] { position: relative; appearance: none; + background-color: white; border: 1px solid dimgrey; border-radius: 3px; width: 0.8em;