here is the plunker code. http://plnkr.co/edit/C1khFJqTUutDaK9ad7ud?p=preview
I need to change the tooltip arrow. The position of the tooltips in the example is top, bottom, and left.
Can anyone let me know how to style these tooltips. I need to color the tooltip arrow differently for different places in the tooltip.
eg,
tooltip at top-> arrow color should be red tooltip at bottom-> arrow color green tooltip at left-> arrow color yellow
Can someone let me know how to get these classes and apply color to these tips.
Here is the code
HTML
<div ng-controller="TooltipDemoCtrl"> <br><br><br> <div ng-class="{'has-error' : !inputModel}"> <input type="text" ng-model="inputModel" class="test" uib-tooltip="Tooltip TBD" tooltip-placement="top" tooltip-trigger="mouseenter" tooltip-enable="!inputModel" /> </div> </div>
CSS
.tooltip .tooltip-inner { color: white; background-color: blue; border-radius:5px; } .tooltip .tooltip-arrow {
source share