diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 14:04:33 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 14:04:33 +0100 |
commit | 90aa1b3532525d095188ba3957a50c58cb6d8c3d (patch) | |
tree | eb5029916ee3c8493e898c9ffd4f629abca754e5 | |
parent | c801b86bc2551edfb8aeff20a9dee35dd70fb949 (diff) | |
download | nextcloud-server-90aa1b3532525d095188ba3957a50c58cb6d8c3d.tar.gz nextcloud-server-90aa1b3532525d095188ba3957a50c58cb6d8c3d.zip |
ellipsize long app names in navigation
-rw-r--r-- | core/css/styles.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 831c6c752ec..2b5f1222c02 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -189,6 +189,7 @@ fieldset.warning legend { color:#b94a48 !important; } display:block; padding:8px 0 4px; text-decoration:none; font-size:10px; text-align:center; color:#fff; text-shadow:#000 0 -1px 0; opacity:.3; + white-space:nowrap; overflow:hidden; text-overflow:ellipsis; // ellipsize long app names } #navigation a:hover, #navigation a:focus { opacity:.8; } #navigation a.active { opacity:1; } |