diff options
| author | Mark Otto <[email protected]> | 2013-12-01 00:20:47 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-01 00:20:47 -0800 |
| commit | 556d6cef3e1e5b9b6aeef42fb44d2eafcf2f38a7 (patch) | |
| tree | 491b0717c88aa8bc50fcef9aa24b2214b0671505 /less | |
| parent | 8dfe93d0b95939f36476105792592d7da7bf3c6a (diff) | |
| download | bootstrap-556d6cef3e1e5b9b6aeef42fb44d2eafcf2f38a7.tar.xz bootstrap-556d6cef3e1e5b9b6aeef42fb44d2eafcf2f38a7.zip | |
Fixes #10941: Fix Glyphicons path for those importing bootstrap.less from another directory
Diffstat (limited to 'less')
| -rw-r--r-- | less/glyphicons.less | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/less/glyphicons.less b/less/glyphicons.less index 9de2dd3b6..8a68f11ef 100644 --- a/less/glyphicons.less +++ b/less/glyphicons.less @@ -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 |
