タイトルとして、を使用してアイコンを追加しています.icon-*。ハイパーリンクにアイコンを追加する場合:
<a href="#" class="icon-email icon-large">Email me!</a>
プロパティによって挿入されたコンテンツcontentは、ホバー時に下線付きのテキスト装飾を示しています。text-decoration以前のコンテンツに対してのみ無効にしたい:
[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: 'IcoMoon';
    font-style: normal;
    speak: none;
}
.icon-mail:before {
    content: "\37";
}
[class^="icon-large-"]:before, [class*=" icon-large"]:before {
    font-size: 48px;
    line-height: 48px;
}
a[class^="icon-"]:before, a[class*=" icon-"]:before {
    margin-right: 5px;
    vertical-align: middle;
}
私はこれを試しましたが、機能していません(装飾はまだ表示されています):
a[class^="icon-"]:hover:before, a[class*=" icon-"]:hover:before {
    text-decoration: none;
    color: white;
}