css - How can i disable the bootstrap hover color for links -
hi i'm using bootstrap.
bootstrap defines
a:hover, a:focus { color: #005580; text-decoration: underline; }
i have links / css-classes
<a class="green" href="#">green text</a> <a class="yellow" href="#">yellow text</a>
how can disable hoover color?
i want green links stay green , yellow ones yellow, without overriding :hover every single class? (this question not mandatory dependent bootstrap).
i need like
a:hover, a:focus { color: @nonhoovercolor; }
and think
.yellow { color: yellow !important; }
is not practice
if cares ended with:
a { color: inherit; }
Comments
Post a Comment