Skip to content

Instantly share code, notes, and snippets.

@verydapeng
Last active August 29, 2015 13:57
Show Gist options
  • Save verydapeng/9634352 to your computer and use it in GitHub Desktop.
Save verydapeng/9634352 to your computer and use it in GitHub Desktop.
/* the name "logoImage" must match with the ImageResource's name */
@url logoUrl logoImage;
.logoBackground {
background-image: logoUrl;
}
public interface MyBundle extends ClientBundle {
interface MyStyle extends CssResource {
String logoBackground();
}
@Source("MyBundle.css")
MyStyle style();
@Source("gwt.png")
ImageResource logoImage();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment