Skip to content

Commit

Permalink
CSS: Use action-table instead of action in the user/list view script
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 25, 2015
1 parent d54b800 commit f138c3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/views/scripts/user/list.phtml
Expand Up @@ -35,12 +35,12 @@ $reducible = $this->hasPermission('config/authentication/users/remove') && $back
'class' => 'action-link'
)) ?>
<?php endif ?>
<table data-base-target="_next" class="action">
<table class="action-table" data-base-target="_next">
<thead>
<tr>
<th class="user-name"><?= $this->translate('Username') ?></th>
<th><?= $this->translate('Username') ?></th>
<?php if ($reducible): ?>
<th class="user-remove"><?= $this->translate('Remove') ?></th>
<th><?= $this->translate('Remove') ?></th>
<?php endif ?>
</tr>
</thead>
Expand Down

0 comments on commit f138c3b

Please sign in to comment.