Skip to content
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

Open
wenzizone opened this issue Jan 22, 2015 · 4 comments
Open

timepicker have some ui issue with bootstrap #86

wenzizone opened this issue Jan 22, 2015 · 4 comments

Comments

@wenzizone
Copy link

image
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

@richard-jones
Copy link

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>

@wenzizone
Copy link
Author

cool, thx richard-jones, i'll try.

@ghost ghost mentioned this issue May 7, 2015
@jaarkko
Copy link

jaarkko commented Aug 12, 2015

Experiencing same issue, fixed with CSS

@NCrashed
Copy link

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
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants