Skip to content

Commit

Permalink
(less) Fixes twbs#10941: Fix Glyphicons path for those importing boot…
Browse files Browse the repository at this point in the history
…strap.less from another directory
  • Loading branch information
mdo committed Dec 1, 2013
1 parent fc73c39 commit 33a05b9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions glyphicons.less
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
// Import the fonts
@font-face {
font-family: 'Glyphicons Halflings';
src: url('@{icon-font-path}@{icon-font-name}.eot');
src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
url('@{icon-font-path}@{icon-font-name}.svg#glyphicons_halflingsregular') format('svg');
src: ~"url('@{icon-font-path}@{icon-font-name}.eot')";
src: ~"url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype')",
~"url('@{icon-font-path}@{icon-font-name}.woff') format('woff')",
~"url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype')",
~"url('@{icon-font-path}@{icon-font-name}.svg#glyphicons-halflingsregular') format('svg')";
}

// Catchall baseclass
Expand Down

0 comments on commit 33a05b9

Please sign in to comment.