diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-01-15 17:53:23 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-01-15 17:53:23 +0100 |
commit | 7d81299014069e4a2dd87f985db1fa8e0084b48c (patch) | |
tree | 61fd765fa20edbf831c7497f125b3cc149b9c20f /apps/files/css | |
parent | 36ced1f0020593470292e240bb6a0ef5716167f4 (diff) | |
download | nextcloud-server-7d81299014069e4a2dd87f985db1fa8e0084b48c.tar.gz nextcloud-server-7d81299014069e4a2dd87f985db1fa8e0084b48c.zip |
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.
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.css | 2 |
1 files changed, 2 insertions, 0 deletions
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%; |