From c94e65201119a5eaeff10d2c8b02f35b9966da37 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 30 Oct 2015 23:57:09 +0100 Subject: [PATCH] css: prepare new styles for table.syncrules --- public/css/module.less | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/public/css/module.less b/public/css/module.less index 17e275b9..833e230c 100644 --- a/public/css/module.less +++ b/public/css/module.less @@ -346,6 +346,34 @@ tr.running { color: green; } +table.syncrules { + tr td:first-child { + padding-left: 1.5em; + &::before { + font-family: 'ifont'; + float: left; + font-weight: bold; + margin-left: -1.5em; + line-height: 1.5em; + } + } + + tr.in-sync td:first-child::before { + content: '\e803'; + color: @color-ok; + } + + tr.pending-changes td:first-child::before { + content: '\e864'; + color: @color-warning; + } + + tr.failing td:first-child::before { + content: '\e804'; + color: @color-critical; + } +} + table.simple { width: auto; min-width: 100%;