Override twitter-bootstrap css -
i'm using button bootstrap, like:
<a href="" ng-click="controller.refresh()" class="btn btn-default glyphicon glyphicon-repeat bootstrap-refresh"></a>
i want disable style change when button hovered or click. figured overriding btn-default:focus
or btn:focus
have other <a>
tags styled buttons keep effects of click or focus. there way override standard bootstrap css in case?
add id particular
<a href="" ng-click="controller.refresh()" class="btn btn-default glyphicon glyphicon-repeat bootstrap-refresh" id="overridebs"></a>
then add css
#overridebs:focus { //whatever unique properties want }
Comments
Post a Comment