Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authordeniss-muhla <deniss.muhla@gmail.com>2015-06-27 15:43:09 +0300
committerdeniss-muhla <deniss.muhla@gmail.com>2015-06-27 15:43:09 +0300
commita047eab59df4b505ac0ea8938a020c0411726078 (patch)
tree8e4cbf8ff45866a8950ea23f0985040c526a5d99 /less
parentd2d77841184faed52567aa057fd69bcff95021b7 (diff)
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.
Diffstat (limited to 'less')
-rw-r--r--less/glyphicons.less4
1 files changed, 2 insertions, 2 deletions
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"; } }