From af41a9c9819e1987d2fc5dfd9d7d4b13140242cc Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Fri, 25 Sep 2015 11:29:43 +0200 Subject: [PATCH] monitoring/CSS: Fix classes used in the delete comment command form (WIP) Spinner is missing for the moment. refs #5543 --- .../forms/Command/Object/DeleteCommentCommandForm.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/monitoring/application/forms/Command/Object/DeleteCommentCommandForm.php b/modules/monitoring/application/forms/Command/Object/DeleteCommentCommandForm.php index 442b9b2ce..2d379bb9e 100644 --- a/modules/monitoring/application/forms/Command/Object/DeleteCommentCommandForm.php +++ b/modules/monitoring/application/forms/Command/Object/DeleteCommentCommandForm.php @@ -17,7 +17,7 @@ class DeleteCommentCommandForm extends CommandForm */ public function init() { - $this->setAttrib('class', 'inline'); + $this->setAttrib('class', 'link'); } /** @@ -68,7 +68,7 @@ class DeleteCommentCommandForm extends CommandForm 'ignore' => true, 'escape' => false, 'type' => 'submit', - 'class' => 'link-like spinner', + 'class' => 'action-link link', 'label' => $this->getView()->icon('trash'), 'title' => $this->translate('Delete this comment'), 'decorators' => array('ViewHelper')