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

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -