I am using AngularUI Tooltip in a directive as below.
app.directive('customTooltip', function($compile) {
return {
link: function(scope, element, attrs) {
var config = scope.$eval(attrs.appsTooltip);
var htmlText = '<img src=\'../../../images/help_on.jpg\' tooltip="' + config.message + '" tooltip-placement="' + config.placement + '" />';
element = element.append(htmlText);
$compile(element.children())(scope);
}
};
});
Instead of modifying the actual bootstrap.css class like
.tooltip-inner, .tooltip.top .tooltip-arrow ,etc
How can I use the same directive to overwrite with inline tooltip styling?