summaryrefslogtreecommitdiffstats
path: root/apps/files/css/mobile.css
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-03-25 23:40:40 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2014-03-25 23:40:40 +0100
commite6392163a437ad5d44cba452edeaba35aeff250b (patch)
tree2a351d4401cf3e901e49a21ab73f78b40a466d1e /apps/files/css/mobile.css
parenta54260b5174cca222fb7589d9f582b454b37ef08 (diff)
downloadnextcloud-server-e6392163a437ad5d44cba452edeaba35aeff250b.tar.gz
nextcloud-server-e6392163a437ad5d44cba452edeaba35aeff250b.zip
adding ellipsis on file names
Diffstat (limited to 'apps/files/css/mobile.css')
-rw-r--r--apps/files/css/mobile.css7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css
index 087bb1f8364..bb71d67c761 100644
--- a/apps/files/css/mobile.css
+++ b/apps/files/css/mobile.css
@@ -49,5 +49,12 @@ table td.filename .nametext {
display: none;
}
+/* ellipsis on file names */
+.nametext {
+ width: 60%;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+}
}