We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This issue is similar to #1845. The tooltip arrow is not shown at the middle of the element (see picture).
Same problem for placement="right" etc.
placement="right"
http://plnkr.co/edit/EPGCNPOGN0EAKXUCwAU3?p=preview
.bs-tooltip-top .arrow, .bs-tooltip-bottom .arrow { margin-left: -2px; } .bs-tooltip-left .arrow, .bs-tooltip-right .arrow { margin-top: -2px; }
Angular: 5.0.2
ng-bootstrap: 1.0.0-beta.8
Bootstrap: 4.0.0-beta.2
The text was updated successfully, but these errors were encountered:
Actually there is in the CSS of the tooltip arrow
left: 50%;
And we can use
left: calc(50% - 2.5px);
Sorry, something went wrong.
de56f10
No branches or pull requests
Bug description:
This issue is similar to #1845. The tooltip arrow is not shown at the middle of the element (see picture).
Same problem for
placement="right"
etc.Link to minimally-working plunker that reproduces the issue:
http://plnkr.co/edit/EPGCNPOGN0EAKXUCwAU3?p=preview
Workaround
Version of Angular, ng-bootstrap, and Bootstrap:
Angular: 5.0.2
ng-bootstrap: 1.0.0-beta.8
Bootstrap: 4.0.0-beta.2
The text was updated successfully, but these errors were encountered: