From ffb54e0ecb5283b83746ad7df3c4a63278830897 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Wed, 16 Sep 2015 13:32:20 +0200 Subject: [PATCH] monitoring: Do not show bullet points for actions and notes refs #5600 --- .../application/views/scripts/show/components/actions.phtml | 2 +- .../application/views/scripts/show/components/notes.phtml | 2 +- modules/monitoring/public/css/module.less | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/modules/monitoring/application/views/scripts/show/components/actions.phtml b/modules/monitoring/application/views/scripts/show/components/actions.phtml index 1f39f6996..c0d40c4bc 100644 --- a/modules/monitoring/application/views/scripts/show/components/actions.phtml +++ b/modules/monitoring/application/views/scripts/show/components/actions.phtml @@ -34,5 +34,5 @@ if ($navigation->isEmpty()) { ?> translate('Actions'); ?> - getRenderer()->setElementTag('td'); ?> + getRenderer()->setElementTag('td')->setCssClass('actions'); ?> \ No newline at end of file diff --git a/modules/monitoring/application/views/scripts/show/components/notes.phtml b/modules/monitoring/application/views/scripts/show/components/notes.phtml index c5179dcfa..64f4a491d 100644 --- a/modules/monitoring/application/views/scripts/show/components/notes.phtml +++ b/modules/monitoring/application/views/scripts/show/components/notes.phtml @@ -38,5 +38,5 @@ if ($navigation->isEmpty()) { ?> translate('Notes'); ?> - getRenderer()->setElementTag('td'); ?> + getRenderer()->setElementTag('td')->setCssClass('notes'); ?> \ No newline at end of file diff --git a/modules/monitoring/public/css/module.less b/modules/monitoring/public/css/module.less index 4eb672c32..405d2a6aa 100644 --- a/modules/monitoring/public/css/module.less +++ b/modules/monitoring/public/css/module.less @@ -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;