aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-12-31 16:11:04 -0800
committerChris Rebert <[email protected]>2014-12-31 16:11:04 -0800
commit45f58417853f48de2448daf379227f6480b28dd5 (patch)
treeddf38e053b5cd2e4a5e5af0d13da3c75c0a782ec /less
parent6c383c5102011102d0d5157f6e37d7520f103ae7 (diff)
parent35073fc1287654caa657fb17a2ac97103717df7a (diff)
downloadbootstrap-45f58417853f48de2448daf379227f6480b28dd5.tar.xz
bootstrap-45f58417853f48de2448daf379227f6480b28dd5.zip
Merge pull request #15464 from twbs/address-15419
Address #15419
Diffstat (limited to 'less')
-rw-r--r--less/glyphicons.less10
1 files changed, 8 insertions, 2 deletions
diff --git a/less/glyphicons.less b/less/glyphicons.less
index cb02f9945..8b25f89a5 100644
--- a/less/glyphicons.less
+++ b/less/glyphicons.less
@@ -239,8 +239,14 @@
.glyphicon-level-up { &:before { content: "\e204"; } }
.glyphicon-copy { &:before { content: "\e205"; } }
.glyphicon-paste { &:before { content: "\e206"; } }
-.glyphicon-door { &:before { content: "\1f6aa"; } }
-.glyphicon-key { &:before { content: "\1f511"; } }
+// The following 2 Glyphicons are omitted for the time being because
+// they currently use Unicode codepoints that are outside the
+// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
+// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
+// Notably, the bug affects some older versions of the Android Browser.
+// More info: https://github.com/twbs/bootstrap/issues/10106
+// .glyphicon-door { &:before { content: "\1f6aa"; } }
+// .glyphicon-key { &:before { content: "\1f511"; } }
.glyphicon-alert { &:before { content: "\e209"; } }
.glyphicon-equalizer { &:before { content: "\e210"; } }
.glyphicon-king { &:before { content: "\e211"; } }