海王星主题不适用

Theme neptune doesn't apply

我想在我的应用程序 GWT 上应用 neptune 主题,但它不起作用。

我已经将主题 neptune.jar 和主题生成器添加到依赖项中: 我的 app.gwt.xml:

<inherits name='com.sencha.gxt.theme.neptune.Theme' />
  <inherits name="com.google.gwt.http.HTTP" />
<inherits name='com.google.gwt.user.User'/>
<inherits name="com.google.gwt.logging.Logging"/>
<inherits name="com.google.gwt.xml.XML"/>
<inherits name='com.sencha.gxt.ui.GXT'/>
<inherits name='org.gwtopenmaps.openlayers.OpenLayers' />
<set-property name="gwt.logging.enabled" value="FALSE"/>
<set-property name="gwt.logging.consoleHandler" value="DISABLED"/>
<set-configuration-property name="locale.cookie" value="GWT_LOCALE" />

<entry-point class='org.traccar.web.client.Traccar'/>

<source path='client'/>
<source path='shared'/>

还有我的 pom:

<dependency>
  <groupId>com.sencha.gxt</groupId>
  <artifactId>gxt-themebuilder</artifactId>
  <version>3.1.1</version>
</dependency>
<dependency>
  <groupId>com.sencha.gxt</groupId>
  <artifactId>gxt-theme-neptune</artifactId>
  <version>3.1.1</version>
</dependency>

我做错了什么?

<inherits name='com.sencha.gxt.theme.neptune.Theme' /> 移至 GXTinherits 之后 - 如果您将其放在较早的位置,它会被默认覆盖。