From the following page: Developer's Guide - CSS Style
it is made clear that in modern GWT
apps there's two ways to declare css
styles:
Using a CssResource contained within a ClientBundle. Using an inline element in a UiBinder template.
How do you use either of these two methods to override the GWT
default styles such as gwt-Button
, gwt-TextBox
etc?
I know it's still possible to use a css style sheet that you reference from either the html page or the .gwt.xml file. However, I'd like to avoid this since these methods are now deprecated.