2007-03-22 10:30:00 -07:00
|
|
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
|
|
|
|
notification {
|
|
|
|
background-color: InfoBackground;
|
|
|
|
color: InfoText;
|
2009-09-04 03:58:18 -07:00
|
|
|
text-shadow: none;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
notification[type="info"] {
|
|
|
|
background-color: -moz-Dialog;
|
2008-02-09 22:05:34 -08:00
|
|
|
color: -moz-DialogText;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
notification[type="critical"] {
|
|
|
|
background-color: red;
|
2008-02-09 22:05:34 -08:00
|
|
|
color: white;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.messageImage {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2009-02-24 00:30:46 -08:00
|
|
|
-moz-margin-start: 6px;
|
|
|
|
-moz-margin-end: 1px;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-04-29 14:29:30 -07:00
|
|
|
/* Default icons for notifications */
|
|
|
|
|
|
|
|
notification[type="info"] .messageImage {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/information-16.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
notification[type="warning"] .messageImage {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/warning-16.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
notification[type="critical"] .messageImage {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/error-16.png");
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
.messageCloseButton {
|
|
|
|
list-style-image: url("chrome://global/skin/icons/close.png");
|
|
|
|
-moz-appearance: none;
|
2008-03-21 02:40:20 -07:00
|
|
|
-moz-image-region: rect(0px, 14px, 14px, 0px);
|
2007-03-22 10:30:00 -07:00
|
|
|
padding: 4px 2px;
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.messageCloseButton:hover {
|
2008-03-21 02:40:20 -07:00
|
|
|
-moz-image-region: rect(0px, 28px, 14px, 14px);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.messageCloseButton:hover:active {
|
2008-03-21 02:40:20 -07:00
|
|
|
-moz-image-region: rect(0px, 42px, 14px, 28px);
|
|
|
|
}
|
2009-02-24 00:30:46 -08:00
|
|
|
|
|
|
|
.messageCloseButton > .toolbarbutton-icon {
|
|
|
|
-moz-margin-end: 5px;
|
|
|
|
}
|