From: deniss-muhla Date: Sat, 27 Jun 2015 12:43:09 +0000 (+0300) Subject: Fix show "2b" text instead of proper glyphicon X-Git-Tag: v3.3.6~94^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a047eab59df4b505ac0ea8938a020c0411726078;p=thirdparty%2Fbootstrap.git Fix show "2b" text instead of proper glyphicon I'm using babel and webpack with less-loader to bundle all resources maybe this will cause this issue. --- diff --git a/less/glyphicons.less b/less/glyphicons.less index 335d80aa6b..7bc5852d2c 100644 --- a/less/glyphicons.less +++ b/less/glyphicons.less @@ -32,8 +32,8 @@ } // Individual icons -.glyphicon-asterisk { &:before { content: "\2a"; } } -.glyphicon-plus { &:before { content: "\2b"; } } +.glyphicon-asterisk { &:before { content: "\002a"; } } +.glyphicon-plus { &:before { content: "\002b"; } } .glyphicon-euro, .glyphicon-eur { &:before { content: "\20ac"; } } .glyphicon-minus { &:before { content: "\2212"; } }