2009-07-31 19:35:57 +00:00
|
|
|
/**
|
|
|
|
* Override of misc/vertical-tabs.css.
|
|
|
|
*/
|
2013-05-01 17:43:20 +00:00
|
|
|
.vertical-tabs {
|
2010-10-06 13:42:18 +00:00
|
|
|
position: relative;
|
2013-05-19 15:36:26 +00:00
|
|
|
overflow: hidden;
|
|
|
|
margin: 10px 0;
|
|
|
|
border: 1px solid #bdbdbd;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: #e6e5e1;
|
2009-07-31 19:35:57 +00:00
|
|
|
}
|
2013-05-19 15:36:26 +00:00
|
|
|
.vertical-tabs-list {
|
2011-01-28 07:17:18 +00:00
|
|
|
float: left; /* LTR */
|
2013-05-19 15:36:26 +00:00
|
|
|
width: 240px;
|
2011-01-28 07:17:18 +00:00
|
|
|
margin: 0 -100% -1px 0; /* LTR */
|
2010-09-23 02:11:19 +00:00
|
|
|
padding: 0;
|
2013-05-19 15:36:26 +00:00
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
line-height: 1;
|
2010-01-08 16:03:24 +00:00
|
|
|
}
|
2013-07-02 12:40:19 +00:00
|
|
|
[dir="rtl"] .vertical-tabs-list {
|
2013-06-28 08:47:08 +00:00
|
|
|
float: right;
|
|
|
|
margin: 0 0 -1px -100%;
|
|
|
|
}
|
2013-05-19 15:36:26 +00:00
|
|
|
.vertical-tab-button {
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
2010-09-23 02:11:19 +00:00
|
|
|
list-style: none;
|
|
|
|
list-style-image: none;
|
2009-07-31 19:35:57 +00:00
|
|
|
}
|
2013-05-19 15:36:26 +00:00
|
|
|
.vertical-tab-button.selected {
|
|
|
|
z-index: 1;
|
|
|
|
overflow-x: hidden;
|
|
|
|
width: 100%;
|
|
|
|
border-right: 1px solid #fcfcfa; /* LTR */
|
|
|
|
box-shadow: 0 5px 5px -5px hsla(0, 0%, 0%, 0.3);
|
2010-09-23 02:11:19 +00:00
|
|
|
}
|
2013-07-02 12:40:19 +00:00
|
|
|
[dir="rtl"] .vertical-tab-button.selected {
|
2013-06-28 08:47:08 +00:00
|
|
|
border-left: 1px solid #fcfcfa;
|
|
|
|
border-right: none;
|
|
|
|
}
|
2013-05-19 15:36:26 +00:00
|
|
|
.vertical-tab-button:focus,
|
|
|
|
.vertical-tab-button:active {
|
|
|
|
z-index: 2;
|
2010-09-23 02:11:19 +00:00
|
|
|
}
|
2013-05-19 15:36:26 +00:00
|
|
|
.vertical-tab-button a {
|
2010-09-23 02:11:19 +00:00
|
|
|
display: block;
|
2013-05-19 15:36:26 +00:00
|
|
|
padding: 10px 15px 15px;
|
|
|
|
border-bottom: 1px solid #b3b2ad;
|
|
|
|
background-color: #f2f2f0;
|
|
|
|
text-shadow: 0 1px hsla(0, 0%, 100%, 0.6);
|
|
|
|
text-decoration: none;
|
2009-07-31 19:35:57 +00:00
|
|
|
}
|
2013-05-19 15:36:26 +00:00
|
|
|
.vertical-tab-button.last a {
|
|
|
|
border-bottom: 0;
|
|
|
|
}
|
|
|
|
.vertical-tab-button.selected a,
|
|
|
|
.vertical-tab-button a:hover,
|
|
|
|
.vertical-tab-button a:focus {
|
|
|
|
background: #fcfcfa;
|
|
|
|
text-shadow: none;
|
2009-11-28 09:59:27 +00:00
|
|
|
text-decoration: none;
|
2009-07-31 19:35:57 +00:00
|
|
|
}
|
2013-05-19 15:36:26 +00:00
|
|
|
.vertical-tab-button.selected a {
|
|
|
|
border-bottom-color: #b3b2ad;
|
|
|
|
color: #004f80;
|
2010-09-23 02:11:19 +00:00
|
|
|
}
|
2013-05-19 15:36:26 +00:00
|
|
|
.vertical-tab-button.selected a:hover,
|
|
|
|
.vertical-tab-button.selected a:focus {
|
|
|
|
color: #007ecc;
|
2009-07-31 19:35:57 +00:00
|
|
|
}
|
2013-10-05 07:19:49 +00:00
|
|
|
[data-vertical-tabs-panes] {
|
2013-06-17 21:33:40 +00:00
|
|
|
background-color: #fcfcfa;
|
|
|
|
}
|
2013-10-05 07:19:49 +00:00
|
|
|
.vertical-tabs-panes {
|
2013-05-19 15:36:26 +00:00
|
|
|
margin: 0 0 0 240px; /* LTR */
|
|
|
|
padding: 10px 15px 10px 15px;
|
|
|
|
border-left: 1px solid #a6a5a1; /* LTR */
|
2010-11-19 20:45:04 +00:00
|
|
|
}
|
2013-10-05 07:19:49 +00:00
|
|
|
[dir="rtl"] .vertical-tabs-panes {
|
2013-06-28 08:47:08 +00:00
|
|
|
margin: 0 240px 0 0;
|
|
|
|
border-left: none;
|
|
|
|
border-right: 1px solid #a6a5a1;
|
|
|
|
}
|
2013-05-19 15:36:26 +00:00
|
|
|
.vertical-tabs-panes:after {
|
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.vertical-tabs-pane {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
color: #595959;
|
|
|
|
}
|
|
|
|
.vertical-tab-button strong {
|
|
|
|
font-size: 0.923em;
|
|
|
|
}
|
|
|
|
.vertical-tab-button .summary {
|
|
|
|
display: block;
|
|
|
|
padding-top: 0.4em;
|
|
|
|
color: #666;
|
|
|
|
font-size: 0.846em;
|
|
|
|
}
|
|
|
|
.vertical-tab-button.selected a:focus strong {
|
|
|
|
text-decoration: underline;
|
2009-07-31 19:35:57 +00:00
|
|
|
}
|
2012-11-27 07:06:47 +00:00
|
|
|
.vertical-tabs-pane > summary {
|
2009-07-31 19:35:57 +00:00
|
|
|
display: none;
|
|
|
|
}
|