I need to style the Tabs Button area. Am using CSS and am failing to know how to set the UIID of that area so I can style it. Would like to change the Tab title colour to white and the padding of the same tab button.
Here is my code
Tabs homtabs = new Tabs();
homtabs.setUIID("Tabs");
homtabs.addTab("Tab 1", container1);
homtabs.addTab("Tab 2", new SpanLabel("Some text directly in the tab"));
homtabs.addTab("Tab 3", new SpanLabel("Some text directly in the tab"));
homtabs.setTabPlacement(BOTTOM);
homtabs.setSwipeActivated(false);
homtabs.getContentPane().setUIID("TabsArea");
Thank you!
