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:
Daniel Calviño Sánchez 2018-08-27 18:12:50 +02:00
parent 8824af324d
commit c3610d1d17
1 changed files with 3 additions and 0 deletions

View File

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