Hi,
I like to change the default color for the TabPanel Items and the
selected TabPanel Item for a specific TabPanel.
//JAVA
TabPanel tab1 = new TabPanel();
tab1.setStyleName("customizedTabPanel"); //use customized css
TabPanel tab2 = new TabPanel(); //use default css
//CSS
.customizedTabPanel {
padding: 2px;
font-weight: bold;
cursor: default;
background-color: orange;
color: red;
margin-right: 2px;
margin-left: 2px;
}
The above would only change the tab body color.
I want to change the tab item color and the selected tab item color...
Any idea how this can be done?
Thanks in advance
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---