Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

tabs.css 991 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /******* TABS ********/
  2. div.box_label_wrapper {
  3. border-bottom: 6px solid #777;
  4. }
  5. div.box_label_body {
  6. height: 22px;
  7. }
  8. ul.box_tabs {
  9. margin: 0px;
  10. padding: 0px;
  11. list-style: none;
  12. }
  13. ul.box_tabs li {
  14. height: 22px;
  15. float:left;
  16. font-size: 12px;
  17. text-decoration: underline;
  18. background-color: #DDD;
  19. margin:0;
  20. margin-left: 4px;
  21. padding:0 0 0 9px;
  22. cursor: pointer;
  23. }
  24. ul.box_tabs a {
  25. display:block;
  26. padding:3px 15px 3px 6px;
  27. text-decoration:none;
  28. }
  29. ul.box_tabs li.box_tab_mouseover {
  30. background-color: #BBB;
  31. }
  32. ul.box_tabs li.box_tab_selected {
  33. /* background:url("../images/ui/rc/tab-left-CCC.gif") no-repeat left top;
  34. background-color: #ABABAB; */
  35. background-color: #777;
  36. background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#777));
  37. background: -moz-linear-gradient(top, #999, #777);
  38. color: #FFF;
  39. font-weight:bold;
  40. }
  41. ul.box_tabs li.box_tab_selected a {
  42. /* background:url("../images/ui/rc/tab-right-CCC.gif") no-repeat right top; */
  43. }