diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-09-27 13:58:35 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2017-10-19 01:46:13 +0200 |
commit | e29bd3b743ca4e5bcd07b69fe019cb8208104b98 (patch) | |
tree | bd81956c66799b750e7edd0e9e95daf04d0a5fe8 /apps | |
parent | 9ff0941c076c4f9c96872bdab8f97568793a8f6b (diff) | |
download | nextcloud-server-e29bd3b743ca4e5bcd07b69fe019cb8208104b98.tar.gz nextcloud-server-e29bd3b743ca4e5bcd07b69fe019cb8208104b98.zip |
Show always the checkbox
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 <danxuliu@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index f5cb130cfe3..8c9995b222f 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, |