-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Input Group] Flex-mode input group input height does not match non-input-group inputs #9344
Comments
I'm going to use this for now: .input-group-field {
height: ($input-font-size + ($form-spacing * 1.5) - rem-calc(1));
} I'm not sure why Foundation uses explicit heights for text inputs. |
The formular should be removed or signed as !default... actually it's impossible to have a input field with a height of 46px! Add $input-height maybe? or remove this entirely? |
Has this been resolved as of #10456 ? |
Interesting... I think what might have happened is that the outside input group formula got changed in #9681 but within input group did not. We can probably just apply that change to |
PR created, #10602 |
Foundation 6.2.4
I'm being pedantic...
An input-group input's height does not match up with non-input-group inputs when displayed side-by-side as in the demo. It's off by a few pixels.
Demo:
http://simshaun-static.s3-website-us-east-1.amazonaws.com/foundation/6.2.4/
Example:
Removing
height: auto
on.input-group-field
solves the problem, but I don't know if that causes issues elsewhere or if it causes problems in non-flex mode.The text was updated successfully, but these errors were encountered: