How can I add my custom CSS files (which are used all over the application) to Visual Builder, so that I can design with the CSS classes defined there?
You can modify the "globalDependencies.xml" file to include an entry of "type" "css" with "url" specified to point to your .css file.
One note: You're modifying a file that is packaged up in one of the framework .jar files. If you're working with eclipse in development mode, various actions such as doing a full gwt-compile can cause the modified file to be overwritten by the version from the jar. If this is an issue for you you can either work with a compiled / deployed version of the project while using the visual builder, or unpack the Visual builder files and copy them directly into your project war directory.
Comment