30 lines
No EOL
520 B
SCSS
30 lines
No EOL
520 B
SCSS
/*----------------------------*\
|
|
* IE Fix *
|
|
\*----------------------------*/
|
|
|
|
/**
|
|
* HasLayout for IE6/IE7
|
|
*/
|
|
@if $legacy-support-for-ie {
|
|
.row, .col {
|
|
*zoom: 1;
|
|
}
|
|
|
|
/**
|
|
* Warning: .col needs a width on IE6/IE7
|
|
*/
|
|
.col {
|
|
*display: inline;
|
|
*zoom: 1;
|
|
}
|
|
|
|
/**
|
|
* Add a slash at the end of this comment
|
|
* If you want to enable box-sizing for IE6/IE7
|
|
* with a polyfill
|
|
* Source: https://github.com/Schepp/box-sizing-polyfill *
|
|
* {
|
|
behavior: url(/js/boxsizing.htc);
|
|
}
|
|
/**/
|
|
} |