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:
parent
36ced1f002
commit
7d81299014
|
@ -258,6 +258,8 @@ table td.filename .thumbnail {
|
||||||
margin-top: 9px;
|
margin-top: 9px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
float: left;
|
float: left;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 4;
|
||||||
}
|
}
|
||||||
table td.filename input.filename {
|
table td.filename input.filename {
|
||||||
width: 70%;
|
width: 70%;
|
||||||
|
|
Loading…
Reference in New Issue