From 41505039b2f742033a0494bf7f27f7c5cdc85006 Mon Sep 17 00:00:00 2001 From: Jori Lallo Date: Fri, 5 Aug 2016 23:00:42 +0200 Subject: [PATCH] Fixes navigation tree issues with long titles --- frontend/components/Tree/Tree.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/components/Tree/Tree.scss b/frontend/components/Tree/Tree.scss index 219c4e8e7..2e3d443ea 100644 --- a/frontend/components/Tree/Tree.scss +++ b/frontend/components/Tree/Tree.scss @@ -66,7 +66,10 @@ .nodeLabel { display: inline-block; width: 100%; - padding: 4px 5px; + padding: 4px 5px 0; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; &.isActive { background-color: #31363F; @@ -76,4 +79,4 @@ .rootLabel { color: #ccc; } -} \ No newline at end of file +}