Portal: Fix regression introduced in revision 5698.

SVN:trunk[5739]
This commit is contained in:
Guillaume Lajarige
2018-04-25 09:07:28 +00:00
parent ec471520f2
commit 95e56e7148
6 changed files with 3 additions and 6 deletions

View File

@@ -934,7 +934,7 @@ table .group-actions {
color: #ea7d1e;
font-size: 0.9em;
}
.form_field .form_field_decoration {
.form_field .form_field_decoration, .form_field_control .form_field_decoration {
vertical-align: baseline;
margin-right: 8px;
}

View File

@@ -1016,7 +1016,8 @@ table .group-actions .item-action-wrapper .panel-body > p:last-child{
color: $brand-primary;
font-size: 0.9em;
}
.form_field .form_field_decoration{
.form_field .form_field_decoration,
.form_field_control .form_field_decoration{
vertical-align: baseline;
margin-right: 8px;
}

View File

@@ -46,7 +46,6 @@ class BsFileUploadFieldRenderer extends FieldRenderer
public function Render()
{
$oOutput = new RenderingOutput();
$oOutput->AddCssClass('form_field');
$oOutput->AddCssClass('form_field_' . $this->oField->GetDisplayMode());
$sObjectClass = get_class($this->oField->GetObject());

View File

@@ -43,7 +43,6 @@ class BsLinkedSetFieldRenderer extends FieldRenderer
public function Render()
{
$oOutput = new RenderingOutput();
$oOutput->AddCssClass('form_field');
$oOutput->AddCssClass('form_field_' . $this->oField->GetDisplayMode());
$sFieldMandatoryClass = ($this->oField->GetMandatory()) ? 'form_mandatory' : '';

View File

@@ -45,7 +45,6 @@ class BsSelectObjectFieldRenderer extends FieldRenderer
public function Render()
{
$oOutput = new RenderingOutput();
$oOutput->AddCssClass('form_field');
$oOutput->AddCssClass('form_field_' . $this->oField->GetDisplayMode());
$sFieldValueClass = $this->oField->GetSearch()->GetClass();

View File

@@ -45,7 +45,6 @@ class BsSimpleFieldRenderer extends FieldRenderer
public function Render()
{
$oOutput = new RenderingOutput();
$oOutput->AddCssClass('form_field');
$oOutput->AddCssClass('form_field_' . $this->oField->GetDisplayMode());
$sFieldClass = get_class($this->oField);