From addeac64c719831cdeee5918ed56c48450ed5f65 Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 23 Oct 2021 18:28:45 +0200 Subject: [PATCH] checkbox selection hilight --- copyparty/web/browser.css | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/copyparty/web/browser.css b/copyparty/web/browser.css index f63b94a4..2724f7dd 100644 --- a/copyparty/web/browser.css +++ b/copyparty/web/browser.css @@ -530,15 +530,10 @@ html.light .opview input[type="text"].err { input[type="checkbox"]+label { color: #f5a; } +input[type="radio"]:checked+label, input[type="checkbox"]:checked+label { color: #fc5; } -input[type="radio"]:checked+label { - color: #fc0; -} -html.light input[type="radio"]:checked+label { - color: #07c; -} .opview input.i { width: calc(100% - 16.2em); } @@ -1245,6 +1240,10 @@ html.light #files tr.sel a.play.act { html.light input[type="checkbox"] + label { color: #333; } +html.light input[type="radio"]:checked + label, +html.light input[type="checkbox"]:checked + label { + color: #07c; +} html.light .opwide>div { border-color: #ccc; }