Last active
October 8, 2015 18:17
-
-
Save tsi/3369911 to your computer and use it in GitHub Desktop.
Inline block with ie7 support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* ##### 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