我正在使用带引导程序的按钮,例如:
<a href="" ng-click="controller.refresh()" class="btn btn-default glyphicon glyphicon-repeat bootstrap-refresh"></a>
我希望在按钮悬停或单击时禁用样式更改。我想我可以通过覆盖btn-default:focus
或btn:focus
来做到这一点,但我还有其他<a>
标签样式为按钮,我希望保持点击或焦点的效果。在这种情况下,有没有办法可以覆盖标准的bootstrap css?
答案 0 :(得分:0)
为此特定
添加ID<a href="" ng-click="controller.refresh()" class="btn btn-default glyphicon glyphicon-repeat bootstrap-refresh" id="overrideBS"></a>
然后添加此css
#overrideBS:focus {
//whatever unique properties you want
}
答案 1 :(得分:0)
添加您自己的课程myclass
,然后在覆盖的值末尾添加myclass:focus
所需的任何更改时设置!important
。