Skip to content
Snippets Groups Projects
Commit 4835d72f authored by Veit Lehmann's avatar Veit Lehmann
Browse files

keep counterNode always visible when feedTree rows get longer

.dijitTreeRow gets a width set by dojo.js. Max-width keeps it from growing too big. overflow: hidden and text-overflow: ellipsis shorten the text with an ellipsis so the counterNode won't cover the text.
parent fd687300
No related branches found
No related tags found
No related merge requests found
......@@ -1067,3 +1067,8 @@ div.hl.active {
min-width : 23px;
}
#feedTree .dijitTreeRow {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment