From f42f655e7a21880e000f290e39f8e693e8652854 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Fri, 25 Sep 2015 12:40:33 +0200 Subject: [PATCH] CSS: Add styles for table.listing-table refs #5543 --- public/css/icinga/main.less | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/public/css/icinga/main.less b/public/css/icinga/main.less index ae08204b4..cb5080045 100644 --- a/public/css/icinga/main.less +++ b/public/css/icinga/main.less @@ -85,3 +85,21 @@ dl.feed-list { border-bottom: 1px solid @gray-lighter; } } + +table.listing-table { + border-collapse: collapse; + + th { + color: @text-color-light; + // Reset default font-weight + font-weight: normal; + } + + tr { + border-bottom: 1px solid @gray-lightest; + + &:last-child { + border-bottom: none; + } + } +}