From 133a4499563ae8633db344639ba675fde5fff47b Mon Sep 17 00:00:00 2001 From: Jennifer Mourek Date: Tue, 26 Jun 2018 13:28:57 +0200 Subject: [PATCH] Make the tiles more readable and improve less-style --- public/css/module.less | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/css/module.less b/public/css/module.less index d7ff82e..94cfa4f 100644 --- a/public/css/module.less +++ b/public/css/module.less @@ -482,19 +482,19 @@ div.bp .badges { .tiles > div > a { text-decoration: none; - font-size: 0.5em; - color: inherit; - vertical-align: middle; + font-size: 0.7em; text-align: center; padding: 1em; font-weight: bold; word-wrap: break-word; width: 100%; box-sizing: border-box; + text-shadow: 0 0 1px @text-color; + color: @text-color-inverted; } .tiles { - > .critical { background-color: @colorCritical; background-color: @colorCritical; color: white; } + > .critical { background-color: @colorCritical;} > .critical.handled { background-color: @colorCriticalHandled; } > .down { background-color: @colorCritical; } > .down.handled { background-color: @colorCriticalHandled; } @@ -507,7 +507,7 @@ div.bp .badges { > .ok { background-color: @colorOk; } > .up { background-color: @colorOk; } > .pending { background-color: @colorPending; } - > .missing { background-color: #ccc; } + > .missing { background-color: @gray-light; } > .addnew { background-color: @icinga-blue; } }