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