minor css updates
This commit is contained in:
parent
1eec50143b
commit
6759dde1dd
|
@ -1,3 +1,5 @@
|
||||||
|
@import "dijit.css";
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background : #f5f5f5;
|
background : #f5f5f5;
|
||||||
color : black;
|
color : black;
|
||||||
|
@ -24,6 +26,7 @@ div.content {
|
||||||
background : white;
|
background : white;
|
||||||
border : 1px solid #ddd;
|
border : 1px solid #ddd;
|
||||||
padding : 10px;
|
padding : 10px;
|
||||||
|
border-radius : 6px;
|
||||||
box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
|
box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -61,6 +61,7 @@ body#ttrssZoom div.postReply {
|
||||||
border : 1px solid #ddd;
|
border : 1px solid #ddd;
|
||||||
background : white;
|
background : white;
|
||||||
box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
|
box-shadow : 0px 1px 1px -1px rgba(0,0,0,0.1);
|
||||||
|
border-radius : 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body#ttrssZoom div.footer {
|
body#ttrssZoom div.footer {
|
||||||
|
|
|
@ -87,13 +87,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function print_error($msg) {
|
function print_error($msg) {
|
||||||
print "<div class='error'><span><img src='../images/alert.png'></span>
|
print "<div class='alert alert-error'>$msg</div>";
|
||||||
<span>$msg</span></div>";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function print_notice($msg) {
|
function print_notice($msg) {
|
||||||
print "<div class=\"notice\">
|
print "<div class=\"alert alert-info\">$msg</div>";
|
||||||
<span><img src=\"../images/information.png\"></span><span>$msg</span></div>";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function db_connect($host, $user, $pass, $db, $type, $port = false) {
|
function db_connect($host, $user, $pass, $db, $type, $port = false) {
|
||||||
|
|
Loading…
Reference in New Issue