From 1b8c2d99a2f4a6115aad952bdfccf2b56b09b8d1 Mon Sep 17 00:00:00 2001 From: John Shaver Date: Mon, 10 Sep 2018 23:39:49 -0700 Subject: [PATCH] You can now tab select check boxes. --- app/styles/main.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/styles/main.css b/app/styles/main.css index 6fd048d..3333506 100644 --- a/app/styles/main.css +++ b/app/styles/main.css @@ -128,7 +128,8 @@ pre { } .checkbox-array input[type=checkbox] { - display: none; + opacity: 0; + position: absolute; } .checkbox-array input[type=checkbox] ~ .icon-checked-box { @@ -254,4 +255,8 @@ pre { .cert-download-container { margin: 0 -31%; +} + +.checkbox-array input[type=checkbox]:focus ~ .icon-checked-box, .checkbox-array input[type=checkbox]:focus ~ .icon-unchecked-box { + background: #5bc17f52; } \ No newline at end of file