mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-16 02:15:56 +00:00
minor spacer/whiteBox appearance tweaks
This commit is contained in:
@@ -546,6 +546,9 @@ div.whiteBox {
|
|||||||
text-align : center;
|
text-align : center;
|
||||||
padding : 1em 1em 0px 1em;
|
padding : 1em 1em 0px 1em;
|
||||||
font-size : 11px;
|
font-size : 11px;
|
||||||
|
border-width : 0px 0px 1px 0px;
|
||||||
|
border-style : solid;
|
||||||
|
border-color : #ddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.autocomplete {
|
div.autocomplete {
|
||||||
@@ -916,8 +919,14 @@ img.feedIcon, img.tinyFeedIcon {
|
|||||||
font-style : italic;
|
font-style : italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
#headlines-spacer a {
|
#headlines-spacer a, #headlines-spacer span {
|
||||||
color : #555;
|
color : #555;
|
||||||
|
padding : 10px;
|
||||||
|
display : block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#headlines-spacer a:hover {
|
||||||
|
color : #88b0f0;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul#filterDlg_Matches, ul#filterDlg_Actions {
|
ul#filterDlg_Matches, ul#filterDlg_Actions {
|
||||||
|
|||||||
@@ -180,7 +180,8 @@ function headlines_callback2(transport, offset, background, infscroll_req) {
|
|||||||
|
|
||||||
var hsp = $("headlines-spacer");
|
var hsp = $("headlines-spacer");
|
||||||
|
|
||||||
if (hsp) hsp.innerHTML = "Click to open next unread feed.";
|
if (hsp) hsp.innerHTML = "<a href='#' onclick='openNextUnreadFeed()'>" +
|
||||||
|
__("Click to open next unread feed.") + "</a>";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1311,8 +1312,8 @@ function headlines_scroll_handler(e) {
|
|||||||
((e.scrollTop + e.offsetHeight) / e.scrollHeight >= 0.7))) {
|
((e.scrollTop + e.offsetHeight) / e.scrollHeight >= 0.7))) {
|
||||||
|
|
||||||
if (hsp)
|
if (hsp)
|
||||||
hsp.innerHTML = "<img src='images/indicator_tiny.gif'> " +
|
hsp.innerHTML = "<span class='loading'><img src='images/indicator_tiny.gif'> " +
|
||||||
__("Loading, please wait...");
|
__("Loading, please wait...") + "</span>";
|
||||||
|
|
||||||
loadMoreHeadlines();
|
loadMoreHeadlines();
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user