web/data/tabs-no-images.css
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 18 Jun 2009 21:01:55 +0200
changeset 2123 3e1d2ab5f8c0
child 2383 96780c1e0c53
permissions -rw-r--r--
replace tabs implementation (behaviour should be strictly identical, look is a bit different), using jquery.tools (see #343644)


/* root element for tabs  */
ul.css-tabs {
	margin:0 !important;
	padding:0;
	height:24px;
	border-bottom:1px solid #666;
}

/* single tab */
ul.css-tabs li {
	float:left;
	padding:0;
	margin:0;
	list-style-type:none;
}

/* link inside the tab. uses a background image */
ul.css-tabs a {
	float:left;
	font-size:12px;
	display:block;
	padding:2px 20px;
	text-decoration:none;
	border:1px solid #666;
	border-bottom:0px;
	height:18px;
	background-color:#efefef;
	color:#777;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;
}

ul.css-tabs a:hover {
	background-color:#CFCEB7;
	color:#333;
}

/* selected tab */
ul.css-tabs a.current {
	background-color: white;
	border-bottom:2px solid #ddd;
	color:#000;
	cursor:default;
}


/* tab pane */
div.css-panes div {
	display:none;
	border:1px solid #666;
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding:15px 20px;
	/* background-color:#ddd; */
}