Skip to content

Commit

Permalink
fix glyphicons path
Browse files Browse the repository at this point in the history
  • Loading branch information
m5o committed Nov 3, 2013
1 parent e127b4a commit 1c1309d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions lib/_glyphicons.scss
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: font-url('#{$icon-font-path}#{$icon-font-name}.eot');
src: font-url('#{$icon-font-path}#{$icon-font-name}.eot?#iefix') format('embedded-opentype'),
font-url('#{$icon-font-path}#{$icon-font-name}.woff') format('woff'),
font-url('#{$icon-font-path}#{$icon-font-name}.ttf') format('truetype'),
font-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
2 changes: 1 addition & 1 deletion lib/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ $headings-color: inherit !default;
// Iconography
// -------------------------

$icon-font-path: "bootstrap/" !default;
$icon-font-path: "../fonts/" !default;
$icon-font-name: "glyphicons-halflings-regular" !default;


Expand Down

0 comments on commit 1c1309d

Please sign in to comment.