summaryrefslogtreecommitdiffstats
path: root/apps/files/css
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-01-15 17:53:23 +0100
committerVincent Petry <pvince81@owncloud.com>2015-01-15 17:53:23 +0100
commit7d81299014069e4a2dd87f985db1fa8e0084b48c (patch)
tree61fd765fa20edbf831c7497f125b3cc149b9c20f /apps/files/css
parent36ced1f0020593470292e240bb6a0ef5716167f4 (diff)
downloadnextcloud-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.css2
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%;