From 32b761ddf157de3ef208819227fdae455743ebd0 Mon Sep 17 00:00:00 2001 From: "scott%scott-macgregor.org" Date: Sat, 15 Nov 2003 22:46:53 +0000 Subject: [PATCH] Improve the look of the biff animated alert window for thunderbird. Add a different border, change the padding and change the background color. --- mail/base/skin/alert.css | 48 +++++++++++++++++++++++++--------------- 1 file changed, 30 insertions(+), 18 deletions(-) diff --git a/mail/base/skin/alert.css b/mail/base/skin/alert.css index 07acf8e72f2b..ff6240533700 100644 --- a/mail/base/skin/alert.css +++ b/mail/base/skin/alert.css @@ -42,35 +42,47 @@ @import url("chrome://global/skin/"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); + +#alertNotification +{ + background-color: transparent; + min-height: 50px; + border: ridge #5486DA 4px; +} -.alertBox { - background-color: moz-Dialog; - min-height: 50px; - border-right: 3px solid #7B969C; - border-bottom: 3px solid #7B969C; - border-left: 3px solid #7B969C; - border-top: 3px solid #7B969C; -} - -.alertImageBox { +.alertImageBox +{ margin-left: 4px; margin-right: 6px; - min-height: 46px; + min-height: 46px; + background-color: transparent; } -.alertTitle { - font-weight: bold; +.alertTitle +{ + font-weight: bold; + background-color: transparent; } -.alertText { - margin-right: 6px; +.alertText +{ + margin-right: 6px; + background-color: transparent; } - -.alertText[clickable="true"] { + +.alertText[clickable="true"] +{ cursor: pointer; color: #1455D6; } -.alertText[clickable="true"]:hover:active { +.alertText[clickable="true"]:hover:active +{ color: #424F63; } + +.alertTextBox +{ + padding-right: 10px; + padding-top: 5px; +}