From 842d39ebe0fe0f60c58a3611c1fac6fa91f4a329 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Mon, 3 May 2010 07:53:51 -0700 Subject: [PATCH] [Compass Core] Fix an IE6 bug in the min-height and min-width mixins. Closes GH-123. --- .../compass/stylesheets/compass/utilities/general/_hacks.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss b/frameworks/compass/stylesheets/compass/utilities/general/_hacks.scss index d30dd722..9f3ffa48 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}: #{$value} !important; - #{$property}: #{$ie6-value}; } + #{$property}: #{$ie6-value} !important; + #{$property}: #{$value}; }