From: Andrew Dolgov Date: Sat, 26 Jul 2014 18:08:33 +0000 (+0400) Subject: minor spacer/whiteBox appearance tweaks X-Git-Tag: 1.14~49 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=760183e37dbea8c0ab21db73446c294fd63e9a5b minor spacer/whiteBox appearance tweaks --- diff --git a/css/tt-rss.css b/css/tt-rss.css index 6dbb36a5..1f8c36bf 100644 --- a/css/tt-rss.css +++ b/css/tt-rss.css @@ -546,6 +546,9 @@ div.whiteBox { text-align : center; padding : 1em 1em 0px 1em; font-size : 11px; + border-width : 0px 0px 1px 0px; + border-style : solid; + border-color : #ddd; } div.autocomplete { @@ -916,8 +919,14 @@ img.feedIcon, img.tinyFeedIcon { font-style : italic; } -#headlines-spacer a { +#headlines-spacer a, #headlines-spacer span { color : #555; + padding : 10px; + display : block; +} + +#headlines-spacer a:hover { + color : #88b0f0; } ul#filterDlg_Matches, ul#filterDlg_Actions { diff --git a/js/viewfeed.js b/js/viewfeed.js index 14c9217c..c319a8ed 100644 --- a/js/viewfeed.js +++ b/js/viewfeed.js @@ -180,7 +180,8 @@ function headlines_callback2(transport, offset, background, infscroll_req) { var hsp = $("headlines-spacer"); - if (hsp) hsp.innerHTML = "Click to open next unread feed."; + if (hsp) hsp.innerHTML = "" + + __("Click to open next unread feed.") + ""; } } @@ -1311,8 +1312,8 @@ function headlines_scroll_handler(e) { ((e.scrollTop + e.offsetHeight) / e.scrollHeight >= 0.7))) { if (hsp) - hsp.innerHTML = " " + - __("Loading, please wait..."); + hsp.innerHTML = " " + + __("Loading, please wait...") + ""; loadMoreHeadlines(); return;