blob: d9ddd4da27cf9c2e678c7a8d9b0d30c0a5b83cb7 (
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
47
48
|
@mixin reindeer-notification {
.v-Notification {
color: #fff;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
font-size: 100%;
background: #c8ccd0;
font-weight: bold;
}
.v-ie9 .v-Notification H1 {
/* Fix for #6793 */
font-weight: bold;
}
.v-Notification p {
line-height: 1.3;
}
.v-Notification-warning {
background: #fdf3b5;
color: #ca9a61;
border: 3px solid #fee3af;
}
.v-Notification-error {
background: #b40000 url(img/error-close.png) no-repeat right top;
border: 3px solid #ca3030;
}
.v-Notification-tray {
margin: 0 5px 5px 0;
background: #3b3c3e;
border: 2px solid #585b5c;
padding: 0.8em 0.9em;
}
.v-Notification-tray h1 {
font-size: 14px;
line-height: 18px;
}
.v-Notification-tray p {
font-size: 12px;
font-weight: normal;
}
.v-Notification-system {
background-color: #b40000;
}
}
|