1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 03:05:55 +00:00

infobox uses semi-transparent overlay

This commit is contained in:
Andrew Dolgov
2006-05-18 14:18:30 +01:00
parent 0530ddd88b
commit 1d7bf5a0f3
6 changed files with 17 additions and 14 deletions

View File

@@ -78,7 +78,7 @@ var notify_last_doc = false;
function hide_notify() {
if (notify_last_doc) {
var n = notify_last_doc.getElementById("notify");
if (navigator.userAgent.match("Firefox")) {
if (browser.isNS) {
if (notify_opacity >= 0) {
notify_opacity = notify_opacity - 0.2;
n.style.opacity = notify_opacity;
@@ -1049,3 +1049,4 @@ function toggleSubmitNotEmpty(e, submit_id) {
exception_error("toggleSubmitNotEmpty", e);
}
}