Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

tabsheet.css 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. .v-tabsheet-tabs {
  2. height: 48px;
  3. }
  4. .v-tabsheet-spacertd div {
  5. height: 37px;
  6. border: 1px solid #b6bbbc;
  7. background: transparent url(img/tab-bg.png);
  8. padding: 0;
  9. }
  10. .v-tabsheet-scroller {
  11. margin-top: -37px;
  12. float: right;
  13. }
  14. .v-tabsheet-scrollerPrev,
  15. .v-tabsheet-scrollerNext,
  16. .v-tabsheet-scrollerPrev-disabled,
  17. .v-tabsheet-scrollerNext-disabled {
  18. border: none;
  19. width: 12px;
  20. padding: 0;
  21. height: 38px;
  22. opacity: 0.9999;
  23. margin-top: -1px;
  24. }
  25. .v-tabsheet-scrollerNext,
  26. .v-tabsheet-scrollerNext-disabled {
  27. background: transparent url(img/next.png) no-repeat;
  28. }
  29. .v-tabsheet-scrollerPrev,
  30. .v-tabsheet-scrollerPrev-disabled {
  31. background: transparent url(img/prev.png) no-repeat;
  32. }
  33. .v-tabsheet-scrollerPrev:hover,
  34. .v-tabsheet-scrollerNext:hover {
  35. background-position: -24px 0px;
  36. }
  37. .v-tabsheet-scrollerPrev-disabled,
  38. .v-tabsheet-scrollerNext-disabled {
  39. background-position: -12px 0px;
  40. }
  41. .v-tabsheet-scrollerPrev-disabled:hover,
  42. .v-tabsheet-scrollerNext-disabled:hover {
  43. background-position: -12px 0px;
  44. }
  45. .v-tabsheet-tabitem {
  46. border: 1px solid #b6bbbc;
  47. border-right: none;
  48. height: 37px;
  49. padding: 0;
  50. margin-top: 9px;
  51. color: #777f85;
  52. font-size: 15px;
  53. line-height: 18px;
  54. background: #f8f9f9 url(img/tab-bg.png);
  55. }
  56. .v-tabsheet-tabitem .v-caption {
  57. height: 20px;
  58. padding: 9px 15px 8px 15px;
  59. }
  60. .v-tabsheet-tabitem-selected {
  61. border: none;
  62. background: transparent url(../panel/img/top-left.png) no-repeat;
  63. margin: 0;
  64. padding: 0;
  65. height: 48px;
  66. color: #ee5311;
  67. }
  68. .v-tabsheet-tabitem:hover {
  69. color: #4b5257;
  70. }
  71. .v-tabsheet-tabitem-selected:hover {
  72. color: #ee5311;
  73. }
  74. .v-tabsheet-tabitem-selected .v-caption {
  75. background: transparent url(../panel/img/top-right.png) repeat-x right top;
  76. margin: 0 -1px 0 9px;
  77. height: 18px;
  78. padding: 16px 16px 14px 7px;
  79. overflow: visible;
  80. }
  81. .v-tabsheet-caption-close {
  82. margin-left: 3px;
  83. margin-right: -3px;
  84. margin-top: 2px;
  85. font-size: 15px;
  86. width: 15px;
  87. height: 15px;
  88. -webkit-border-radius: 7px;
  89. -moz-border-radius: 7px;
  90. color: #777f85;
  91. line-height: 13px;
  92. }
  93. .v-tabsheet-caption-close:hover {
  94. background: #dce0e0;
  95. }
  96. .v-tabsheet-caption-close:active {
  97. background: #b6bbbc;
  98. color: #fff;
  99. }
  100. .v-tabsheet-content {
  101. border: 1px solid #babfc0;
  102. background-color: #fff;
  103. border-bottom: 1px solid #dee2e3;
  104. border-top: none;
  105. }
  106. .v-tabsheet-hidetabs .v-tabsheet-content {
  107. border-top: 1px solid #b5babb;
  108. }
  109. .v-tabsheet-deco {
  110. height: 10px;
  111. background: transparent url(../panel/img/bottom-right.png) repeat-x right top;
  112. margin-left: 9px;
  113. overflow: visible;
  114. }
  115. .v-tabsheet-deco:before {
  116. display: block;
  117. content: "";
  118. width: 9px;
  119. height: 9px;
  120. margin-left: -9px;
  121. background: transparent url(../panel/img/bottom-left.png) no-repeat;
  122. }
  123. /* Progress indication *
  124. .v-tabsheet-loading .v-tabsheet-tabitem-selected .v-captiontext {
  125. background: transparent url(../../base/common/img/ajax-loader.gif) no-repeat top right;
  126. margin-left: -10px;
  127. padding-left: 10px;
  128. margin-right: -10px;
  129. padding-right: 10px;
  130. margin-top: -12px;
  131. padding-top: 12px;
  132. }*/
  133. /* IE specific styles */
  134. .v-ie6 .v-tabsheet-tabs {
  135. height: 46px;
  136. }
  137. .v-ie6 .v-tabsheet-tabitem-selected {
  138. border: 1px solid #babfc0;
  139. border-bottom: none;
  140. background: #fff;
  141. margin-top: 0;
  142. height: 23px;
  143. padding: 18px 14px 6px 15px;
  144. cursor: default;
  145. color: #ee5311;
  146. }
  147. .v-ie6 .v-tabsheet-tabitem-selected .v-caption {
  148. background: transparent;
  149. padding: 0;
  150. margin: 0;
  151. }
  152. .v-ie .v-tabsheet-content {
  153. border-bottom: none;
  154. }
  155. .v-ie .v-tabsheet-deco {
  156. height: 1px;
  157. background: #babfc0;
  158. overflow: hidden;
  159. margin: 0;
  160. }
  161. .v-ie7 .v-tabsheet-deco,
  162. .v-ie8 .v-tabsheet-deco,
  163. .v-ie9 .v-tabsheet-deco {
  164. width: 100%;
  165. }
  166. /* Light-style */
  167. .v-tabsheet-tabcontainer-light {
  168. height: 32px;
  169. }
  170. .v-tabsheet-tabs-light {
  171. height: 32px;
  172. width: 100%;
  173. overflow:hidden;
  174. background: transparent;
  175. }
  176. .v-tabsheet-tabs-light .v-tabsheet-spacertd div {
  177. height: 31px;
  178. border: none;
  179. border-bottom: 1px solid #b6bbbc;
  180. background: transparent url(img/inline-tab-bg.png) repeat-x;
  181. }
  182. .v-tabsheet-tabs-light .v-tabsheet-tabitem {
  183. border: none;
  184. border-bottom: 1px solid #b6bbbc;
  185. height: 30px;
  186. padding: 0;
  187. margin-top: 0;
  188. color: #656d73;
  189. font-size: 12px;
  190. line-height: normal;
  191. background: transparent url(img/inline-tab-bg.png) repeat-x;
  192. cursor: pointer;
  193. text-shadow: #fff 0 1px 0;
  194. }
  195. .v-tabsheet-tabs-light .v-tabsheet-tabitem .v-caption {
  196. height: 24px;
  197. padding: 8px 10px 0 11px;
  198. background: transparent url(img/inline-tab-border.png) no-repeat;
  199. }
  200. .v-tabsheet-tabs-light .v-tabsheet-tabitemcell-first .v-caption {
  201. margin-left: 5px;
  202. background: transparent;
  203. }
  204. .v-tabsheet-tabs-light .v-tabsheet-tabitemcell-selected + .v-tabsheet-tabitemcell .v-caption,
  205. .v-tabsheet-tabs-light .v-tabsheet-tabitemcell-selected-first + .v-tabsheet-tabitemcell .v-caption {
  206. background: transparent;
  207. }
  208. .v-tabsheet-tabs-light .v-tabsheet-tabitem-selected {
  209. border: none;
  210. background: transparent url(img/inline-tab-right.png) no-repeat right top;
  211. margin: 0;
  212. padding: 0;
  213. height: 32px;
  214. cursor: default;
  215. color: #ee5311;
  216. text-shadow: none;
  217. }
  218. .v-tabsheet-tabs-light .v-tabsheet-tabitem:hover {
  219. color: #4b5257;
  220. }
  221. .v-tabsheet-tabs-light .v-tabsheet-tabitem-selected:hover {
  222. color: #ee5311;
  223. }
  224. .v-tabsheet-tabs-light .v-tabsheet-tabitem-selected .v-caption {
  225. background: transparent url(img/inline-tab-left.png) no-repeat -7px 0;
  226. margin: 0;
  227. height: 23px;
  228. padding: 9px 10px 0 11px;
  229. overflow: visible;
  230. }
  231. .v-tabsheet-tabs-light .v-tabsheet-tabitemcell-first .v-tabsheet-tabitem-selected .v-caption {
  232. background: transparent url(img/inline-tab-left.png) no-repeat -3px 0;
  233. padding-left: 16px;
  234. }
  235. .v-tabsheet-tabs-light .v-tabsheet-caption-close {
  236. margin-top: 0;
  237. text-shadow: none;
  238. }
  239. .v-tabsheet-content-light {
  240. border: none;
  241. background: transparent;
  242. }
  243. .v-tabsheet-light .v-tabsheet-hidetabs .v-tabsheet-content {
  244. border: none;
  245. }
  246. .v-tabsheet-deco-light {
  247. height: 0;
  248. overflow: hidden;
  249. }
  250. .v-tabsheet-deco-light:before {
  251. display: none;
  252. }
  253. /* Scroller */
  254. .v-tabsheet-tabcontainer-light .v-tabsheet-scrollerPrev,
  255. .v-tabsheet-tabcontainer-light .v-tabsheet-scrollerNext {
  256. margin-top: 2px;
  257. height: 34px;
  258. }
  259. .v-tabsheet-tabcontainer-light .v-tabsheet-scrollerPrev-disabled,
  260. .v-tabsheet-tabcontainer-light .v-tabsheet-scrollerNext-disabled {
  261. margin-top: 2px;
  262. height: 34px;
  263. }
  264. /* Progress indication *
  265. .v-tabsheet-loading .v-tabsheet-tabs-light .v-tabsheet-tabitem-selected .v-captiontext {
  266. margin-left: -3px;
  267. padding-left: 3px;
  268. }*/
  269. /* IE specific styles */
  270. .v-ie6 .v-tabsheet-tabs-light,
  271. .v-ie7 .v-tabsheet-tabs-light {
  272. height: 32px;
  273. }
  274. .v-ie6 .v-tabsheet-tabs-light .v-tabsheet-tabitem-selected,
  275. .v-ie7 .v-tabsheet-tabs-light .v-tabsheet-tabitem-selected {
  276. border: none;
  277. background: #fff url(img/inline-tab-right.png) no-repeat right top;
  278. padding: 0;
  279. height: 32px;
  280. }
  281. .v-ie6 .v-tabsheet-tabs-light .v-tabsheet-tabitem-selected .v-caption,
  282. .v-ie7 .v-tabsheet-tabs-light .v-tabsheet-tabitem-selected .v-caption {
  283. background: transparent url(img/inline-tab-left.png) no-repeat -7px 0;
  284. padding: 9px 11px 0 11px;
  285. }
  286. .v-ie .v-tabsheet-deco-light {
  287. height: 0;
  288. }