angular-tooltips icon indicating copy to clipboard operation
angular-tooltips copied to clipboard

Using tooltip-append-to-body cuts text off

Open alejandroiglesias opened this issue 7 years ago • 4 comments

A screenshot is worth a thousand words:

image

Setup:

<div tooltips tooltip-append-to-body="true" tooltip-template="Autoplay slides"></div>

alejandroiglesias avatar Jun 26 '17 15:06 alejandroiglesias

I am getting same issue any fixes?

parmindersingh1 avatar Jun 27 '17 11:06 parmindersingh1

+1

raphaelfruneaux avatar Oct 19 '17 13:10 raphaelfruneaux

Any ideas on how to fix this?

hitautodestruct avatar Oct 31 '17 14:10 hitautodestruct

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; }

rofreytag avatar May 15 '18 13:05 rofreytag