From 58ae88c0d6708d465de86ce572156678b3768269 Mon Sep 17 00:00:00 2001 From: Jordan Scales Date: Sat, 2 May 2020 09:15:09 -0400 Subject: [PATCH] hide radios and checkboxes when appearance: none doesn't cut it fixes #76 --- style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index e6c35bf..12e124d 100644 --- a/style.css +++ b/style.css @@ -281,7 +281,9 @@ input[type="checkbox"] { -webkit-appearance: none; -moz-appearance: none; margin: 0; - background: 0; /* necessary for hiding default disabled-state styling on iOS */ + background: 0; + position: fixed; + opacity: 0; border: none; }