GumbyFramework / Gumby

A Flexible, Responsive CSS Framework - Powered by Sass
http://gumbyframework.com/
2.85k stars 440 forks source link

Fixed icons problems when using some sass version #247

Closed ghost closed 9 years ago

ghost commented 10 years ago

While using some sass version, the css output for icons may be something like

.icon-note.icon-left a:before, .icon-note.icon-right a:after, i.icon-note:before {
    content: "\\1f3b5";
    height: inherit;
}

But not

.icon-note.icon-left a:before, .icon-note.icon-right a:after, i.icon-note:before {
    content: "\1f3b5";
    height: inherit;
}

So that icons will display with some unexpected chars. Simply add double single quotation to solve this problem

danhere commented 9 years ago

A similar PR was already merged. Let me know if it's not already fixed. Thanks!