Height and width of input fields changed in 4.1.1

We just upgraded to 4.1.1 and noticed that the size of the input fields in our web client are bigger.
All our input fields (i.e. text boxes and combo boxes) were all set to a height of 20 and everything lines up quite nicely in web client.

After the upgrade to 4.1.1 the input fields are 2 pixels taller and 2 pixels wider - the combo boxes are fine.
The result is that things look pretty bad :(

We don’t run any of our applications in Smart Client - only Web Client.

I can fix the problem by adjusting the text fields to 18 pixels tall and shave 2 pixels off the width but we have hundreds of input fields.
Looks like we need a fix to v4.1.1

Mark,

Looks like a bug. I submitted a case (197170 )
Also, you could try the solution model out for a work-around.
Put the following code in your solution’s onOpen event handler:

//	adjust all fields in all forms
if(application.getApplicationType() == 5){
	for(i in forms.allnames){
		var jsForm = solutionModel.getForm(forms.allnames[i]);
		var fields = jsForm.getFields();
		for(j in fields){
			fields[j].height -= 2;
			fields[j].width -= 2
		}
	}
}