From 8a34c29b2c7f8d81aa0a3055d20dc2c7af24a34f Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 1 Oct 2015 11:50:34 +0200 Subject: [PATCH] [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... --- apps/files/css/files.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 1d4d077448..9c36cdd4bd 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;