1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-05 04:49:39 +00:00

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.
This commit is contained in:
Veit Lehmann
2013-05-09 00:36:47 +02:00
parent fd687300bf
commit 4835d72f9f

View File

@@ -1067,3 +1067,8 @@ div.hl.active {
min-width : 23px;
}
#feedTree .dijitTreeRow {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}