Overriding Css Styles Defined via CssResource ..

2011-06-15 Thread El bassistos
I have made reusable GWT Widget which uses CssResources, where I have marked all the styes as @external so they are not obfuscated. I now want to override some of the styles in plain standard HTML web site. The website is not GWT project so I can't override the styles in a "module.gwt.xml" file..

Re: Overriding Css Styles Defined via CssResource ..

2011-06-15 Thread Jeff Larsen
The styles from CSS resource are always going to be loaded after any static .css files. They are programatically injected (CssResource#ensureInjected()) One option would be to not use CssResource, but that is probably a bad one. Someone else solved this problem pretty elegantly http://googlewe