Skip to content

Commit

Permalink
CSS: Use icon-cancel for the remove role link
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 30, 2015
1 parent a69244d commit dbe8b7a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions application/views/scripts/role/list.phtml
Expand Up @@ -37,13 +37,14 @@
</td>
<td><?= $this->escape($role->users) ?></td>
<td><?= $this->escape($role->groups) ?></td>
<td>
<td class="text-right">
<?= $this->qlink(
'',
'role/remove',
array('role' => $name),
array(
'icon' => 'trash',
'class' => 'action-link',
'icon' => 'cancel',
'title' => sprintf($this->translate('Remove role %s'), $name)
)
) ?>
Expand Down

0 comments on commit dbe8b7a

Please sign in to comment.