css: add styling for jobs table

This commit is contained in:
Thomas Gelf 2016-04-22 14:27:09 +02:00
parent e88d490021
commit 35c592ffba
1 changed files with 35 additions and 1 deletions

View File

@ -722,7 +722,6 @@ table.tinystats {
}
/* Simple table, test */
table.syncstate {
tr td:first-child {
padding-left: 2em;
@ -753,6 +752,41 @@ table.syncstate {
}
}
table.jobs {
tr td:first-child {
padding-left: 2em;
&::before {
font-family: 'ifont';
// icon-help:
content: '\e85b';
float: left;
font-weight: bold;
margin-left: -1.5em;
line-height: 1.5em;
}
}
tr.ok td:first-child::before {
content: '\e803';
color: @color-ok;
}
tr.warning td:first-child::before {
content: '\e864';
color: @color-warning;
}
tr.pending td:first-child::before {
content: '\e864';
color: @color-pending;
}
tr.critical td:first-child::before {
content: '\e804';
color: @color-critical;
}
}
table.icinga-objects {
tr td:first-child {
padding-left: 2em;