diff --git a/public/css/icinga/main.less b/public/css/icinga/main.less index 454ec7e8ea..e6a213984a 100644 --- a/public/css/icinga/main.less +++ b/public/css/icinga/main.less @@ -4,19 +4,6 @@ color: @icinga-blue; } -.action-table { - tbody tr { - &.active { - background-color: @gray-lighter; - } - - &:hover { - background-color: @gray-lightest; - cursor: pointer; - } - } -} - .big-icon { font-size: 28px; } @@ -43,19 +30,6 @@ width: 28px; } -.name-value-table { - border-spacing: @vertical-padding 0; - line-height: @line-height; - - th { - .text-left(); - .text-small(); - // Reset default font-weight - font-weight: normal; - width: 120px; - } -} - .primary-nav { a { font-weight: normal; @@ -132,6 +106,30 @@ dl.feed-list { } } +dl.name-value-list { + dd { + // Reset default margin + margin: 0; + } + + dt { + .text-small(); + } +} + +table.action-table { + tbody tr { + &.active { + background-color: @gray-lighter; + } + + &:hover { + background-color: @gray-lightest; + cursor: pointer; + } + } +} + table.listing-table { border-collapse: collapse; @@ -153,3 +151,16 @@ table.listing-table { } } } + +.name-value-table { + border-spacing: @vertical-padding 0; + line-height: @line-height; + + th { + .text-left(); + .text-small(); + // Reset default font-weight + font-weight: normal; + width: 120px; + } +}