-
Notifications
You must be signed in to change notification settings - Fork 84
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
timepicker have some ui issue with bootstrap #86
Comments
I also had this problem, and tracked it to bootstrap's box-sizing style, where they use "border-box" for all box sizing. This plugin's styles only work correctly if the box-style is set to "content-box", so I added the following to the page styles to resolve the issue: <style type="text/css">
.ui-timepicker-table td a {
-webkit-box-sizing: content-box !important;
box-sizing: content-box !important;
}
</style> |
cool, thx richard-jones, i'll try. |
ghost
mentioned this issue
May 7, 2015
Experiencing same issue, fixed with CSS |
Run into same issue, fixed with the CSS patch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
please see this image
so how to fix it
i use this version bootstrap http://cdn.bootcss.com/bootstrap/3.3.1/js/bootstrap.min.js
and when i disable bootstrap, timepicker ui come back to normal
The text was updated successfully, but these errors were encountered: