Made parameter type fields wider to fit more digits

This commit is contained in:
Jan Böhmer 2024-09-09 21:36:05 +02:00
parent 574583bd6a
commit f3c802bcff

View file

@ -102,7 +102,7 @@ class ParameterType extends AbstractType
'step' => 'any', 'step' => 'any',
'placeholder' => 'parameters.max.placeholder', 'placeholder' => 'parameters.max.placeholder',
'class' => 'form-control-sm', 'class' => 'form-control-sm',
'style' => 'max-width: 12ch;', 'style' => 'max-width: 25ch;',
], ],
]); ]);
$builder->add('value_min', ExponentialNumberType::class, [ $builder->add('value_min', ExponentialNumberType::class, [
@ -113,7 +113,7 @@ class ParameterType extends AbstractType
'step' => 'any', 'step' => 'any',
'placeholder' => 'parameters.min.placeholder', 'placeholder' => 'parameters.min.placeholder',
'class' => 'form-control-sm', 'class' => 'form-control-sm',
'style' => 'max-width: 12ch;', 'style' => 'max-width: 25ch;',
], ],
]); ]);
$builder->add('value_typical', ExponentialNumberType::class, [ $builder->add('value_typical', ExponentialNumberType::class, [
@ -124,7 +124,7 @@ class ParameterType extends AbstractType
'step' => 'any', 'step' => 'any',
'placeholder' => 'parameters.typical.placeholder', 'placeholder' => 'parameters.typical.placeholder',
'class' => 'form-control-sm', 'class' => 'form-control-sm',
'style' => 'max-width: 12ch;', 'style' => 'max-width: 25ch;',
], ],
]); ]);
$builder->add('unit', TextType::class, [ $builder->add('unit', TextType::class, [