CSS: Wrap show more hosts link in a text-right container

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-24 11:58:52 +02:00
parent c34812f59f
commit f6efa85079
1 changed files with 11 additions and 9 deletions

View File

@ -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>