aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/css
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-03-26 00:14:38 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-03-26 00:14:38 +0100
commit8958b9147b4134d1732b23882d8bc419572b7bd7 (patch)
tree761283a1058a8964266c230e12ae66bc4cc2a302 /apps/files_sharing/css
parentd0f84e936f3be2a4622b0b1b8be8d070c970b1cd (diff)
downloadnextcloud-server-8958b9147b4134d1732b23882d8bc419572b7bd7.tar.gz
nextcloud-server-8958b9147b4134d1732b23882d8bc419572b7bd7.zip
adding ellipsis on file names to public file list as well
Diffstat (limited to 'apps/files_sharing/css')
-rw-r--r--apps/files_sharing/css/mobile.css8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/files_sharing/css/mobile.css b/apps/files_sharing/css/mobile.css
index 7d2116d190d..988ae862efa 100644
--- a/apps/files_sharing/css/mobile.css
+++ b/apps/files_sharing/css/mobile.css
@@ -45,5 +45,13 @@ table td.filename .nametext {
display: none;
}
+/* ellipsis on file names */
+.nametext {
+ width: 60%;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
+
}