I am using GWT 2.4.0 + UiBinder.
In my ui.xml file i have referenced external style sheet using below line.
<ui:style
type="com.codelaboration.twykin.frontend.widgets.qa.client.view.QABox.QAStyle"
src="QABox.css" />
Now i have below code in the same ui.xml file
<div class="{style.imagePanel}">
<div ui:field="lblUser"/>
</div>
In QABox.css i have defined the "imagePanel" and also used CSS inheritance for applying the CSS to all divs inside the imagePanel class:
.imagePanel {float: left; width: 100px; text-align: center;}
.imagePanel div {float: right; width: 530px;}
Now the problem is GWT is obscufacting the style name, so now imagePanel will be changed to some weird name, so the ".imagePanel div" wont going to work. So basically my question is how to use CSS selector in UiBinder when external stylesheet had been declared in ui.xml only.
Thanks.
.imagePanel div
selector to.obfuscated-imagePanel-whatever-it-is div
. – Thomas Broyer