-
-
Notifications
You must be signed in to change notification settings - Fork 79k
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
do not append tooltips and popovers to body. This fixes z-index issues: ... #5071
Conversation
Correct me if I'm wrong, but this change will prevent tooltips and popovers working on all elements which have a parent which has css Because of this, I don't think this is the correct way to address the issue.
|
about overflow:hidden parent : as the tooltips are position:absolute this should work. but if the parent has set overflow:hidden and position:relative then the content is cut off. |
Ahh, that's for clearing that up demike... My setup was using position relative on a parent, which explains why I was seeing that behaviour! |
Yeah that's the bad thing about that, but it solves a lot of issues with the current z-index ... setup
If you want to see an example of nested dialogs and opening multiple dialogs: just download the source and load The absolute positioned modal was added to this pull request accidentally, I pushed it to the wrong branch |
Hey @demike, Thanks for opening this pull-request! Unfortunately, it looks like it fails to pass the criteria neccessary for submitting to bootstrap. The following things are currently failing:
For a full list of issue filing guidelines, please refer to the bootstrap issue filing guidelines. thanks! |
@demike Could you please merge the latests 2.1.2-wip branch and rebase yours please? it will be clearer to see what has really changed or not |
Now i have problems with popup on click to radio button(http://twitter.github.com/bootstrap/javascript.html#buttons - Radio). Last child has not border radius. I think we need add config attribute for change insert popup after element or append to body. |
@igor-svizev please see my pull request - #5768 |
Can I suggest an 'appendTo' option be added, which takes a selector and appends the popover to it? This is what the jquery-ui dragging stuff does. |
...#5070, #5014, #5043, #4914, #4980