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.
This commit is contained in:
Vincent Petry 2015-01-15 17:53:23 +01:00
parent 36ced1f002
commit 7d81299014
1 changed files with 2 additions and 0 deletions

View File

@ -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%;