EarlyBlue 2.0a1 -> 2.0a2 changes, communicator/ and global/ changes
[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;
21 margin: 0px 1px 0px 6px;
22}
23
6daee013
RK
24/* Default icons for notifications */
25
26notification[type="info"] .messageImage {
27 list-style-image: url("chrome://global/skin/icons/information-16.png");
28}
29notification[type="warning"] .messageImage {
30 list-style-image: url("chrome://global/skin/icons/warning-16.png");
31}
32
33notification[type="critical"] .messageImage {
34 list-style-image: url("chrome://global/skin/icons/error-16.png");
35}
36
df8c26c4
RK
37.messageText {
38 -moz-margin-start: 5px;
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}