Style config/module (WIP)

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-30 12:53:59 +02:00
parent 1c074c9807
commit ad3ff43b22
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
$this->translate('disable'),
'config/moduledisable',
array('name' => $module->getName()),
array('title' => sprintf($this->translate('Disable the %s module'), $module->getName()))
array('title' => sprintf($this->translate('Disable the %s module'), $module->getName()), 'class' => 'action-link')
); ?>
<?php endif ?>
<?php if ($state === 'disabled'): ?>
@ -31,7 +31,7 @@
$this->translate('enable'),
'config/moduleenable',
array('name' => $module->getName()),
array('title' => sprintf($this->translate('Enable the %s module'), $module->getName()))
array('title' => sprintf($this->translate('Enable the %s module'), $module->getName()), 'class' => 'action-link')
); ?>
<?php endif ?>
</td>