blob: 75b5e6a0a91f16a4c1b71775e2d4fb36dd53cc20 (
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 liferay-notification {
.v-Notification {
background: #dff4ff;
color: #34404F;
font-weight: bold;
cursor: pointer;
overflow: hidden;
padding: 1em;
max-width: 85%;
border: 1px solid #a7cedf;
}
.v-Notification-caption,
.v-Notification-description {
display: inline;
margin: 0 0.5em 0 0;
}
.v-Notification-warning {
background: #ffc;
border-color: #fc0;
}
.v-Notification-error {
background-color: #ffdddd;
border-color: #ff0000;
}
.v-Notification-tray {
color: #111111;
background-color: #e5e5e5;
border-color: #b5b5b5;
}
.v-Notification-tray .v-Notification-caption {
display: block;
}
.v-Notification-tray .v-Notification-description {
display: block;
}
.v-Notification-system {
background-color: #ffdddd;
border-color: #ff0000;
}
.v-Notification-system .v-Notification-caption {
display: block;
margin: 0;
}
}
|