make #notify more noticeable

This commit is contained in:
Andrew Dolgov 2005-11-19 19:01:06 +01:00
parent 7e9a398637
commit 8dcfffd01e
2 changed files with 14 additions and 18 deletions

View File

@ -57,16 +57,13 @@ function p_notify(msg) {
if (!n || !nb) return;
if (msg == "") msg = " ";
nb.innerHTML = msg;
/* if (msg.length == 0) {
n.style.display = "none";
if (msg == "") {
nb.innerHTML = " ";
n.style.background = "#ffffff";
} else {
n.style.display = "block";
} */
nb.innerHTML = msg;
n.style.background = "#fffff0";
}
}
function notify(msg) {
@ -76,15 +73,13 @@ function notify(msg) {
if (!n || !nb) return;
if (msg == "") msg = " ";
nb.innerHTML = msg;
/* if (msg.length == 0) {
n.style.display = "none";
if (msg == "") {
nb.innerHTML = " ";
n.style.background = "#ffffff";
} else {
n.style.display = "block";
} */
nb.innerHTML = msg;
n.style.background = "#fffff0";
}
}

View File

@ -258,7 +258,8 @@ input.editbox {
#notify {
font-size : 10pt;
text-align : right;
color : gray;
color : black;
font-weight : bold;
border-style : solid;
border-width : 0px 0px 1px 1px;
border-color : #e0e0e0;