dont need to call experimental for official-only

This commit is contained in:
Eric Meyer 2010-07-18 15:20:24 -06:00 committed by Chris Eppstein
parent 63d0acc2ac
commit 732dead236

View File

@ -6,14 +6,7 @@
// A number between 0 and 1, where 0 is transparent and 1 is opaque.
@mixin opacity($opacity) {
@include experimental(opacity, $opacity,
not -moz,
not -webkit,
not -o,
not -ms, // microsoft uses the filters below instead
not -khtml,
official
);
opacity: $opacity;
@if $experimental-support-for-microsoft {
$value: unquote("progid:DXImageTransform.Microsoft.Alpha(Opacity=#{round($opacity * 100)})");
@include experimental(filter, $value,