54 lines
No EOL
822 B
CSS
54 lines
No EOL
822 B
CSS
|
|
/******* TABS ********/
|
|
|
|
div.box_label_wrapper {
|
|
border-bottom: 6px solid #777;
|
|
}
|
|
|
|
div.box_label_body {
|
|
height: 22px;
|
|
}
|
|
|
|
ul.box_tabs {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
list-style: none;
|
|
}
|
|
|
|
ul.box_tabs li {
|
|
height: 22px;
|
|
float:left;
|
|
font-size: 12px;
|
|
text-decoration: underline;
|
|
|
|
background-color: #DDD;
|
|
|
|
margin:0;
|
|
margin-left: 4px;
|
|
padding:0 0 0 9px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
ul.box_tabs li a {
|
|
display:block;
|
|
padding:3px 15px 3px 6px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
ul.box_tabs li.box_tab_mouseover {
|
|
background-color: #BBB;
|
|
}
|
|
|
|
ul.box_tabs li.box_tab_selected {
|
|
background-color: #777;
|
|
|
|
background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
|
|
background: -moz-linear-gradient(top, #999, #777);
|
|
|
|
color: #FFF;
|
|
font-weight:bold;
|
|
|
|
}
|
|
ul.box_tabs li.box_tab_selected a {
|
|
color: #fff;
|
|
} |