From 64c0874a153a9acbc55e761e4c8de6e47f4b7a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Wed, 3 Jan 2018 01:32:39 +0100 Subject: [PATCH] Increase touch area for header icons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On narrow screens only the action icons are shown in the multiselect header of the file list. In that case the padding of those icons is increased to provide a larger touch area (the padding used is the same as in the inline actions of the file list). 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 5653d5841b..aadbe2ada2 100644 --- a/apps/files/css/mobile.scss +++ b/apps/files/css/mobile.scss @@ -84,4 +84,9 @@ table.dragshadow { table th .selectedActions a span:not(.icon) { display: none; } + + /* Increase touch area for the icons */ + table th .selectedActions a { + padding: 17px 14px; + } }