css: add styling for jobs table
This commit is contained in:
parent
e88d490021
commit
35c592ffba
public/css
|
@ -722,7 +722,6 @@ table.tinystats {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Simple table, test */
|
/* Simple table, test */
|
||||||
|
|
||||||
table.syncstate {
|
table.syncstate {
|
||||||
tr td:first-child {
|
tr td:first-child {
|
||||||
padding-left: 2em;
|
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 {
|
table.icinga-objects {
|
||||||
tr td:first-child {
|
tr td:first-child {
|
||||||
padding-left: 2em;
|
padding-left: 2em;
|
||||||
|
|
Loading…
Reference in New Issue