summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorSamuel Mannehed <samuel@cendio.se>2022-12-09 12:43:30 +0100
committerSamuel Mannehed <samuel@cendio.se>2022-12-12 14:50:14 +0100
commit7519f2d4adae6023147eb8cd5ba71d241d015a6d (patch)
tree51a22e6f72895a6a1e440b4cc8ba38ae58a60524 /app
parentfaf921b02383766046750ac99fda0a494b9dd374 (diff)
downloadnovnc-7519f2d4adae6023147eb8cd5ba71d241d015a6d.tar.gz
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.
Diffstat (limited to 'app')
-rw-r--r--app/styles/input.css1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/styles/input.css b/app/styles/input.css
index 35653ea..59bd111 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;