blob: ccd5b8d218d1c48f449dfcbb6f18895e4443d813 (
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
|
.v-Notification {
background: #999;
color: #fff;
cursor: pointer;
overflow: hidden;
padding: 1em;
max-width:85%;
}
.v-Notification h1,
.v-Notification p,
.v-Notification-error h1,
.v-Notification-error p,
.v-Notification-warning h1,
.v-Notification-warning p {
display: inline;
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;
}
|