When using ClientBundle we have to define an interface with same style/
class names as the CSS file. If I wanted to style a Button's different
states (UP,DOWN etc.) I would have styles like :

.gwt-ToggleButton, .gwt-ToggleButton-hovering etc.

But these names would be illegal to use for a Java interface method.

I tried to use a wrapper element with a class so I could say :

.someclass .gwt-ToggleButton {
  .......
}

.someclass .gwt-ToggleButton-up-hovering {
  ........
}

But it complains that I have unobfuscated class names .gwt-
ToggleButton and .gwt-ToggleButton-up-hovering.

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