From c500b197622e7524b1e6bd250cbc65145ccccda4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Wed, 3 Jan 2018 02:22:00 +0100 Subject: [PATCH] Remove margin for selected files summary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The selected files summary shown in the multiselect header has a margin to align it with the names of the files in the contents of the file list. However, on very narrow screens, and depending on the verbosity of the language, the summary can overlap with the actions when the selection contains files and folders. To try to mitigate this, besides showing only the icons for the actions, the summary margin is removed too in very narrow screens. Signed-off-by: Daniel Calviño Sánchez --- apps/files/css/mobile.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/files/css/mobile.scss b/apps/files/css/mobile.scss index aadbe2ada2..703ae49983 100644 --- a/apps/files/css/mobile.scss +++ b/apps/files/css/mobile.scss @@ -89,4 +89,9 @@ table.dragshadow { table th .selectedActions a { padding: 17px 14px; } + + /* Remove the margin to reduce the overlap between the name and the icons */ + table.multiselect th .columntitle.name { + margin-left: 0; + } }