Bootstrap btn class, but not hover state

css, html, twitter-bootstrap

Solution

I think the easiest thing to do would be to add some `.nohover` class to the desired `.btn` elements that would have the same styles as a `.btn` class

HTML

<span class="btn nohover" style="background-color: #82CFFD"><strong>R</strong></span>

CSS

.btn.nohover:hover {
    /* here copy default .btn class styles */
    cursor:default !important;
    /* or something like that */
}

Problem

I know there is .btn class in bootstrap ``` <span class="btn" style="background-color: #82CFFD"><strong>R</strong></span> ``` It has nice styling, but is reacting like button, hover state etc, etc. Is there in bootstrap class like .btn but not to have hover state, or we have to make it :(

Original source