Hello, everybody!
I try to style TabLayoutPanel.
I can apply style to panel itself:
<ui:style>
.gwt-TabLayoutPanel {
cursor: default;
background: #92c1f0;
}
</ui:style>
and then
<g:TabLayoutPanel styleName='{style.gwt-TabLayoutPanel}' ...>
</g:TabLayoutPanel>
It works.
But I don't understand how to specify style for some inner element
(selected tab for example). Javadoc says about styles:
.gwt-TabLayoutPanel <dd> the panel itself
.gwt-TabLayoutPanel .gwt-TabLayoutPanelTabs <dd> the tab bar element
.gwt-TabLayoutPanel .gwt-TabLayoutPanelTab <dd> an individual tab
So, how to specify ".gwt-TabLayoutPanel .gwt-TabLayoutPanelTabs" in
UiBinder?
Thank you,
Andrey
--
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.