blob: 5baf10d4114a715c7dd018d1e54fc1d2450a9b14 (
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
|
.notification-container{
display: flex;
padding: 15px 11px;
float: left;
.icon-container{
flex-grow: 1;
margin-right: 20px;
.icon-circle{
background-color: black;
height: 40px;
width: 40px;
border-radius: 50%;
display: flex;
align-items: center;
margin-right: 0;
background-color: rgba(255, 255, 255, 0.3);
.icon{
margin: 0 auto;
display: block;
}
}
}
.msg-content{
flex-grow: 3;
h3{
border-bottom: none;
font-weight: 400;
.f-type._18_m;
}
.message{
font-weight: 300;
.f-type._14_m;
}
}
}
.ui-notification.success{
background-color: @main_color_d;
.icon{
.notification-success-icon;
}
}
.ui-notification.error{
background-color: @func_color_q;
.icon{
.notification-error-icon;
}
}
.ui-notification.info{
background-color: @main_color_a;
.icon{
.notification-process-icon;
}
}
|