Skip to content

Instantly share code, notes, and snippets.

@kilokeith
Created October 5, 2011 02:03
Show Gist options
  • Save kilokeith/1263436 to your computer and use it in GitHub Desktop.
Save kilokeith/1263436 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