monitoring/CSS: Use new state- classes for the host in the service detail header too

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-25 11:10:10 +02:00
parent daa9d8a9ef
commit 4912b30b1b
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ use Icinga\Module\Monitoring\Object\Service;
<?= $this->render('partials/host/statusicons.phtml') ?>
</td>
</tr>
<tr class="state <?= Service::getStateText($object->service_state) ?><?= $object->service_handled ? ' handled' : '' ?>">
<td class="state">
<tr>
<td class="state-col state-<?= Service::getStateText($object->service_state) ?><?= $object->service_handled ? ' handled' : '' ?>">
<?= Service::getStateText($object->service_state, true) ?><br>
<?= $this->timeSince($object->service_last_state_change) ?>
</td>