Omeka icon indicating copy to clipboard operation
Omeka copied to clipboard

Specifying type in formInput messes up with control size

Open DBinaghi opened this issue 3 years ago • 0 comments

Hi.

In a config form (E-mail Notification plugin) I'm using type to specify that the input box should accept only valid e-mail addresses, as follows:

<?php echo $view->formInput('email_notification_recipient_address', get_option('email_notification_recipient_address'), array('type'=>'email','multiple'=>'multiple')); ?>

Unfortunately, the use of the type email is messing up with the size of the input box, as visible in this picture (removing the array parameter visually solves the problem, but then make it harder to validate the input box content): image

DBinaghi avatar Jul 21 '22 10:07 DBinaghi