-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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-addon on both sides does not work #1451
Comments
I can confirm the above. |
This is actually an issue with Bootstrap. There's a mistake in the CSS that incorrectly applies .input-group-btn:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
} |
OK, Fixed. |
Besides adding "border-radius" also add height:
|
In what scenario is |
If this is a bug in bootstrap, is someone proficient / familiar in reporting bugs to them raising this? Just saying, so we won't have to use a workaround forever. |
Well, bug might not have been the best word to use. I considered reporting it, but as far as I can tell, Bootstrap doesn't support having button groups next to input-group-addons (at least not officially). |
any solution ? |
If we "input-group-addon" before and after select select stops working. They go round the edges.
Code Example:
<div class="input-group">
<span class="input-group-addon">@</span>
<select class="form-control selectpicker">
<option>One</option>
<option>Two</option>
<option>Three</option>
</select>
<span class="input-group-addon">@</span>
</div>
The text was updated successfully, but these errors were encountered: