From e29bd3b743ca4e5bcd07b69fe019cb8208104b98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Wed, 27 Sep 2017 13:58:35 +0200 Subject: [PATCH] Show always the checkbox MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The checkbox is not shown always with full opacity, though, in order to reduce the visual noise (specially later, once the checkbox is moved to its own column). Signed-off-by: Daniel Calviño Sánchez --- apps/files/css/files.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index f5cb130cfe..8c9995b222 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -441,14 +441,14 @@ table td.filename .uploadtext { /* File checkboxes */ #fileList tr td.filename>.selectCheckBox + label:before { - opacity: 0; + opacity: 0.3; position: absolute; bottom: 4px; right: 0; z-index: 10; } -/* Show checkbox when hovering, checked, or selected */ +/* Show checkbox with full opacity when hovering, checked, or selected */ #fileList tr:hover td.filename>.selectCheckBox + label:before, #fileList tr:focus td.filename>.selectCheckBox + label:before, #fileList tr td.filename>.selectCheckBox:checked + label:before,