diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-10-06 20:55:28 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-10-06 20:55:28 +0200 |
commit | 62433b5f0527f4fa232134a1f1e8a67739d3b711 (patch) | |
tree | 55e8357b9ff8eecbbeb7ba9b81d345af9023412d | |
parent | 6ffdf3880f89b83c701f866a6188ef6f079078c5 (diff) | |
download | volse-hubzilla-62433b5f0527f4fa232134a1f1e8a67739d3b711.tar.gz volse-hubzilla-62433b5f0527f4fa232134a1f1e8a67739d3b711.tar.bz2 volse-hubzilla-62433b5f0527f4fa232134a1f1e8a67739d3b711.zip |
give apps some more space and prevent linebreaks in app names. Add ellipsis to too long names.
-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; } |