Im building a phonegap Application with GWT and started switching my
css files to ClientBundles and ImageSpriting with GWT 2.0

the css file looked something like:

@sprite #someId {
    gwt-image: "headerMiddle";
    position: relative;
    height: 40px;
    border-bottom: 1px solid rgb(45, 54, 66);
}

And the BundleInterface looks like:
public interface HeaderPanelResourceBundle extends ClientBundle{

    public static final HeaderPanelResourceBundle INSTANCE =
GWT.create(HeaderPanelResourceBundle.class);

    @ImageResource.ImageOptions(repeatStyle =
ImageResource.RepeatStyle.Horizontal)
    @ClientBundle.Source("org/dvelop/phonegap/iphone/public/img/
header_middle.png")
    ImageResource headerMiddle();

    @ClientBundle.Source("org/dvelop/phonegap/iphone/public/css/
headerPanel.css")
    HeaderPanelCss css();

}

Everything works fine in Desktop Safari 4.0.5. If I remove the
spriting and replace it with a simple background-image everythings
fine again. Not only the sprinting style is broken all other styles in
the css file as well.

Anyone experienced something like that before?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to