CSS: Add space before the autosubmit info in forms
This commit is contained in:
parent
ab626c211b
commit
0a9c0925cb
|
@ -100,7 +100,7 @@ class Autosubmit extends Zend_Form_Decorator_Abstract
|
|||
: t('Upon its value has changed, this field issues an automatic update of this page.');
|
||||
$content .= $this->getView()->icon('cw', $warning, array(
|
||||
'aria-hidden' => $isForm ? 'false' : 'true',
|
||||
'class' => 'spinner'
|
||||
'class' => 'spinner autosubmit-info'
|
||||
));
|
||||
if (! $isForm && $this->getAccessible()) {
|
||||
$content = '<span id="' . $this->getWarningId() . '" class="sr-only">' . $warning . '</span>' . $content;
|
||||
|
|
|
@ -83,6 +83,10 @@ form.inline {
|
|||
margin-left: 10em;
|
||||
}
|
||||
|
||||
.autosubmit-info {
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
button:hover .icon-cancel {
|
||||
color: @color-critical;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue