From 63d0acc2ac5452c7605261bb9a98f6a1e4ccf61d Mon Sep 17 00:00:00 2001 From: Eric Meyer Date: Sun, 18 Jul 2010 15:17:40 -0600 Subject: [PATCH] no prefixes on opacity --- .../compass/stylesheets/compass/css3/_opacity.scss | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/frameworks/compass/stylesheets/compass/css3/_opacity.scss b/frameworks/compass/stylesheets/compass/css3/_opacity.scss index 91bc8359..22c618ed 100644 --- a/frameworks/compass/stylesheets/compass/css3/_opacity.scss +++ b/frameworks/compass/stylesheets/compass/css3/_opacity.scss @@ -6,13 +6,12 @@ // A number between 0 and 1, where 0 is transparent and 1 is opaque. @mixin opacity($opacity) { - // XXX consider only using the official property. I think -moz, -webkit, and -o support it. @include experimental(opacity, $opacity, - -moz, - -webkit, - -o, + not -moz, + not -webkit, + not -o, not -ms, // microsoft uses the filters below instead - -khtml, + not -khtml, official ); @if $experimental-support-for-microsoft {