make #notify more noticeable
This commit is contained in:
parent
7e9a398637
commit
8dcfffd01e
29
functions.js
29
functions.js
|
@ -57,16 +57,13 @@ function p_notify(msg) {
|
||||||
|
|
||||||
if (!n || !nb) return;
|
if (!n || !nb) return;
|
||||||
|
|
||||||
if (msg == "") msg = " ";
|
if (msg == "") {
|
||||||
|
nb.innerHTML = " ";
|
||||||
nb.innerHTML = msg;
|
n.style.background = "#ffffff";
|
||||||
|
|
||||||
/* if (msg.length == 0) {
|
|
||||||
n.style.display = "none";
|
|
||||||
} else {
|
} else {
|
||||||
n.style.display = "block";
|
nb.innerHTML = msg;
|
||||||
} */
|
n.style.background = "#fffff0";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function notify(msg) {
|
function notify(msg) {
|
||||||
|
@ -76,15 +73,13 @@ function notify(msg) {
|
||||||
|
|
||||||
if (!n || !nb) return;
|
if (!n || !nb) return;
|
||||||
|
|
||||||
if (msg == "") msg = " ";
|
if (msg == "") {
|
||||||
|
nb.innerHTML = " ";
|
||||||
nb.innerHTML = msg;
|
n.style.background = "#ffffff";
|
||||||
|
|
||||||
/* if (msg.length == 0) {
|
|
||||||
n.style.display = "none";
|
|
||||||
} else {
|
} else {
|
||||||
n.style.display = "block";
|
nb.innerHTML = msg;
|
||||||
} */
|
n.style.background = "#fffff0";
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -258,7 +258,8 @@ input.editbox {
|
||||||
#notify {
|
#notify {
|
||||||
font-size : 10pt;
|
font-size : 10pt;
|
||||||
text-align : right;
|
text-align : right;
|
||||||
color : gray;
|
color : black;
|
||||||
|
font-weight : bold;
|
||||||
border-style : solid;
|
border-style : solid;
|
||||||
border-width : 0px 0px 1px 1px;
|
border-width : 0px 0px 1px 1px;
|
||||||
border-color : #e0e0e0;
|
border-color : #e0e0e0;
|
||||||
|
|
Loading…
Reference in New Issue