-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
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
Enable support of input groups within button groups #10921
Comments
Would you mind posting an example? |
ok |
@SmithSamuelM Well? |
Sorry I got pulled of onto another project. Since I fixed up my stuff to work around. I have to go back and undo my fixes to recreate it. it so its not a simple copy and paste. Try to get to it this week. |
Demo of fix coming in v3.1: http://jsbin.com/aGEcUqAT/1/. |
Closed
stempler
pushed a commit
to stempler/bootstrap
that referenced
this issue
Apr 11, 2014
…oolbars * Floats any `.input-group` within a toolbar * Simplifies the CSS to remove sibling selectors and instead use a negative amrgin on the parent with only `margin-left` See it in action: http://jsbin.com/aGEcUqAT/1/.
stempler
pushed a commit
to stempler/bootstrap
that referenced
this issue
Nov 4, 2014
…oolbars * Floats any `.input-group` within a toolbar * Simplifies the CSS to remove sibling selectors and instead use a negative amrgin on the parent with only `margin-left` See it in action: http://jsbin.com/aGEcUqAT/1/.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
BS3 use of display: table and table-cell breaks btn-toolbars. Using an input as part of an input group inside of a btn-toolbar always forces any following btn-groups to wrap to the next line. It appears to be a problem with using display: table
To fix it I had to revert to using display: inline-block for input groups and then adjusting the horizontal spacing.
It may seem like a good idea to use display: table-cell to get horizontal elements to snug up to each other but it breaks btn-toolbars and so is a bad choice unless you also fix up everthing else to work with display: table and table-cell. This is a regression from the behavior of BS2 and should be fixed.
The text was updated successfully, but these errors were encountered: