Re: GWT tab panel With image tabs

2009-11-07 Thread Zak
Try this: .gwt-TabBar .gwt-TabBarItem:hover { // hover styles } .gwt-TabBar .gwt-TabBarItem-selected:hover { // selected hover styles } hover styles apply onMouseOver and stop applying onMouseOut... all controlled by CSS! the downside is that IE6 and lower do not support :hover styles on an

Re: GWT tab panel With image tabs

2009-11-06 Thread SmartKiller
Thanks Davis, This can be a good solution. but i want to add mouseOver/out effect to tabs. I wanted to change the color of the tab text on mouseEvents. How this can be done. I dont find any way to add mouseListener to tabs in Tabpanel. Any Idea. On Nov 6, 10:36 pm, Davis Ford wrote: > This