finalize the 2.0 versions of the themes
[themes.git] / EarlyBlue / global / notification.css
CommitLineData
df8c26c4
RK
1@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2
3notification {
4 background-color : #FFFFCC;
5 color: #000000;
6}
7
8notification[type="info"] {
9 background-color: #CCD0DD;
d0ff98fe 10 color: #000000;
df8c26c4
RK
11}
12
13notification[type="critical"] {
14 background-color: #FFC0C0;
d0ff98fe 15 color: #000000;
df8c26c4
RK
16}
17
18.messageImage {
19 width: 16px;
20 height: 16px;
02920d2b
RK
21 margin-top: 0px;
22 margin-bottom: 0px;
23 -moz-margin-start: 6px;
24 -moz-margin-end: 1px;
df8c26c4
RK
25}
26
6daee013
RK
27/* Default icons for notifications */
28
29notification[type="info"] .messageImage {
30 list-style-image: url("chrome://global/skin/icons/information-16.png");
31}
32notification[type="warning"] .messageImage {
33 list-style-image: url("chrome://global/skin/icons/warning-16.png");
34}
35
36notification[type="critical"] .messageImage {
37 list-style-image: url("chrome://global/skin/icons/error-16.png");
38}
39
df8c26c4
RK
40.messageCloseButton {
41 list-style-image: url("chrome://global/skin/icons/close-button.gif");
42 padding: 4px 2px;
43 border: none;
44}
ca710c53
RK
45
46.messageCloseButton > .toolbarbutton-icon {
47 -moz-margin-start: 5px;
48}