diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-10-01 11:50:34 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-10-01 11:50:34 +0200 |
commit | 8a34c29b2c7f8d81aa0a3055d20dc2c7af24a34f (patch) | |
tree | 9b181fb7017e3aafba8a54cef34f93ccfcabc691 /apps/files/css | |
parent | eeac6e2ab17bb9bfd94c51e8e026daa25ef3a033 (diff) | |
download | nextcloud-server-8a34c29b2c7f8d81aa0a3055d20dc2c7af24a34f.tar.gz nextcloud-server-8a34c29b2c7f8d81aa0a3055d20dc2c7af24a34f.zip |
[IE8] Fix dangling Delete action when multiselect is enabled
For some reason we need to cancel out the table's top: 95px, but just
for the delete action and not the other ones... whatever, IE8...
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 1d4d0774482..9c36cdd4bd4 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -563,6 +563,10 @@ a.action > img { margin-bottom: -1px; } +html.ie8 .column-mtime .selectedActions { + top: -95px; +} + #fileList a.action { display: inline; padding: 17px 8px; |