Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

THe Google/GWT example of creating an ImageResource is understood:

interface MyResources extends ClientBundle {
  @Source("image.png")
  ImageResource image();

  @Source("my.css");
  CssResource css();
}

@sprite .myImage {
  gwt-image: 'image';
}

I understand how to use ImageResources and apply style names, however.. .

In my application, I have multiple themes that are applied to various widgets using css and deferred binding. So I have defined a css rule ('background') that I would like to use the .myImage class, but it does not do anything:

background {
    background-attachment: fixed;
    background-image: .myImage;  //??  This is the question!
    background-size: contain
}

What is the syntax for using the .myImage class within the 'background' css property? It seems I should be able to specify the .myImage class as the argument for background-image.

Edit: Did some more research and found the correct syntax to do this using a DataResource.

MyClientBundle extends ClientBundle {

    //Background Image
    @Source("resources/background.png")
    DataResource backgroundImage();

}

(mypanel.css)

@url background backgroundImage;

.myPanel {
    border-radius: 0px;
    background-color:#ffffff;
    opacity:0.6;
    background-image: background;
}
share|improve this question

1 Answer

If you're interested in using CSS based icons you might look at http://fortawesome.github.com/Font-Awesome/

It's a font with infinitely scalable icons (vector graphics). You can apply its icons by using the addStyleName("icon-user") method once you've created a GWT reference in your *.gwt.xml file like this

<stylesheet src="icon/css/font-awesome.css"/>

whereby the icon folder should be located in your public directory.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.