Skip to content

Commit

Permalink
monitoring: Do not show bullet points for actions and notes
Browse files Browse the repository at this point in the history
refs #5600
  • Loading branch information
Johannes Meyer committed Sep 16, 2015
1 parent dfc9c10 commit ffb54e0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Expand Up @@ -34,5 +34,5 @@ if ($navigation->isEmpty()) {
?>
<tr>
<th><?= $this->translate('Actions'); ?></th>
<?= $navigation->getRenderer()->setElementTag('td'); ?>
<?= $navigation->getRenderer()->setElementTag('td')->setCssClass('actions'); ?>
</tr>
Expand Up @@ -38,5 +38,5 @@ if ($navigation->isEmpty()) {
?>
<tr>
<th><?= $this->translate('Notes'); ?></th>
<?= $navigation->getRenderer()->setElementTag('td'); ?>
<?= $navigation->getRenderer()->setElementTag('td')->setCssClass('notes'); ?>
</tr>
5 changes: 5 additions & 0 deletions modules/monitoring/public/css/module.less
Expand Up @@ -17,6 +17,11 @@ table.action td .pluginoutput {
margin: 0;
}

td.notes ul.nav,
td.actions ul.nav {
.non-list-like-list;
}

div.pluginoutput {
overflow: auto;
color: #888;
Expand Down

0 comments on commit ffb54e0

Please sign in to comment.