Skip to content

Commit

Permalink
CSS: Wrap show more hosts link in a text-right container
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 24, 2015
1 parent c34812f commit f6efa85
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions modules/monitoring/application/views/scripts/list/hosts.phtml
Expand Up @@ -95,14 +95,16 @@ if (! $this->compact): ?>
<?php if (! $hosts->hasResult()): ?>
<?= $this->translate('No hosts found matching the filter') ?>
<?php elseif ($hosts->hasMore()): ?>
<?= $this->qlink(
$this->translate('Show More'),
$this->url()->without(array('view', 'limit')),
null,
array(
'data-base-target' => '_next',
'class' => 'pull-right action-link'
)
) ?>
<div class="text-right">
<?= $this->qlink(
$this->translate('Show More'),
$this->url()->without(array('view', 'limit')),
null,
array(
'data-base-target' => '_next',
'class' => 'action-link'
)
) ?>
</div>
<?php endif ?>
</div>

0 comments on commit f6efa85

Please sign in to comment.