Hello everyone,
I'm trying to build a gwt website with UIBinder. It's cool, it works, but i have a problem with ui:style.
My project is mavenized (i use the gwt-maven-plugin archetype).
The Application.html and Application.css files are in src/main/resources/com/foo/bar/public.
The page i'm trying to style is in src/main/java/com/foo/bar/client/ Page1.java and Page1.ui.xml.
I can use a css file if it is in the same package with :
<ui:style src="Page1.css" />
But i'd like to target the Application.css (so i could avoid having the same styles in each css file in each package)
I tried different relative paths, and the Application.css is never found.
Is there someone, out there, who had the same problem, and would care to help me ?
Thanks !