blob: f2f8df664b7fc0225b1543fb1dbeb8ecf160c0b6 (
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
|
.connection-status-badge {
font-size: 0.8em;
border-radius: 5px;
padding: 0.1em 1em;
}
.connection-status-badge::before {
width: 10px;
height: 10px;
border-radius: 50%;
display: inline-block;
content: "";
margin-right: 0.6em;
}
.connection-status-badge.success {
color: var(--cru-create-color);
}
.connection-status-badge.success::before {
background-color: var(--cru-create-color);
}
.connection-status-badge.warning {
color: #e4a700; /* TODO: Warning color */
}
.connection-status-badge.warning::before {
background-color: #e4a700;
}
.connection-status-badge.danger {
color: var(--cru-danger-color);
}
.connection-status-badge.danger::before {
background-color: var(--cru-danger-color);
}
|