A better fix for GH-123

This commit is contained in:
Chris Eppstein 2010-05-03 09:48:53 -07:00
parent f61b36b34c
commit e2994eaf8f
2 changed files with 3 additions and 3 deletions

View File

@ -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}; }

View File

@ -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); }