From 732dead236840b40bc553d286481d6db478b43eb Mon Sep 17 00:00:00 2001 From: Eric Meyer Date: Sun, 18 Jul 2010 15:20:24 -0600 Subject: [PATCH] dont need to call experimental for official-only --- .../compass/stylesheets/compass/css3/_opacity.scss | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/frameworks/compass/stylesheets/compass/css3/_opacity.scss b/frameworks/compass/stylesheets/compass/css3/_opacity.scss index 22c618ed..38093c6a 100644 --- a/frameworks/compass/stylesheets/compass/css3/_opacity.scss +++ b/frameworks/compass/stylesheets/compass/css3/_opacity.scss @@ -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,