CSS: Use action-table instead of action in the user/list view script

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-25 12:28:34 +02:00
parent d54b80019e
commit f138c3b555
1 changed files with 3 additions and 3 deletions

View File

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