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

CSS box-sizing attribute for .jqstooltip lacks an explicit setting #202

Open
aleksmsd opened this issue Oct 26, 2018 · 1 comment
Open

Comments

@aleksmsd
Copy link

Version: 2.1.2
jQuery Version: v1.12.4

Hey!
I noticed a small issue with the default tooltip class.
Initially my tooltips were rendering out like below
image

After looking into it a bit more, it looks like the .jqstooltip class was inheriting from some *-setting in my normalize.css:

* {
  box-sizing: border-box;
}

So I set the following:

.jqstooltip {
  box-sizing: content-box;
}

And now it's all good again!
image

So my request on this issue, can we get the library to have this box-sizing attribute explicitly set out of the box?

Thank you!

@paintdog
Copy link

I have the same issue. Thank you for your solution.

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

2 participants