diff --git a/frameworks/compass/stylesheets/compass/css3/_font-face.scss b/frameworks/compass/stylesheets/compass/css3/_font-face.scss index cd2529e1..e3ecc8b6 100644 --- a/frameworks/compass/stylesheets/compass/css3/_font-face.scss +++ b/frameworks/compass/stylesheets/compass/css3/_font-face.scss @@ -26,8 +26,8 @@ $name, $font-files, $eot: false, - $weight: normal, - $style: normal + $weight: false, + $style: false ) { $iefont: unquote("#{$eot}?iefix"); @font-face { @@ -37,8 +37,12 @@ $font-files: font-url($iefont) unquote("format('eot')"), $font-files; } src: $font-files; - font-weight: $weight; - font-style: $style; + @if $weight { + font-weight: $weight; + } + @if $style { + font-style: $style; + } } }