From 4835d72f9f6075826ca81a040f4603c0268698fb Mon Sep 17 00:00:00 2001 From: Veit Lehmann Date: Thu, 9 May 2013 00:36:47 +0200 Subject: [PATCH] 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. --- tt-rss.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tt-rss.css b/tt-rss.css index dec14794..565be97f 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -1067,3 +1067,8 @@ div.hl.active { min-width : 23px; } +#feedTree .dijitTreeRow { + max-width: 100%; + overflow: hidden; + text-overflow: ellipsis; +} -- 2.39.2