Fixes navigation tree issues with long titles

This commit is contained in:
Jori Lallo 2016-08-05 23:00:42 +02:00
parent 1858082fd6
commit 41505039b2
1 changed files with 5 additions and 2 deletions

View File

@ -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;
}
}
}