Hey,

Does anyone have an idea how to override standard.css inline in
UiBinder?  For example,

<ui:binder ..... >

  <g:Widget ui:field='datePicker'/>

</ui:binder>

where 'datePicker' in java is provided

@UiField(provided = true)
Widget datePicker;

I would like to do something like...

<ui:binder ... >

  <ui:style field='local'>
    .datePickerMonth { color: white }
  </ui:style>

  <g:Widget ui:field='datePicker'
addStyleName='{local.datePickerMonth}'/>

</ui:binder>

The above is obviously wrong as .datePickerMonth is obfuscated and i'm
adding the style to the whole thing and not to month selector in the
date picker.
How do I override standard.css in this case? Is it even possible to do
it inline?

Tristan

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to