From 97ec1fa99f9cb83e4d9fb98e2b9929ca0a647d46 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 25 Feb 2014 10:28:12 +0000 Subject: [PATCH] Temporarily add AVP table and monitoring detail styles to main-content.css --- public/css/icinga/main-content.less | 78 +++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) diff --git a/public/css/icinga/main-content.less b/public/css/icinga/main-content.less index d6b89081e..9d1f24840 100644 --- a/public/css/icinga/main-content.less +++ b/public/css/icinga/main-content.less @@ -51,3 +51,81 @@ a { float: right; } +table.avp { + table-layout: fixed; + width: 100%; + font-size: 0.9em; +} + +table.avp a { + color: black; + text-decoration: underline; +} + +table.avp th { + text-align: right; + margin: 0; + width: 11em; + vertical-align: top; + line-height: 2em; +} + +table.avp td { + line-height: 2em; + margin: 0; + + word-break: break-all; + vertical-align: top; + padding: 0em 0em 0em 0.5em; +} + +.content table.avp dd, .content table.avp dd { + margin: 0; + padding: 0; +} + +table.avp a { + color: @colorLinkDefault; + text-decoration: none; +} + +table.avp a:hover { + text-decoration: underline; +} + +/* Definitively monitoring-only: */ +table.objectstate { + margin: 1em; + width: 100%; + border-collapse: separate; + border-spacing: 0.2em; +} + +table.objectstate td { + font-size: 1.2em; + line-height: 1.5em; + padding-left: 1em; +} + +table.objectstate tr.state td.state { + font-size: 1em; + width: 9em; + text-align: center; + padding-left: 0; + border-radius: 0; +} + +table.objectstate tr.state.handled td.state { +} + +table.perfdata { + min-width: 24em; + font-size: 0.9em; +} + +table.perfdata th { + white-space: nowrap; + padding: 0; + text-align: left; + padding-right: 0.5em; +}