mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-02-14 08:23:20 -05:00
parent
5b0d9674d4
commit
3718968883
2 changed files with 7 additions and 3 deletions
|
|
@ -117,7 +117,7 @@ class TreeRenderer extends Renderer
|
|||
if ($node->isHandled()) {
|
||||
$attributes->add('class', 'handled');
|
||||
}
|
||||
if ($node->hasChildren()) {
|
||||
if ($node instanceof BpNode) {
|
||||
$attributes->add('class', 'operator');
|
||||
} else {
|
||||
$attributes->add('class', 'node');
|
||||
|
|
@ -126,7 +126,7 @@ class TreeRenderer extends Renderer
|
|||
$tbody = $table->createElement('tbody');
|
||||
$tr = $tbody->createElement('tr');
|
||||
|
||||
if ($node->hasChildren()) {
|
||||
if ($node instanceof BpNode) {
|
||||
$tr->createElement(
|
||||
'th',
|
||||
array(
|
||||
|
|
|
|||
|
|
@ -211,7 +211,11 @@ table.bp.node.handled td > a:last-child, table.bp.node.ok td > a:last-child,
|
|||
|
||||
table.bp th {
|
||||
border-left-width: 0.8em;
|
||||
width: 1.2em;
|
||||
width: 1.8em;
|
||||
}
|
||||
|
||||
table.process.missing th span {
|
||||
display: none;
|
||||
}
|
||||
|
||||
table.bp.handled > tbody > tr > th, table.bp.ok > tbody > tr > th {
|
||||
|
|
|
|||
Loading…
Reference in a new issue