A better fix for GH-123
This commit is contained in:
parent
f61b36b34c
commit
e2994eaf8f
@ -11,5 +11,5 @@
|
|||||||
// A hack to supply IE6 (and below) with a different property value.
|
// A hack to supply IE6 (and below) with a different property value.
|
||||||
// [Read more](http://www.cssportal.com/css-hacks/#in_css-important).
|
// [Read more](http://www.cssportal.com/css-hacks/#in_css-important).
|
||||||
@mixin bang-hack($property, $value, $ie6-value) {
|
@mixin bang-hack($property, $value, $ie6-value) {
|
||||||
#{$property}: #{$ie6-value} !important;
|
#{$property}: #{$value} !important;
|
||||||
#{$property}: #{$value}; }
|
#{$property}: #{$ie6-value}; }
|
||||||
|
@ -13,4 +13,4 @@
|
|||||||
// @private This mixin is not meant to be used directly.
|
// @private This mixin is not meant to be used directly.
|
||||||
@mixin hacked-minimum($property, $value) {
|
@mixin hacked-minimum($property, $value) {
|
||||||
min-#{$property}: $value;
|
min-#{$property}: $value;
|
||||||
@include bang-hack($property, $value, auto); }
|
@include bang-hack($property, auto, $value); }
|
||||||
|
Loading…
Reference in New Issue
Block a user