Hey,
It took me awhile to tweak the CSS this plugin uses to make the input smaller so the icon fits. I had to balance between what other browsers will work with and what the default Gravity Forms CSS applies.
I ended up telling it to set the input field to 85% width when there’s an icon, leaving 15% for the icon. But knew it wouldn’t always work.
I can see in your picture that there’s quite a bit of space still there, so I think I’ll try to add ‘nowrap’ to the table cell – it should force the input and icon to stay on the same line. The risk is if there isn’t enough room it’ll overlap the next input or the add/remove buttons.
.gform_wrapper .gfield_list td.gfield_list_cell {
white-space: nowrap;
}
I’ll add this to the next update, so if you still have the issue it will hopefully resolve in the next update.