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 someone let me know how to style these tooltips. I need to color the tooltip arrow differently for different locations of tooltip.
for e.g
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 those classes and apply the color to these tooltips.
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 {
//cant get the class for the arrow
}