I have implemented a CssResource within a ClientBundle following the guidelines provided in the documentation at this link.
To access the styles from my UiBinder xml, I have used ui:with as explained in the documentation available at this guide.
While this method works well for applying css to html elements using class or styleName on GWT widgets, I am facing difficulty overriding the body selector. How can I achieve this?
In the past, I was able to override the body selector by using the style tag in my html file or referencing the css in my GWT module xml. However, these methods have been deprecated and I now rely solely on CssResource. As a result, my custom body selector is not being applied and instead, the one from the GWT Standard Theme is taking precedence.