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 --> <!-- Host / Status / Output -->
<td> <td>
<?= $this->iconImage()->host($host) ?> <?= $this->iconImage()->host($host) ?>
<?= implode(' ', $this->hostFlags($host)) ?> <span="objectflags"><?= implode(' ', $this->hostFlags($host)) ?></span>
<?= $this->qlink( <?= $this->qlink(
$host->host_display_name, $host->host_display_name,
$hostLink, $hostLink,

View File

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

View File

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