mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
55 lines
1.1 KiB
CSS
55 lines
1.1 KiB
CSS
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
|
|
|
notification {
|
|
background-color: InfoBackground;
|
|
color: InfoText;
|
|
text-shadow: none;
|
|
}
|
|
|
|
notification[type="info"] {
|
|
background-color: -moz-Dialog;
|
|
color: -moz-DialogText;
|
|
}
|
|
|
|
notification[type="critical"] {
|
|
background-color: red;
|
|
color: white;
|
|
}
|
|
|
|
.notification-inner {
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
}
|
|
|
|
.messageText {
|
|
margin-top: 0 !important;
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
.messageImage {
|
|
width: 16px;
|
|
height: 16px;
|
|
-moz-margin-start: 6px;
|
|
-moz-margin-end: 1px;
|
|
}
|
|
|
|
/* 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");
|
|
}
|
|
|
|
.messageCloseButton {
|
|
list-style-image: url("moz-icon://stock/gtk-close?size=menu");
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|