From 7d81299014069e4a2dd87f985db1fa8e0084b48c Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 15 Jan 2015 17:53:23 +0100 Subject: [PATCH] Fixed thumbnal z-index for when no checkbox is there In file lists with no selection checkbox, the CSS selector is different. The thumbnail also needs position:absolute and a z-index to be displayed above the row's grey highlight. --- apps/files/css/files.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 5b947fa326c..7e0371af94f 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -258,6 +258,8 @@ table td.filename .thumbnail { margin-top: 9px; cursor: pointer; float: left; + position: absolute; + z-index: 4; } table td.filename input.filename { width: 70%; -- 2.39.5