On Jul 22, 2:18 am, David Vree <[email protected]> wrote: > If I understand you correctly, I can put the CSS that pertains > directly to the UIBinder there...and the more general stuff I put in > the CSS file....and they'll both get picked up? I assume here that > the stuff in the UIBinder XML file has precendence?
If I were you, I wouldn't use @external in an UiBinder's <ui:style> as you won't know in which order your widgets will be loaded (and will load your CSS), so you might face unexpected behaviors. In this case (not using @external), there's no need to think about precedence, as your rules shouldn't conflict or combine with any other rule defined elsewhere. Again, UiBinder's <ui:style> is just an implicit CssResource, and it obeys the exact same rules. The only difference is that it's ensureInjected() automatically. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
