From e2994eaf8f0663e9c577413ec5a653847a3f74d6 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 3 May 2010 09:48:53 -0700 Subject: [PATCH] A better fix for GH-123 --- .../compass/stylesheets/compass/utilities/general/_hacks.scss | 4 ++-- .../compass/stylesheets/compass/utilities/general/_min.scss | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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); }