Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/web/ui/src/features/component/HealthLabel.module.css
5283 views
1
span.health {
2
display: inline-block;
3
font-size: 12px;
4
padding: 4px 8px;
5
min-width: 64px;
6
color: #ffffff;
7
background-color: #595c60;
8
border: 1px solid #595c60;
9
border-radius: 3px;
10
font-weight: 600;
11
text-transform: capitalize;
12
text-align: center;
13
line-height: 1.2em;
14
}
15
16
span.health.state-ok {
17
color: #ffffff;
18
background-color: #3b8160;
19
border-color:#3b8160;
20
}
21
22
span.health.state-error {
23
color: #ffffff;
24
background-color: #d2476d;
25
border-color: #d2476d;
26
}
27
28
span.health.state-warn {
29
color: #000000;
30
background-color: #f5d65b;
31
border-color: #f5d65b;
32
}
33
34
35
36