1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-21 04:31:28 +00:00

use css for help overlay, css cleanup

This commit is contained in:
Andrew Dolgov
2011-11-21 16:10:24 +04:00
parent 620c22aada
commit 56d7e94353
15 changed files with 5 additions and 75 deletions

View File

@@ -5979,18 +5979,6 @@
}
}
function rounded_table_start($classname, $header = " ") {
print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
print "<tr><td class='c1'>&nbsp;</td><td class='top'>$header</td><td class='c2'>&nbsp;</td></tr>";
print "<tr><td class='left'>&nbsp;</td><td class='content'>";
}
function rounded_table_end($footer = "&nbsp;") {
print "</td><td class='right'>&nbsp;</td></tr>";
print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>$footer</td><td class='c3'>&nbsp;</td></tr>";
print "</table>";
}
function feed_has_icon($id) {
return is_file(ICONS_DIR . "/$id.ico") && filesize(ICONS_DIR . "/$id.ico") > 0;
}