Skip to content

Commit

Permalink
Style reorder-authbackend
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 30, 2015
1 parent a17375f commit e876dce
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions application/views/scripts/form/reorder-authbackend.phtml
Expand Up @@ -2,8 +2,8 @@
<table class="action-table listing-table">
<thead>
<th>Backend</th>
<th style="width: 5em"><?= $this->translate('Remove'); ?></th>
<th style="width: 5em"><?= $this->translate('Order'); ?></th>
<th></th>
<th></th>
</thead>
<tbody>
<?php
Expand All @@ -26,18 +26,19 @@
)
); ?>
</td>
<td>
<td class="text-right">
<?= $this->qlink(
'',
'config/removeuserbackend',
array('backend' => $backendNames[$i]),
array(
'icon' => 'trash',
'class' => 'action-link',
'icon' => 'cancel',
'title' => sprintf($this->translate('Remove user backend %s'), $backendNames[$i])
)
); ?>
</td>
<td data-base-target="_self">
<td class="text-right" data-base-target="_self">
<?php if ($i > 0): ?>
<button type="submit" name="backend_newpos" class="link-like icon-only animated move-up" value="<?= sprintf(
'%s|%s',
Expand Down

0 comments on commit e876dce

Please sign in to comment.