diff options
author | Raghu Nayyar <me@iraghu.com> | 2014-06-26 22:45:40 +0530 |
---|---|---|
committer | Raghu Nayyar <me@iraghu.com> | 2014-06-26 22:45:40 +0530 |
commit | 5b189315b53b14a51cc6b7b7b94905c66e8bb486 (patch) | |
tree | 7fde7f93b3655478124ef22eb649169014af5d20 | |
parent | 7804bd010c4960719fdb4184289b0a074b54cc7a (diff) | |
parent | 9eb7ed49255b51138c313741b2f6cd23534f40a6 (diff) | |
download | nextcloud-server-5b189315b53b14a51cc6b7b7b94905c66e8bb486.tar.gz nextcloud-server-5b189315b53b14a51cc6b7b7b94905c66e8bb486.zip |
Merge pull request #9234 from owncloud/fix-ellipsis-for-folders
Fix ellipsis for folders on mobile screens
-rw-r--r-- | apps/files/css/mobile.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index a0b92ca6949..a2c63724b06 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -25,7 +25,7 @@ table.multiselect thead { /* restrict length of displayed filename to prevent overflow */ table td.filename .nametext { - max-width: 75% !important; + width: 100%; } /* always show actions on mobile, not only on hover */ @@ -51,7 +51,7 @@ table td.filename .nametext { /* ellipsis on file names */ table td.filename .nametext .innernametext { - max-width: 75%; + max-width: 50%; } /* proper notification area for multi line messages */ |