Improve the look of the biff animated alert window for thunderbird. Add a different border, change the padding

and change the background color.
This commit is contained in:
scott%scott-macgregor.org 2003-11-15 22:46:53 +00:00
Родитель 8eb9e56674
Коммит 32b761ddf1
1 изменённых файлов: 30 добавлений и 18 удалений

Просмотреть файл

@ -43,34 +43,46 @@
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
.alertBox { #alertNotification
background-color: moz-Dialog; {
background-color: transparent;
min-height: 50px; min-height: 50px;
border-right: 3px solid #7B969C; border: ridge #5486DA 4px;
border-bottom: 3px solid #7B969C;
border-left: 3px solid #7B969C;
border-top: 3px solid #7B969C;
} }
.alertImageBox { .alertImageBox
{
margin-left: 4px; margin-left: 4px;
margin-right: 6px; margin-right: 6px;
min-height: 46px; min-height: 46px;
background-color: transparent;
} }
.alertTitle { .alertTitle
{
font-weight: bold; font-weight: bold;
background-color: transparent;
} }
.alertText { .alertText
{
margin-right: 6px; margin-right: 6px;
background-color: transparent;
} }
.alertText[clickable="true"] { .alertText[clickable="true"]
{
cursor: pointer; cursor: pointer;
color: #1455D6; color: #1455D6;
} }
.alertText[clickable="true"]:hover:active { .alertText[clickable="true"]:hover:active
{
color: #424F63; color: #424F63;
} }
.alertTextBox
{
padding-right: 10px;
padding-top: 5px;
}