RyanZA
unread,Dec 21, 2012, 1:35:27 PM12/21/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com
The GWT CSS (clean.css, chrome.css, etc) all have a ton of the following:
.gwt-TextBox {
font-family: Arial Unicode MS,Arial,sans-serif;
}
What is the best way to overwrite these strange classes with a webfront family, so that it will conflict as little as possible with future GWT releases?
Options seem to be:
1) Subclass Textboxt and other standard widgets, and add a 'addClassName' with custom font class in the constructor.
2) Copy the clean.css file to gwt, and use a css resource with @NotStrict annotation
Any other methods that are nicer?