Skip to content

Commit

Permalink
CSS: Fix classes used in the config/modules view script
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 29, 2015
1 parent fc8237b commit 685b033
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions application/views/scripts/config/modules.phtml
Expand Up @@ -8,7 +8,12 @@
</div>
<?php endif ?>
<div class="content">
<table class="action alternating" data-base-target="_next">
<table class="action-table listing-table" data-base-target="_next">
<thead>
<tr>
<th><?= $this->translate('Module') ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($modules as $module): ?>
<tr>
Expand All @@ -25,7 +30,7 @@
$module->name,
'config/module/',
array('name' => $module->name),
array('title' => sprintf($this->translate('Show the overview of the %s module'), $module->name))
array('title' => sprintf($this->translate('Show the overview of the %s module'), $module->name), 'class' => 'rowaction')
); ?>
</td>
</tr>
Expand Down

0 comments on commit 685b033

Please sign in to comment.