From e67420e8bf47d3b8b0333080e9645154475d9511 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 4 Nov 2015 17:43:30 +0100 Subject: [PATCH] monitoring/CSS: Introduce state-table class refs #5543 --- modules/monitoring/public/css/tables.less | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/modules/monitoring/public/css/tables.less b/modules/monitoring/public/css/tables.less index d7ff1c764..27572bcb3 100644 --- a/modules/monitoring/public/css/tables.less +++ b/modules/monitoring/public/css/tables.less @@ -42,6 +42,7 @@ color: @text-color-light; font-family: @font-family-fixed; font-size: @font-size-small; + margin: 0; } // Service description if in the service detail view @@ -140,3 +141,19 @@ .state-meta { font-size: @font-size-small; } + +.state-table { + border-collapse: separate; + border-spacing: 1px; + + tr[href] { + &.active { + background-color: @gray-lighter; + } + + &:hover { + background-color: @gray-lightest; + cursor: pointer; + } + } +}