Reputation: 21
I would like to style the tab bar element of the TabLayoutPanel using the Cssresources mechanism.
According to the documentation here is the style rule for accessing the bar : .gwt-TabLayoutPanel .gwt-TabLayoutPanelTabs the tab bar element
I can set the style for the entire panel but how do I set the style for the TabLayoutPanelTabs property using Cssresources ?
Thanks!
Upvotes: 2
Views: 1103
Reputation: 795
Checkout the ClientBundle feature of GWT.
Someone posted a solution that seems to address your problem. Check out: GWT Vertical Tabs like iGoogle, particularly the "lightweight" solution answer. It explains how to overload CSS for individual tabs and make them available via an interface.
Upvotes: 1