Skip to content

Commit

Permalink
monitoring: Align icons right in the host and service list
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Oct 1, 2015
1 parent 09985e3 commit c13edda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/monitoring/application/views/scripts/list/hosts.phtml
Expand Up @@ -54,9 +54,9 @@ if (! $this->compact): ?>
<?php endif ?>
</p>
</td>
<td>
<td class="clearfix">
<?= $this->iconImage()->host($host) ?>
<span class="objectflags"><?= implode(' ', $this->hostFlags($host)) ?></span>
<span class="pull-right"><?= implode(' ', $this->hostFlags($host)) ?></span>
<?= $this->qlink(
$host->host_display_name,
$hostLink,
Expand Down
Expand Up @@ -68,9 +68,9 @@ if (! $this->compact): ?>
</p>
</td>

<td>
<td class="clearfix">
<?= $this->iconImage()->service($service) ?>
<span class="objectflags"><?= implode(' ', $this->serviceFlags($service)) ?></span>
<span class="pull-right"><?= implode(' ', $this->serviceFlags($service)) ?></span>
<?php if ($this->showHost): ?><?= $this->qlink(
$service->host_display_name
. ($service->host_state != 0 ? ' (' . Host::getStateText($service->host_state, true) . ')' : ''),
Expand Down

0 comments on commit c13edda

Please sign in to comment.