blob: 22fc8635d1627c98c4537dae98bcdcb0faf79942 (
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
|
.alert {
padding: 15px;
margin-bottom: 20px;
color: #444;
background: #eee;
border-bottom: 5px solid #ddd;
}
.alert-success {
background: @state-success-bg;
border-color: @state-success-border;
color: @state-success-text;
}
.alert-info {
background: @state-info-bg;
border-color: @state-info-border;
color: @state-info-text;
}
.alert-danger {
background: @state-danger-bg;
border-color: @state-danger-border;
color: @state-danger-text;
}
.alert-warning {
background: @state-warning-bg;
border-color: @state-warning-border;
color: @state-warning-text;
}
|