PeteGashek / puzzlebazar

Automatically exported from code.google.com/p/puzzlebazar
0 stars 0 forks source link

See if there is a better way to do opacity in ie6 #98

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
In Puzzlebazar.css we currently define opacity as such for IE6:
.transparent {
    filter: literal("alpha(opacity=50)");
}

But this:
http://code.google.com/p/google-web-toolkit/issues/detail?id=4688
says we should do it like that:

.transparent {
    filter: "alpha(opacity\=50)";
}

See if it works under IE7.

Original issue reported on code.google.com by philippe.beaudoin on 1 Apr 2010 at 1:20