From 8ee314c8033a352133992d72600b0ccee9e8f042 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 21 May 2018 18:12:34 -0400 Subject: [PATCH] Disabled select on labels. Light mode selectors --- style.css | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index 5a53f40..5404d4e 100644 --- a/style.css +++ b/style.css @@ -310,16 +310,33 @@ body.dark input[type="checkbox"]:checked+ .flex-outer input[type="radio"] + label:not(.custom-header), .flex-outer input[type="checkbox"] + label:not(.custom-header) { + user-select: none; +} + +body.dark .flex-outer input[type="radio"] + label:not(.custom-header), +body.dark .flex-outer input[type="checkbox"] + label:not(.custom-header) { color: #888; background: #311; } -.flex-outer input[type="radio"]:checked + label:not(.custom-header), -.flex-outer input[type="checkbox"]:checked + label:not(.custom-header) { +body.dark .flex-outer input[type="radio"]:checked + label:not(.custom-header), +body.dark .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) { color: #fff; background: #131; } +body.light .flex-outer input[type="radio"] + label:not(.custom-header), +body.light .flex-outer input[type="checkbox"] + label:not(.custom-header) { + color: #555; + background: #faa; +} + +body.light .flex-outer input[type="radio"]:checked + label:not(.custom-header), +body.light .flex-outer input[type="checkbox"]:checked + label:not(.custom-header) { + color: #111; + background: #afa; +} + .flex-outer > li > label + *, .flex-outer label + *, .flex-inner {