mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-22 18:18:46 +02:00
Portal: Fix regression introduced in revision 5698.
SVN:trunk[5739]
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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());
|
||||
|
||||
@@ -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' : '';
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user