Skip to content

Instantly share code, notes, and snippets.

@epicmonkeez
Forked from kilokeith/less-ie-rgba-mixin
Created March 13, 2012 19:21
Show Gist options
  • Save epicmonkeez/2030898 to your computer and use it in GitHub Desktop.
Save epicmonkeez/2030898 to your computer and use it in GitHub Desktop.
LESS IE rgba mixin
.ie_rgba(@hex, @alpha:256){
@newhex: `"#" + (Math.round("@{alpha}" * 256)).toString(16) + "@{hex}"`;
background: transparent;
-ms-filter: ~'"progid:DXImageTransform.Microsoft.gradient(startColorstr=@{newhex},endColorstr=@{newhex})"'; /* IE8 */
filter: ~'progid:DXImageTransform.Microsoft.gradient(startColorstr=@{newhex},endColorstr=@{newhex})'; /* IE6 & 7 */
zoom: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment