omeka / Omeka

A flexible web publishing platform for the display of library, museum and scholarly collections, archives and exhibitions.
http://omeka.org
GNU General Public License v3.0
472 stars 193 forks source link

Specifying type in formInput messes up with control size #982

Open DBinaghi opened 1 year ago

DBinaghi commented 1 year ago

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