]> git.wh0rd.org - tt-rss.git/commitdiff
keep counterNode always visible when feedTree rows get longer
authorVeit Lehmann <veit.lehmann@googlemail.com>
Wed, 8 May 2013 22:36:47 +0000 (00:36 +0200)
committerVeit Lehmann <veit.lehmann@googlemail.com>
Wed, 8 May 2013 22:36:47 +0000 (00:36 +0200)
.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.

tt-rss.css

index dec14794644f9d68ac2abfd5a8946020e78bf0bb..565be97f946710e0a742d1abbf4e194ac4e6e996 100644 (file)
@@ -1067,3 +1067,8 @@ div.hl.active {
        min-width : 23px;
 }
 
+#feedTree .dijitTreeRow {
+       max-width: 100%;
+       overflow: hidden;
+       text-overflow: ellipsis;
+}