blob: 2f52cbabf8120d3cf7736b40e4c168ba99371749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
.i-Notification {
background: #999;
color: #fff;
cursor: pointer;
overflow: hidden;
padding: 1em;
}
.i-Notification h1,
.i-Notification p,
.i-Notification.error h1,
.i-Notification.error p,
.i-Notification.warning h1,
.i-Notification.warning p {
display: inline;
white-space: nowrap;
margin: 0 0.5em 0 0;
}
.i-Notification.warning {
background: orange;
}
.i-Notification.error {
background: red;
}
.i-Notification.tray h1 {
display: block;
}
.i-Notification.tray p {
display: block;
}
.i-Notification.system {
background-color: red;
opacity: 0.7;
filter: alpha(opacity=70);
}
.i-Notification.system h1 {
display: block;
margin: 0;
}
.i-Notification.system p {
white-space: nowrap;
}
|