tab.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .pagetab {
  2. vertical-align: top;
  3. background: #F7F8FD url(pagetab_bg.gif) repeat-x left top;
  4. padding-top: 0;
  5. padding-left: 20px;
  6. height: 22px;
  7. }
  8. .pagetab ul{display: inline;}
  9. .pagetab li {
  10. list-style-type:none;
  11. position: relative;
  12. float: left;
  13. margin-left: -10px;
  14. display: inline;
  15. background: url(pagetab_left.gif) no-repeat left top;
  16. padding: 0 0 0 15px;
  17. height: 20px;
  18. -moz-user-select: none;
  19. }
  20. .pagetab b {
  21. cursor: pointer;
  22. font-weight: normal;
  23. white-space: nowrap;
  24. color: #888;
  25. display: inline;
  26. float: left;
  27. background: url(pagetab_right.gif) no-repeat right top;
  28. padding: 0px 15px 0 0;
  29. line-height: 17px;
  30. height: 20px;
  31. }
  32. .pagetab li.current {
  33. background: url(pagetab_left_active.gif) no-repeat left top;
  34. z-index: 777;
  35. }
  36. .pagetab li.current b {
  37. background: url(pagetab_right_active.gif) no-repeat right top;
  38. font-weight: bold;
  39. color: #123;
  40. line-height: 16px;
  41. }
  42. .pagetab .add{float: left;}
  43. .pagetab .add img.imgPlus{
  44. width:12px;
  45. height:12px;
  46. cursor:pointer;
  47. margin-left: 10px;
  48. border-style : none ;
  49. margin-top:3px;
  50. }
  51. .pagetab .add img.imgDelete{
  52. cursor:pointer;
  53. width:12px;
  54. height:12px;
  55. margin-left: 10px;
  56. margin-top:3px;
  57. border-style : none ;
  58. }