suite default theme changes on trunk from 1.9.1 branch point up to 2010-02-21
[themes.git] / LCARStrek / global / notification.css
CommitLineData
f98e9249
RK
1@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
2
3notification {
4 background-color : #FFCF00;
5 color: #000000;
6 -moz-border-radius: 8px;
7}
8
9notification[type="info"] {
10 background-color: #9C9CFF;
11 color: #000000;
12}
13
14notification[type="critical"] {
15 background-color: #FF0000;
16 color: #000000;
17}
18
19.messageImage {
20 width: 16px;
21 height: 16px;
f98e9249
RK
22}
23
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
6894848c
RK
37.notification-inner {
38 -moz-margin-start: 8px;
39 -moz-margin-end: 12px;
40}
41
f98e9249
RK
42.messageCloseButton {
43 list-style-image: url("chrome://global/skin/icons/close-button.gif");
44 padding: 4px 2px;
45 border: none;
46}
6894848c
RK
47
48.messageCloseButton:hover,
49.messageCloseButton:hover:active {
50 list-style-image: url("chrome://global/skin/icons/close-button-hover.gif");
51}
ca710c53
RK
52
53.messageCloseButton > .toolbarbutton-icon {
54 -moz-margin-start: 5px;
55}