1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 15:55:56 +00:00

more notice css tweaks

This commit is contained in:
Andrew Dolgov
2013-04-18 22:27:05 +04:00
parent 6a1f424924
commit 3c200461f8
5 changed files with 16 additions and 6 deletions

View File

@@ -80,12 +80,13 @@
}
function print_error($msg) {
print "<div class='error'><img src='../images/sign_excl.svg'> $msg</div>";
print "<div class='error'><span><img src='../images/sign_excl.svg'></span>
<span>$msg</span></div>";
}
function print_notice($msg) {
print "<div class=\"notice\">
<img src=\"../images/sign_info.svg\">$msg</div>";
<span><img src=\"../images/sign_info.svg\"></span><span>$msg</span></div>";
}
function db_connect($host, $user, $pass, $db, $type, $port) {