From a6c78e0a650817abbbf7ba276d7129a889b4836f Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 9 Oct 2009 13:25:58 +0400 Subject: feed editor: truncate linked-to feed title --- modules/pref-feeds.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php index b0269243e..6b510bc9d 100644 --- a/modules/pref-feeds.php +++ b/modules/pref-feeds.php @@ -224,8 +224,11 @@ } else { $is_selected = ""; } + + $title = truncate_string(htmlspecialchars($tmp_line["title"]), 40); + printf("", - $tmp_line["id"], $tmp_line["title"]); + $tmp_line["id"], $title); } print ""; -- cgit v1.2.3 From 3af75631670aa9823010adedb8354672a8273506 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 9 Oct 2009 13:42:19 +0400 Subject: actions dropbox layout fix --- themes/graycube/theme.css | 4 ++++ tt-rss.css | 5 +++++ tt-rss.php | 2 +- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/themes/graycube/theme.css b/themes/graycube/theme.css index 09332ffe3..129f167e1 100644 --- a/themes/graycube/theme.css +++ b/themes/graycube/theme.css @@ -290,6 +290,10 @@ div.infoBoxContents a:hover { background : #f9f9f9; } +#toolbar div.actionChooser { + margin-right : 0px; +} + #toolbar { position : absolute; left : 280px; diff --git a/tt-rss.css b/tt-rss.css index f18896784..0511979bb 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -1535,6 +1535,11 @@ div.whiteBox { border-collapse : collapse; } +#toolbar div.actionChooser { + margin-right : 5px; + float : right; +} + #toolbar { position : absolute; left : 261px; diff --git a/tt-rss.php b/tt-rss.php index 607bedb1d..1dcee23a4 100644 --- a/tt-rss.php +++ b/tt-rss.php @@ -188,7 +188,7 @@ window.onload = init;
-
+