TabPanel StyleSheet Defaults

Can anyone tell me how I can add this to my style defualt css so all my tabpanels are the same format?

See attachment.

Screen shot 2010-05-25 at 5.14.52 PM.png

Whenever you need to know what String to use to set a border, you can ask the solutionModel to give you what you are looking for:

application.output(solutionModel.getForm(controller.getName()).getTabPanel(elements.tab_panel.getName()).borderType);

will give you the String to use.

In your case, it returns:

BevelBorder,0

Not sure I get it…

As in my style.css… this is typically what I see for an object:

button.new
{
	color: #cccccc;
	margin: 0px 0px 0px 0px;
	font: 12pt "Arial";
	text-align: center;
	border-style: etched;
	border-color: #666666 #666666 #666666 #666666;
}

Where would BevelBorder,0 fit in?

You’re right, sorry, I was thinking in terms of solutionModel.

In my case from empirical tests (this will also depend on the Look&Feel you are using), I found that BevelBorder,0 = border-style: outset;

Hope this helps,