1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 07:41:29 +00:00

shamelessly round the hotkey popup help corners

This commit is contained in:
Andrew Dolgov
2008-05-16 06:17:49 +01:00
parent 3a391f6720
commit ec92c9d146
7 changed files with 51 additions and 3 deletions

View File

@@ -5516,4 +5516,17 @@
return "score_neutral.png";
}
}
function rounded_table_start($classname) {
print "<table width='100%' class='$classname' cellspacing='0' cellpadding='0'>";
print "<tr><td class='c1'>&nbsp;</td><td class='top'>&nbsp;</td><td class='c2'>&nbsp;</tr>";
print "<tr><td class='left'>&nbsp;</td><td class='content'>";
}
function rounded_table_end() {
print "</td><td class='right'>&nbsp;</td></tr>";
print "<tr><td class='c4'>&nbsp;</td><td class='bottom'>&nbsp;</td><td class='c3'>&nbsp;</tr>";
print "</table>";
}
?>