icono hover
by Anthony Fernando Torres Detquizan
HTML
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<style>
.divclass{
font-size:5em;
color:grey;
cursor:pointer;
}
.divclass:hover .glyphicon-ok:before{
content: "\e014";
color:green;
opacity:0.4;
}
</style>
<table>
<thead>
<tr>
<td class="divclass"><span class="glyphicon glyphicon-ok"></span></td>
</tr>
</thead>
</table>