blob: 514d274488d74621703d3d33e360c6af0fb35709 (
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
|
.v-Notification {
background: #999;
color: #fff;
cursor: pointer;
overflow: hidden;
padding: 1em;
}
.v-Notification h1,
.v-Notification p,
.v-Notification.error h1,
.v-Notification.error p,
.v-Notification.warning h1,
.v-Notification.warning p {
display: inline;
white-space: nowrap;
margin: 0 0.5em 0 0;
}
.v-Notification.warning {
background: orange;
}
.v-Notification.error {
background: red;
}
.v-Notification.tray h1 {
display: block;
}
.v-Notification.tray p {
display: block;
}
.v-Notification.system {
background-color: red;
opacity: .7;
filter: alpha(opacity=70);
}
.v-Notification.system h1 {
display: block;
margin: 0;
}
.v-Notification.system p {
white-space: nowrap;
}
|