From 0b494b1f20255c3208dc7294eaa503d37ad8106b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Tue, 2 Jan 2018 14:05:15 +0100 Subject: [PATCH] Fix file list visible behind the multiselect header MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some parts of the file list contents (file name and actions) had a higher z-index than the file list multiselect header. That header is fixed in place, so when the file list contents were scrolled and those parts with a higher z-index overlapped the multiselect header they were fully visible. Now the z-index for the multiselect header has a higher value (the same used in the controls bar) to ensure that the contents are shown behind the header. Fixes #7540 Signed-off-by: Daniel Calviño Sánchez --- apps/files/css/files.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 9952203167c83..00060ee7bd646 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -247,7 +247,7 @@ table th.column-last, table td.column-last { table.multiselect thead { position: fixed; top: 89px; - z-index: 10; + z-index: 55; -moz-box-sizing: border-box; box-sizing: border-box; left: 250px; /* sidebar */