From: Vincent Petry Date: Thu, 15 Jan 2015 16:53:23 +0000 (+0100) Subject: Fixed thumbnal z-index for when no checkbox is there X-Git-Tag: v8.0.0beta1~16^2~2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7d81299014069e4a2dd87f985db1fa8e0084b48c;p=nextcloud-server.git 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. --- 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%;