From c3610d1d172d49601e4cb688f0ec5b90c35ac09d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Mon, 27 Aug 2018 18:12:50 +0200 Subject: [PATCH] Remove limit on "max-width" for file names in drag shadow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- apps/files/css/files.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 9929855212..c41255b986 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -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;