update both themes for DOMI classic changes up to 2010-12-30
[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;
3b1530c2 6 text-shadow: none;
df8c26c4
RK
7}
8
9notification[type="info"] {
10 background-color: #CCD0DD;
d0ff98fe 11 color: #000000;
df8c26c4
RK
12}
13
14notification[type="critical"] {
15 background-color: #FFC0C0;
d0ff98fe 16 color: #000000;
df8c26c4
RK
17}
18
19.messageImage {
20 width: 16px;
21 height: 16px;
02920d2b
RK
22 margin-top: 0px;
23 margin-bottom: 0px;
24 -moz-margin-start: 6px;
25 -moz-margin-end: 1px;
df8c26c4
RK
26}
27
6daee013
RK
28/* Default icons for notifications */
29
30notification[type="info"] .messageImage {
31 list-style-image: url("chrome://global/skin/icons/information-16.png");
32}
33notification[type="warning"] .messageImage {
34 list-style-image: url("chrome://global/skin/icons/warning-16.png");
35}
36
37notification[type="critical"] .messageImage {
38 list-style-image: url("chrome://global/skin/icons/error-16.png");
39}
40
df8c26c4
RK
41.messageCloseButton {
42 list-style-image: url("chrome://global/skin/icons/close-button.gif");
43 padding: 4px 2px;
44 border: none;
45}
ca710c53
RK
46
47.messageCloseButton > .toolbarbutton-icon {
48 -moz-margin-start: 5px;
49}