How do you remove defaul GWT style from CaptionPanel widget ?
In my .ui.xml I tried pretty much everything. I tried setting stylePrimaryName
and styleName
to my classname. I also tried defining .gwt-CaptionPanel
with no effect.
My .xml looks something like this:
<ui:style src="../common.css">
.test {
color: red;
}
.gwt-CaptionPanel {
}
</ui:style>
<g:CaptionPanel captionText="Test" stylePrimaryName="{style.test}">
</g:CaptionPanel>