bloudon
04-25-2007, 01:44 PM
Fieldsets constructed using Ext.form.Form.fieldset are being rendered in IE7 with excessively wide vertical margins as compared to Firefox. The first attached image illustrates this (Firefox is on the left, IE7 is on the right).
I traced the issue down to the value 10px being assigned to the padding-top property by the CSS rule for ".x-form fieldset". Adding the following rule corrects it:
.ext-ie .x-form fieldset {
padding-top: 0;
}
The second attached image shows the same form after the fix.
I traced the issue down to the value 10px being assigned to the padding-top property by the CSS rule for ".x-form fieldset". Adding the following rule corrects it:
.ext-ie .x-form fieldset {
padding-top: 0;
}
The second attached image shows the same form after the fix.