diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-09-29 14:38:29 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-09-29 14:38:29 +0200 |
commit | 1015ca72c3efdc24a4985735d5e481356f7fb19f (patch) | |
tree | eb10a609267ccf800c7add0f9236096d08e8f37c /apps/files/css | |
parent | d52361b09b3960d962f59b03a7aa178b45efa5b1 (diff) | |
download | nextcloud-server-1015ca72c3efdc24a4985735d5e481356f7fb19f.tar.gz nextcloud-server-1015ca72c3efdc24a4985735d5e481356f7fb19f.zip |
Prevent sort indicator hover to bypass multiselect restriction
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index d5ac9233239..928eb0c778e 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -187,7 +187,9 @@ table th .sort-indicator { opacity: .3; } .sort-indicator.hidden, -.multiselect .sort-indicator { +.multiselect .sort-indicator, +table.multiselect th:hover .sort-indicator.hidden, +table.multiselect th:focus .sort-indicator.hidden { visibility: hidden; } .multiselect .sort, .multiselect .sort span { |