From c36c0455d4ae0b21b666a2e89a85da72b32405fc Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 30 Sep 2015 09:52:31 +0200 Subject: [PATCH] CSS: Use icon-info-circled for form control help refs #5543 --- library/Icinga/Web/Form/Decorator/Help.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Icinga/Web/Form/Decorator/Help.php b/library/Icinga/Web/Form/Decorator/Help.php index 531072a6b..22c20e330 100644 --- a/library/Icinga/Web/Form/Decorator/Help.php +++ b/library/Icinga/Web/Form/Decorator/Help.php @@ -94,10 +94,10 @@ class Help extends Zend_Form_Decorator_Abstract } $helpContent = $this->getView()->icon( - 'help', + 'info-circled', $description . ($description && $requirement ? ' ' : '') . $requirement, array( - 'class' => 'help', + 'class' => 'control-info', 'aria-hidden' => $this->accessible ? 'true' : 'false' ) ) . $helpContent;