Fix file list visible behind the multiselect header
Some parts of the file list contents (file name and actions) had a higher z-index than the file list multiselect header. That header is fixed in place, so when the file list contents were scrolled and those parts with a higher z-index overlapped the multiselect header they were fully visible. Now the z-index for the multiselect header has a higher value (the same used in the controls bar) to ensure that the contents are shown behind the header. Fixes #7540 Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
99175c32e5
commit
0b494b1f20
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ table th.column-last, table td.column-last {
|
|||
table.multiselect thead {
|
||||
position: fixed;
|
||||
top: 89px;
|
||||
z-index: 10;
|
||||
z-index: 55;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
left: 250px; /* sidebar */
|
||||
|
|
Loading…
Reference in a new issue