Is there a way to remove the default GWT theme completely?

59 Views Asked by At

I would like to start GWT Project without GWT Themes, is there a way to tune off default theme like clean.css?

1

There are 1 best solutions below

1
Robert Newton On

In your *.gwt.xml file you may be inheriting a theme. e.g.

  <!-- Inherit the default GWT style sheet.  You can change       -->
  <!-- the theme of your GWT application by uncommenting          -->
  <!-- any one of the following lines.                            -->
  <inherits name='com.google.gwt.user.theme.standard.Standard' />
  <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
  <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/>     -->

In that case, simply remove the inherit of the theme.