From 49031c0945dc0468b9e0377db22e84a07551c121 Mon Sep 17 00:00:00 2001 From: Kris Borchers Date: Fri, 30 Aug 2013 22:48:26 -0500 Subject: [PATCH] Only apply FontAwesome to ::before and ::after pseudo elements of icon classed elements. Fixes #215 - Unintended icon font in site footer --- themes/jquery/css/base.css | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/themes/jquery/css/base.css b/themes/jquery/css/base.css index c8277365..1ddf29b6 100644 --- a/themes/jquery/css/base.css +++ b/themes/jquery/css/base.css @@ -684,7 +684,6 @@ table { [class^="icon-"], [class*=" icon-"] { - font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; @@ -1192,8 +1191,8 @@ ul.icons li [class*=" icon-"] { .icon-folder-open-alt:before { content: "\f115"; } /* Manual Font Awesome Styles */ -[class^="icon-"], -[class*=" icon-"] { +[class^="icon-"]::before, [class^="icon-"]::after +[class*=" icon-"]::before, [class*=" icon-"]::after { font-family: FontAwesome, "Helvetica Neue", Helvetica, Arial, sans-serif; }