Skip to content

Instantly share code, notes, and snippets.

@neoswf
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neoswf/9247dbc2f71cf5a658ee to your computer and use it in GitHub Desktop.
Save neoswf/9247dbc2f71cf5a658ee to your computer and use it in GitHub Desktop.
golden mixins
//background RGBA com IE Support!!!
@mixin rgba-background($color, $alpha) {
$rgba: rgba($color, $alpha);
$ie-hex-str: ie-hex-str($rgba);
background-color: transparent;
background-color: $rgba;
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#{$ie-hex-str},endColorstr=#{$ie-hex-str});
zoom: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment