diff --git a/application/forms.class.inc.php b/application/forms.class.inc.php index 1b1bf161f..bcbd2af01 100644 --- a/application/forms.class.inc.php +++ b/application/forms.class.inc.php @@ -229,8 +229,8 @@ class DesignerForm $aRow = $oField->Render($oP, $sFormId, 'property'); if ($oField->IsVisible()) { $sFieldId = $this->GetFieldId($oField->GetCode()); - $sValidation = $this->GetValidationArea($sFieldId, ''); - $sValidationFields = ''.$sValidation.'' + $sValidation = $this->GetValidationArea($sFieldId, '
'); + $sValidationFields = ''.$sValidation.'
' .$this->EndRow(); if (is_null($aRow['label'])) { diff --git a/css/backoffice/components/_prop.scss b/css/backoffice/components/_prop.scss index 7fd7459db..a331ab17a 100644 --- a/css/backoffice/components/_prop.scss +++ b/css/backoffice/components/_prop.scss @@ -13,9 +13,6 @@ $ibo-prop--apply--error--color: $ibo-color-grey-800 !default; .ibo-prop--apply{ width: $ibo-prop--apply--width; padding-left: $ibo-prop--apply--padding-left; - > span{ - @extend .ibo-is-green; - } &.ui-state-error{ &:after { color: $ibo-prop--apply--error--color; @@ -31,9 +28,6 @@ $ibo-prop--apply--error--color: $ibo-color-grey-800 !default; .ibo-prop--cancel{ width: $ibo-prop--cancel--width; padding-left: $ibo-prop--cancel--padding-left; - > span{ - @extend .ibo-is-red; - } } .ibo-prop--apply, .ibo-prop--cancel{ height: $ibo-prop--apply-cancel--height; @@ -42,5 +36,9 @@ $ibo-prop--apply--error--color: $ibo-color-grey-800 !default; height: $ibo-prop--apply-cancel--span--height; width: $ibo-prop--apply-cancel--span--width; text-align: center; + > div{ + width: 100%; + height: 100%; + } } }