From 7b0b550f4f4bf9a6c61ea78e54963d8fade86402 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Tue, 3 Jan 2017 11:17:46 +0100 Subject: [PATCH] AddNodeForm: waste less space for multiselects --- application/forms/AddNodeForm.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/forms/AddNodeForm.php b/application/forms/AddNodeForm.php index 726a38a..96606a0 100644 --- a/application/forms/AddNodeForm.php +++ b/application/forms/AddNodeForm.php @@ -165,7 +165,7 @@ class AddNodeForm extends QuickForm $this->addElement('multiselect', 'children', array( 'label' => $this->translate('Hosts'), 'required' => true, - 'size' => 14, + 'size' => 8, 'style' => 'width: 25em', 'multiOptions' => $this->enumHostList(), 'description' => $this->translate( @@ -200,7 +200,7 @@ class AddNodeForm extends QuickForm $this->addElement('multiselect', 'children', array( 'label' => $this->translate('Services'), 'required' => true, - 'size' => 14, + 'size' => 8, 'style' => 'width: 25em', 'multiOptions' => $this->enumServiceList($host), 'description' => $this->translate( @@ -214,7 +214,7 @@ class AddNodeForm extends QuickForm $this->addElement('multiselect', 'children', array( 'label' => $this->translate('Process nodes'), 'required' => true, - 'size' => 14, + 'size' => 8, 'style' => 'width: 25em', 'multiOptions' => $this->enumProcesses(), 'description' => $this->translate(