I know that obfuscation can be turned off for ALL css resources (In GWT 2.0 CssResource, how I can turn off obfuscation for all my css classes?) or for ONE external class (using @external)
How can I turn off CSSResource obfuscation for only one type. I want to use some Twitter Bootstrap, and they use advanced attributed selectors from CSS3. The only way I can think to get these to work is disable CSS obfuscation.
Naturally, I could avoid using a CssResource, but I like the handy tab-completion and static analysis that it does.
Any ideas? This doesn't work:
<when-type-is class="my.org.CssResource">
<set-configuration-property name="CssResource.style" value="pretty"/>
</when-type-is>