diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-01-03 02:22:00 +0100 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-01-03 02:22:00 +0100 |
commit | c500b197622e7524b1e6bd250cbc65145ccccda4 (patch) | |
tree | 07b4da427d2ac52a7971604aa397b7fe19bdfe1d /apps/files/css | |
parent | 64c0874a153a9acbc55e761e4c8de6e47f4b7a6d (diff) | |
download | nextcloud-server-c500b197622e7524b1e6bd250cbc65145ccccda4.tar.gz nextcloud-server-c500b197622e7524b1e6bd250cbc65145ccccda4.zip |
Remove margin for selected files summary
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 <danxuliu@gmail.com>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/mobile.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/files/css/mobile.scss b/apps/files/css/mobile.scss index aadbe2ada25..703ae499835 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; + } } |