tabs.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. 
  2. .mini-tabs-scrollCt {
  3. background: #f3f3f3;
  4. border-width:0;
  5. border-bottom-width:1px;
  6. border-color:#D3D3D3;
  7. }
  8. .mini-tabs-position-top .mini-tabs-header
  9. {
  10. margin-top:1px;
  11. }
  12. .mini-tabs-space div {
  13. width:4px;
  14. }
  15. .mini-tabs-space,
  16. .mini-tabs-space2 {
  17. border-bottom-color:#D3D3D3;
  18. }
  19. .mini-tabs .mini-tab {
  20. padding: 4px 14px 5px 14px;
  21. border-radius: 5px 5px 0 0;
  22. background: linear-gradient(to bottom,#F8F8F8 0,#eee 100%);
  23. border-color: #D3D3D3;
  24. color: #879098;
  25. }
  26. .mini-tab-text
  27. {
  28. line-height:13px;
  29. padding:3px 4px 3px 4px;
  30. }
  31. .mini-tabs-body,
  32. .mini-tab-text {
  33. font-size: 14px;
  34. font-weight: normal;
  35. }
  36. .mini-tab .mini-iconfont {
  37. font-size:13px;
  38. line-height: 16px;
  39. text-align:center;
  40. margin-right:2px;
  41. }
  42. .mini-tab-hover {
  43. background:#e2e2e2;
  44. color:#000;
  45. }
  46. .mini-tabs .mini-tab-active,
  47. .mini-tab-active.mini-tab-hover {
  48. position:relative;
  49. border-bottom-color:#fff;
  50. /*background: linear-gradient(to bottom,#F8F8F8 0,#fff 100%);*/
  51. background:#fff;
  52. /*color:#444;*/
  53. color:#000;
  54. border-top-color:transparent;
  55. }
  56. .mini-tab-active {
  57. /*font-weight:bold;*/
  58. color:#000;
  59. }
  60. .mini-tab-close:before
  61. {
  62. display:none;
  63. }
  64. .mini-tab-close, .mini-tab-close-hover, .mini-tab-close:hover {
  65. margin-top:3px;
  66. background: url(images/tabs_icons.png) no-repeat -34px -2px;
  67. vertical-align:top;
  68. position:relative;
  69. left:2px;
  70. }
  71. .mini-tab-close:hover
  72. {
  73. background-color:transparent;
  74. }
  75. .mini-tab-active:before {
  76. content: "";
  77. position: absolute;
  78. width: 100%;
  79. height: 3px;
  80. left: 0;
  81. top: 0px;
  82. background: #28333E;
  83. border-top-left-radius: 3px;
  84. border-top-right-radius: 3px;
  85. }
  86. .mini-tabs-nav,
  87. .mini-tabs-leftnav {
  88. top: 6px;
  89. }
  90. .mini-tabs .mini-tabs-space, .mini-tabs .mini-tabs-space2
  91. {
  92. background:transparent;
  93. border-color:#D3D3D3;
  94. }
  95. /* arrow */
  96. .mini-tabs-leftButton, .mini-tabs-rightButton {
  97. background:none;
  98. font: normal normal normal 16px/24px FontAwesome;
  99. width: 24px;
  100. height: 24px;
  101. border-color:transparent;
  102. color:#000;
  103. text-align:center;
  104. }
  105. a:hover.mini-tabs-leftButton,a:hover.mini-tabs-rightButton
  106. {
  107. background-color:#e2e2e2;
  108. }
  109. .mini-tabs-leftButton:before {
  110. content: "\f048";
  111. }
  112. .mini-tabs-rightButton:before {
  113. content: "\f051";
  114. }
  115. .mini-tabs-buttons
  116. {
  117. padding-top:0;
  118. }
  119. /** tabs-bodys ******************************************************************/
  120. .mini-tabs-bodys {
  121. border-color:transparent;
  122. background:transparent;
  123. }
  124. /* tabsbuttons */
  125. #tabsButtons {
  126. border-left:1px solid #D3D3D3;
  127. height:35px;
  128. padding:6px 7px 4px 7px;
  129. }
  130. .tabsBtn {
  131. font-size:16px;
  132. display:inline-block;
  133. width:24px;
  134. height:24px;
  135. text-align:center;
  136. cursor:pointer;
  137. vertical-align:middle;
  138. color:#575765;
  139. }
  140. .tabsBtn:hover {
  141. background:#e2e2e2;
  142. }