1
0
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:
Andrew Dolgov
2010-01-14 23:09:23 +03:00
parent ef9cab2339
commit 883fee8df0
24 changed files with 253 additions and 33 deletions

View File

@@ -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>

View File

@@ -300,7 +300,7 @@
<button onclick=\"javascript:updateFilterList()\">".__('Search')."</button>
&nbsp;
<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"] = "&mdash;";
} 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"];