From: Andrew Dolgov Date: Sat, 19 Nov 2005 18:01:06 +0000 (+0100) Subject: make #notify more noticeable X-Git-Tag: schema_feature_freeze_for_1.1~178 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=8dcfffd01ecffacab30f6686a419fd165f14261f;p=tt-rss.git make #notify more noticeable --- diff --git a/functions.js b/functions.js index aa3169ac..c4d79e51 100644 --- a/functions.js +++ b/functions.js @@ -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"; + } } diff --git a/tt-rss.css b/tt-rss.css index 3f56c9f8..e6d8751b 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -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;