|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
-
- /******* 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 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:url("../images/ui/rc/tab-left-CCC.gif") no-repeat left top;
- background-color: #ABABAB; */
-
- 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 {
- /* background:url("../images/ui/rc/tab-right-CCC.gif") no-repeat right top; */
- }
|