mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-09 16:09:15 +00:00
neon updates; make more icons themeable; misc fixes
This commit is contained in:
@@ -316,7 +316,8 @@
|
||||
print "
|
||||
<div style='float : right'>
|
||||
<img style='display : none'
|
||||
id='feed_browser_spinner' src='images/indicator_white.gif'>
|
||||
id='feed_browser_spinner' src='".
|
||||
theme_image($link, 'images/indicator_white.gif')."'>
|
||||
<input name=\"search\" size=\"20\" type=\"search\"
|
||||
onchange=\"javascript:updateFeedBrowser()\" value=\"$browser_search\">
|
||||
<button onclick=\"javascript:updateFeedBrowser()\">".__('Search')."</button>
|
||||
|
||||
@@ -300,7 +300,7 @@
|
||||
<button onclick=\"javascript:updateFilterList()\">".__('Search')."</button>
|
||||
|
||||
<a class='helpLinkPic' href=\"javascript:displayHelpInfobox(2)\">
|
||||
<img src='images/sign_quest.gif'></a>
|
||||
<img style='vertical-align : top;' src='".theme_image($link, "images/sign_quest.png")."'></a>
|
||||
</div>";
|
||||
|
||||
print "<button onclick=\"return displayDlg('quickAddFilter', false)\">".
|
||||
@@ -415,9 +415,10 @@
|
||||
$line["action_param"] = "—";
|
||||
} else if ($line["action_name"] == "score") {
|
||||
|
||||
$score_pic = get_score_pic($line["action_param"]);
|
||||
$score_pic = theme_image($link,
|
||||
"images/" . get_score_pic($line["action_param"]));
|
||||
|
||||
$score_pic = "<img class='hlScorePic' src=\"images/$score_pic\">";
|
||||
$score_pic = "<img class='hlScorePic' src=\"$score_pic\">";
|
||||
|
||||
$line["action_param"] = "$score_pic " . $line["action_param"];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user