From f37800ba36be375510fba5a17ef187f482dc93fb Mon Sep 17 00:00:00 2001 From: Brian Cardarella Date: Thu, 26 Jan 2012 04:13:26 -0500 Subject: [PATCH 1/2] I'm noticing that fonts on IE8 are not working without this fix. --- frameworks/compass/stylesheets/compass/css3/_font-face.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/compass/stylesheets/compass/css3/_font-face.scss b/frameworks/compass/stylesheets/compass/css3/_font-face.scss index a4d1921a..ce3eafe6 100644 --- a/frameworks/compass/stylesheets/compass/css3/_font-face.scss +++ b/frameworks/compass/stylesheets/compass/css3/_font-face.scss @@ -21,7 +21,7 @@ $font-files, $eot: false ) { - $iefont: unquote("#{$eot}?iefix"); + $iefont: unquote("#{$eot}?#iefix"); @font-face { font-family: quote($name); @if $eot { From 938829de9ac03891c0b844d631731429bd954756 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sat, 28 Jan 2012 16:24:46 -0800 Subject: [PATCH 2/2] Update changelog --- doc-src/content/CHANGELOG.markdown | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc-src/content/CHANGELOG.markdown b/doc-src/content/CHANGELOG.markdown index bc078e94..1552d83e 100644 --- a/doc-src/content/CHANGELOG.markdown +++ b/doc-src/content/CHANGELOG.markdown @@ -14,6 +14,11 @@ The Documentation for the [latest stable release](http://compass-style.org/docs/ The Documentation for the [latest preview release](http://beta.compass-style.org/) +0.11.7 (UNRELEASED) +------------------- + +* Update to font-face mixin to make it work on IE8. + 0.11.6 (12/23/2011) -------------------