monitoring/list: move object flags to the right

This commit is contained in:
Thomas Gelf 2015-06-16 01:45:48 +02:00
parent 6c98e87593
commit 686f73858f
3 changed files with 4 additions and 4 deletions

View File

@ -54,7 +54,7 @@ if (count($hosts) === 0) {
<!-- Host / Status / Output -->
<td>
<?= $this->iconImage()->host($host) ?>
<?= implode(' ', $this->hostFlags($host)) ?>
<span="objectflags"><?= implode(' ', $this->hostFlags($host)) ?></span>
<?= $this->qlink(
$host->host_display_name,
$hostLink,

View File

@ -60,9 +60,8 @@ if (count($services) === 0) {
</td>
<td>
<div class="sparkline-box"><?= $this->perfdata($service->service_perfdata, true, 8) ?> </div>
<?= $this->iconImage()->service($service) ?>
<?= implode(' ', $this->serviceFlags($service)); ?>
<span class="objectflags"><?= implode(' ', $this->serviceFlags($service)) ?></span>
<?= $this->qlink(
$service->service_display_name,
$serviceLink,
@ -78,6 +77,7 @@ if (count($services) === 0) {
null,
array('title' => sprintf($this->translate('Show detailed information for host %s'), $service->host_display_name))
); ?><?php endif ?><br>
<div class="sparkline-box"><?= $this->perfdata($service->service_perfdata, true, 8) ?> </div>
<p class="pluginoutput"><?= $this->escape($this->ellipsis($service->service_output, 10000)); ?></p>
</td>
<?php foreach($this->addColumns as $col): ?>

View File

@ -1235,6 +1235,6 @@ table.statesummary {
}
}
table.action .objectflags: {
table.action .objectflags {
float: right;
}