summaryrefslogtreecommitdiff
path: root/tt-rss.css
diff options
context:
space:
mode:
authorVeit Lehmann <[email protected]>2013-05-09 00:36:47 +0200
committerVeit Lehmann <[email protected]>2013-05-09 00:36:47 +0200
commit4835d72f9f6075826ca81a040f4603c0268698fb (patch)
tree67e6ba98320e6cd18f5e0ead113e9a50475695bf /tt-rss.css
parentfd687300bff82e75425600dc4964795d48fb7f94 (diff)
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.
Diffstat (limited to 'tt-rss.css')
-rw-r--r--tt-rss.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/tt-rss.css b/tt-rss.css
index dec147946..565be97f9 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;
+}