更改ui.bootrap的工具提示箭头的颜色(附带的plunker)

时间:2015-12-10 22:23:03

标签: javascript jquery css angularjs angular-ui-bootstrap

这里是plunker代码。 http://plnkr.co/edit/C1khFJqTUutDaK9ad7ud?p=preview

我需要更改工具提示箭头。示例中工具提示的位置是顶部,底部和左侧。

有人可以告诉我如何设置这些工具提示的样式。我需要为工具提示的不同位置以不同方式为工具提示箭头着色。

例如

tooltip at top-> arrow color should be red
tooltip at bottom-> arrow color green
tooltip at left-> arrow color yellow

有人可以让我知道如何获取这些类并将颜色应用于这些工具提示。

这是代码

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

}

3 个答案:

答案 0 :(得分:6)

试试这个,顶部的例子

.tooltip.top .tooltip-arrow {
    border-top-color: red!important;
}

答案 1 :(得分:2)

更新有关batas的答案。这对我有用。

.tooltip.top .tooltip-arrow {
border-top-color: red!important;
}
.tooltip.bottom .tooltip-arrow {
border-bottom-color: green!important;
}
.tooltip.left .tooltip-arrow {
border-left-color: yellow!important;
}

答案 2 :(得分:0)

你可以使用tooltip-class我发现它更方便了 http://plnkr.co/edit/FVTuepTS7gXL3K2ixR8e?p=preview

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-class="tooltip-class"
      tooltip-trigger="mouseenter"
      tooltip-enable="!inputModel" />
  </div>
</div>

CSS

.tooltip-class .tooltip-arrow{
     border-top-color: red !important;
}