-
-
Notifications
You must be signed in to change notification settings - Fork 78.8k
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
Fix #15652 — Ensure inline checkboxes and radio buttons are relatively positioned #15656
Conversation
@@ -244,6 +244,7 @@ input[type="search"] { | |||
vertical-align: middle; | |||
font-weight: normal; | |||
cursor: pointer; | |||
position: relative; |
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.
position
should come first in the property order.
I'll get that fixed tonight when I get home or tomorrow morning. Anything else? |
@kkirsche Nope, that's it :). |
Fixes issue twbs#15652 by setting position: relative; to .radio-inline and .checkbox-inline Fix location of position in prop order
Rebased and pushed with that change. |
Wanted to follow up about this and just check if anything else was necessary. Thanks for your time guys 👍 |
@kkirsche Can you rebase it once more to fix the commit message? |
I can now. Sorry, just got home @cvrebert |
Fixes #15652. Sets position: relative; to .radio-inline and .checkbox-inline. While not technically an "issue" with bootstrap, @mdo had mentioned in the comments of the issue that he didn't mind adding this to the repo.