Remove limit on "max-width" for file names in drag shadow
The general file list sets "max-width: 0" in the file names, which causes the file names in the drag shadow to have no width for their content and thus to overlap with the file size. As that limit is needed for proper layout in the general file list it is removed only for file names in drag shadows. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
8824af324d
commit
c3610d1d17
|
@ -618,6 +618,9 @@ table.dragshadow td.filename {
|
|||
padding-left:60px;
|
||||
padding-right:16px;
|
||||
height: 36px;
|
||||
|
||||
/* Override "max-width: 0" to prevent file name and size from overlapping */
|
||||
max-width: unset;
|
||||
}
|
||||
table.dragshadow td.size {
|
||||
padding-right:8px;
|
||||
|
|
Loading…
Reference in New Issue