diff options
Diffstat (limited to 'statuspage/render.sh')
| -rwxr-xr-x | statuspage/render.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/statuspage/render.sh b/statuspage/render.sh index 22df5e7..a5602f0 100755 --- a/statuspage/render.sh +++ b/statuspage/render.sh @@ -85,6 +85,7 @@ function htmlesc(s) { function sqclass(status) { if (status == "ok") return "green" if (status == "warn") return "yellow" + if (status == "info") return "gray" return "red" } @@ -128,6 +129,7 @@ END { print ".green { background:#3c3; }" print ".yellow { background:#cc3; }" print ".red { background:#c33; }" + print ".gray { background:#666; }" print ".dim { color:#888; font-size: 0.85em; }" print "</style>" print "</head>" |
