Modifying Twitter Bootstrap's Tooltip Colors Based on Position

前端 未结 6 1161
说谎
说谎 2020-12-09 10:49

I am trying to output various colors for the tooltips (edit: from Twitter Bootstrap) but it seems I\'m not quite getting it. Just changing the default color hasn\'t been har

6条回答
  •  囚心锁ツ
    2020-12-09 11:24

    See my reply to a similar question: Change bootstrap tooltip color

    It is applicable to style tooltips of the existing and dynamically created elements, using Bootstrap 3 or Bootstrap 4.

    Bootstrap 3:

    $(document).on('inserted.bs.tooltip', function(e) {
        var tooltip = $(e.target).data('bs.tooltip');
        tooltip.$tip.addClass($(e.target).data('tooltip-custom-class'));
    });
    

    Examples:
    for Bootstrap 3
    for Bootstrap 4

提交回复
热议问题