diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-10-06 18:55:28 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-10-06 20:56:47 +0200 |
commit | b92bb0bd28b1d1539df3eea6bab92f31e79c99f2 (patch) | |
tree | f879fea9cfca24a125ddd9c62fe0c6d63af101de | |
parent | 0a840c02f73b224f40c8a985a7b57d950aa7be48 (diff) | |
download | volse-hubzilla-b92bb0bd28b1d1539df3eea6bab92f31e79c99f2.tar.gz volse-hubzilla-b92bb0bd28b1d1539df3eea6bab92f31e79c99f2.tar.bz2 volse-hubzilla-b92bb0bd28b1d1539df3eea6bab92f31e79c99f2.zip |
give apps some more space and prevent linebreaks in app names. Add ellipsis to too long names.
(cherry picked from commit 62433b5f0527f4fa232134a1f1e8a67739d3b711)
-rw-r--r-- | view/css/mod_apps.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/view/css/mod_apps.css b/view/css/mod_apps.css index 5e6000fb4..608027bd4 100644 --- a/view/css/mod_apps.css +++ b/view/css/mod_apps.css @@ -1,9 +1,12 @@ .app-container { float: left; - width: 148px; - margin: 20px; + width: 180px; + margin: 35px; } .app-name { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; margin: 10px 0px; } |