public interface ReviewPanelStyle extends CssResource {...}

    @Source("BlueReviewPanelStyle.css")
    ReviewPanelStyle BlueReviewPanelStyle();

    @Source("YellowReviewPanelStyle.css")
    ReviewPanelStyle YellowReviewPanelStyle();

We would think that this should work, however it does not.

The color of elements styled (regardless of weather associated with
the Yellow or Blue css) will be styled based on the order of these two
lines.

    Resources.INSTANCE.YellowReviewPanelStyle().ensureInjected();
    Resources.INSTANCE.BlueReviewPanelStyle().ensureInjected();

As a work around I duplicated ReviewPanelStyle (ReviewPanelStyle2),
but I rather not...any ideas?

-- 
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.

Reply via email to