CSS: Use icon-info-circled for form control help

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-30 09:52:31 +02:00
parent dc256a249c
commit c36c0455d4
1 changed files with 2 additions and 2 deletions

View File

@ -94,10 +94,10 @@ class Help extends Zend_Form_Decorator_Abstract
} }
$helpContent = $this->getView()->icon( $helpContent = $this->getView()->icon(
'help', 'info-circled',
$description . ($description && $requirement ? ' ' : '') . $requirement, $description . ($description && $requirement ? ' ' : '') . $requirement,
array( array(
'class' => 'help', 'class' => 'control-info',
'aria-hidden' => $this->accessible ? 'true' : 'false' 'aria-hidden' => $this->accessible ? 'true' : 'false'
) )
) . $helpContent; ) . $helpContent;