720kb / angular-tooltips

Angularjs tooltips module, add tooltips to your elements - https://720kb.github.io/angular-tooltips
351 stars 157 forks source link

Using tooltip-append-to-body cuts text off #215

Open alejandroiglesias opened 7 years ago

alejandroiglesias commented 7 years ago

A screenshot is worth a thousand words:

image

Setup:

<div tooltips tooltip-append-to-body="true" tooltip-template="Autoplay slides"></div>
parmindersingh1 commented 7 years ago

I am getting same issue any fixes?

raphaelfruneaux commented 6 years ago

+1

hitautodestruct commented 6 years ago

Any ideas on how to fix this?

rofreytag commented 6 years ago

Seems like there is some javascript magic going on that sets the height on the element, preventing the normal layout to do its thing.

I fixed it using css:

tip { height: auto !important; }