diff --git a/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss b/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss index 9f3ffa48..d30dd722 100644 --- a/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss +++ b/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss @@ -11,5 +11,5 @@ // A hack to supply IE6 (and below) with a different property value. // [Read more](http://www.cssportal.com/css-hacks/#in_css-important). @mixin bang-hack($property, $value, $ie6-value) { - #{$property}: #{$ie6-value} !important; - #{$property}: #{$value}; } + #{$property}: #{$value} !important; + #{$property}: #{$ie6-value}; } diff --git a/frameworks/compass/stylesheets/compass/utilities/general/_min.scss b/frameworks/compass/stylesheets/compass/utilities/general/_min.scss index e679009f..99a676b3 100644 --- a/frameworks/compass/stylesheets/compass/utilities/general/_min.scss +++ b/frameworks/compass/stylesheets/compass/utilities/general/_min.scss @@ -13,4 +13,4 @@ // @private This mixin is not meant to be used directly. @mixin hacked-minimum($property, $value) { min-#{$property}: $value; - @include bang-hack($property, $value, auto); } + @include bang-hack($property, auto, $value); }