blob: 694d2a61b9453256912dafbfd9301c613746ec1c (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
//Fixed alerts
.alert-danger {
background-color: $accent-04--02;
border-color: $accent-04--01;
border-radius: 0;
color: $primary-dark;
text-align: left;
}
.alert-warning {
background-color: $accent-03--03;
border-color: $accent-03--02;
border-radius: 0;
color: $primary-dark;
text-align: left;
.icon {
vertical-align: bottom;
}
}
.message-container {
background-color: $background-02;
padding: 1em 1.5em;
display: inline-block;
>*:last-child {
margin-bottom: 0;
}
}
.notification-banner {
padding: 8px 10px;
margin-bottom: 24px;
border-style: solid;
border-width: 1px;
position: relative;
}
.notification-banner__text {
font-size: 0.9em;
margin-bottom: 0;
line-height: 1.2;
}
.notification-banner--information {
background-color: $background-02;
border-color: $border-color-01;
}
.notification-banner--warning {
background-color: $accent-03--03;
border-color: $accent-03--02;
.icon {
position: absolute;
left: 10px;
top: 8px;
bottom: 8px;
width: 18px;
height: 30px;
margin: auto;
}
.notification-banner__text {
padding-left: 24px;
}
}
|