-
Notifications
You must be signed in to change notification settings - Fork 320
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
jquery.toolbar with Bootstrap 3.0.3 isn't display correctly. #43
Comments
I find a solution doing my own jquery.toolbar.bootstrap3.css and puting this styles:
maybe you can find better solution. |
@ghernandezr Thx for the hotfix, it works perfectly, hope for integrating to master branch |
This worked for me (inside my css file):
|
It seems as Bootstrap overwrites default value of box-sizing for all elements by following CSS rule: * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
} So, you probably have to add: .tool-container, .tool-item, .btn-toolbar {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
} |
@smeinecke That deserves a Thank you! |
Fix Bootstrap 3, issues #43 fix 43
This "Fix" does not work if you want to use Bootstrap 3 Button toolbars. I ran into this problem today and wondered about the strange rendering of my Buttons on certain pages. The problem here is a naming collision with Bootstrap 3: https://getbootstrap.com/docs/3.3/components/#btn-groups-toolbar Maybe a more satisfying solution would be to rename the .btn-toolbar class to something else? |
When I use jquery.toolbar with bootstrap 3.0.3, the button and menu isn't display correctly.
The text was updated successfully, but these errors were encountered: