I have a problem with stylized buttons on boot.
<div class="btn-group">
<button class="btn btn-midd">Link</button>
<button class="btn btn-midd dropdown-toggle">
<span class="icon-download-alt icon-gray"></span>
</button>
</div>
I want to change icon-gray to icon-blue. Of course, I have another image (and a class that changes the inverse image). The blue icon should be changed when you hover over the mouse.
Thanks for the help.
CSS
.icon-blue {background-image: url("../img/glyphicons-halflings-blue.png");}
.icon-download-alt {background-position: -408px -96px;}
Here is an example:

source
share