-
Notifications
You must be signed in to change notification settings - Fork 3
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
278 inputgroup flexbox #279
base: master
Are you sure you want to change the base?
Conversation
src/less/inputs.less
Outdated
border-radius: 0; | ||
} | ||
& > * { // lesshint universalSelector: false | ||
display: inline-block; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think swapping this for inline-flex
might fix it in IE9-10.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no because this is a selector for the children, not the parent. inline-block is fine, and is overridden by the flex declaration on the parent. Have now fixed all IE alignment issues FTW 👍
progressively enhance, and means we can override the widths for IE. works for buttons and div.buttons
converting input group to use flexbox with a
display: table
fallback.