diff options
| author | Mark Otto <[email protected]> | 2014-06-08 11:23:20 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-06-08 11:23:20 -0700 |
| commit | 2919a3dd80648be75614cc7ffc7bee9d3fa42783 (patch) | |
| tree | a7cb7aaf85bdfce5e1f0a8165879193c327179b6 /less | |
| parent | 1e3b93804fa88d247d8708529fb44b28d73fd91f (diff) | |
| parent | 34891de173f1ea1dfd470d4cdeed52f83d9a253b (diff) | |
| download | bootstrap-2919a3dd80648be75614cc7ffc7bee9d3fa42783.tar.xz bootstrap-2919a3dd80648be75614cc7ffc7bee9d3fa42783.zip | |
Merge pull request #13542 from twbs/icon_paths
Fixes #13478, reverts #10941
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 789c5e7f4..d3485dcb1 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#@{icon-font-svg-id}') 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#@{icon-font-svg-id}') format('svg'); } // Catchall baseclass |
