2009-07-31 19:35:57 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override of misc/vertical-tabs.css.
|
|
|
|
*/
|
|
|
|
div.vertical-tabs {
|
|
|
|
margin: 10px 0;
|
|
|
|
padding: 9px;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
background: #f8f8f8;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.vertical-tabs fieldset {
|
|
|
|
border: 0;
|
|
|
|
padding: 0 0 0 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.vertical-tabs .vertical-tabs-list {
|
|
|
|
line-height: 10px;
|
|
|
|
font-size: 11px;
|
|
|
|
width: 25%;
|
|
|
|
float: left;
|
2010-01-08 16:03:24 +00:00
|
|
|
list-style-type: none;
|
2010-01-11 06:44:31 +00:00
|
|
|
margin: 0;
|
2010-01-08 16:03:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.vertical-tabs ul li.vertical-tab-button {
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
2009-07-31 19:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.vertical-tabs ul li.vertical-tab-button a {
|
|
|
|
display: block;
|
|
|
|
border-right: 1px solid #ccc;
|
|
|
|
padding: 10px 9px 10px 10px;
|
2010-03-20 14:45:05 +00:00
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
2009-07-31 19:35:57 +00:00
|
|
|
-moz-border-radius-topleft: 5px;
|
|
|
|
-moz-border-radius-bottomleft: 5px;
|
|
|
|
-webkit-border-top-left-radius: 5px;
|
|
|
|
-webkit-border-bottom-left-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.vertical-tabs ul li.vertical-tab-button .summary {
|
|
|
|
display: block;
|
|
|
|
font-size: 9px;
|
|
|
|
color: #666;
|
2010-01-08 16:03:24 +00:00
|
|
|
padding-top: 0.4em;
|
2009-07-31 19:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.vertical-tabs ul li.vertical-tab-button a:hover {
|
|
|
|
background: #fff;
|
2009-11-28 09:59:27 +00:00
|
|
|
text-decoration: none;
|
2009-07-31 19:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
div.vertical-tabs ul li.selected a,
|
|
|
|
div.vertical-tabs ul li.selected a:hover {
|
|
|
|
background: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.vertical-tabs .vertical-tabs-panes {
|
2010-01-08 16:03:24 +00:00
|
|
|
width: 72%;
|
|
|
|
padding: 0 1em 0 0;
|
2009-07-31 19:35:57 +00:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.vertical-tabs .vertical-tabs-panes legend {
|
|
|
|
display: none;
|
|
|
|
}
|