Skip to content

Instantly share code, notes, and snippets.

@tsi
Last active October 8, 2015 18:17
Show Gist options
  • Save tsi/3369911 to your computer and use it in GitHub Desktop.
Save tsi/3369911 to your computer and use it in GitHub Desktop.
Inline block with ie7 support
/*
* ##### Sasson - advanced drupal theming. #####
*
* SASS mixins
* http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#mixins
*
*/
// Inline block with ie7 support
@mixin inline-block($alignment: false, $ie7-support: false) {
display: inline-block;
@if $alignment {
vertical-align: $alignment;
}
@if $ie7-support {
.lte-ie7 & {
zoom: 1;
display: inline;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment