Thank you for reporting this bug. We will make it our priority to review this report.
-
Sencha Premium Member
displayfield total height is bigger than a normal textfield
Because of min-height used for displayfield, (which is the same as textfied min-height), display field has more space than a normal textfield. this will miss-align fields.
Temporary fix for my custom theme, is to decrease min-height in sass/src/Ext/form/field/Display.scss
Code:
.#{$prefix}form-display-field-default {
min-height: 26px; // adjust to your needs
}
-
I also have this issue.
Is the css adjustment the solution for it?
-
Sencha Premium Member
in my case yes. only this small css fixed.
don't know why even in extjs 6.6 this bug is reproducible.