Bug 508573: Notifications are missing the close button, r=gavin

This commit is contained in:
Mark Finkle 2009-08-05 13:06:38 -04:00
parent dcac979084
commit 411820ed75
2 changed files with 13 additions and 2 deletions

View File

@ -7,7 +7,7 @@ notification, notification[type="warning"] {
}
notification .messageCloseButton {
list-style-image: url("chrome://browser/skin/images/tab-close.png");
list-style-image: url("chrome://browser/skin/images/close-30.png");
-moz-image-region: -moz-initial;
-moz-box-align: start;
}

View File

@ -6,11 +6,22 @@ notification {
}
notification .messageCloseButton {
list-style-image: url("chrome://browser/skin/images/tab-close.png");
-moz-image-region: -moz-initial;
-moz-box-align: start;
}
@media all and (min-device-width: 401px) {
notification .messageCloseButton {
list-style-image: url("chrome://browser/skin/images/close-30.png");
}
}
@media all and (max-device-width: 400px) {
notification .messageCloseButton {
list-style-image: url("chrome://browser/skin/images/close-16.png");
}
}
notification .outset {
border-color: #396dcb !important;
}