You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tabsheet.scss 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. @mixin liferay-tabsheet {
  2. .v-tabsheet-content {
  3. border: none;
  4. }
  5. .v-tabsheet-deco {
  6. background: transparent;
  7. }
  8. .v-tabsheet-tabitem {
  9. border: none;
  10. }
  11. .v-tabsheet-tabitem .v-caption {
  12. height: 14px;
  13. padding: 3px 10px;
  14. }
  15. .v-tabsheet-tabitem .v-captiontext {
  16. color: #336699;
  17. font-size: 11px;
  18. font-weight: bold;
  19. text-decoration: underline;
  20. }
  21. .v-tabsheet-tabitem-selected .v-caption {
  22. background: none repeat scroll 0 0 #333;
  23. -webkit-border-radius: 4px;
  24. -moz-border-radius: 4px;
  25. border-radius: 4px;
  26. }
  27. .v-tabsheet-tabitem-selected .v-captiontext {
  28. color: #fff;
  29. text-decoration: none;
  30. text-shadow: -1px -1px #000;
  31. }
  32. .v-tabsheet-tabitem-selected {
  33. position: relative;
  34. }
  35. .v-tabsheet-tabitem-selected:after {
  36. border: 10px solid;
  37. border-bottom-width: 0;
  38. border-color: #333 transparent transparent;
  39. bottom: -6px;
  40. content: '-';
  41. display: block;
  42. height: 0;
  43. left: 50%;
  44. margin-left: -10px;
  45. position: absolute;
  46. text-indent: -9999px;
  47. width: 0;
  48. }
  49. .v-tabsheet-tabs {
  50. height: 35px;
  51. }
  52. .v-tabsheet-tabcontainer,
  53. .v-tabsheet-tabs {
  54. overflow: visible !important;
  55. }
  56. .v-tabsheet-tabitemcell-first .v-tabsheet-tabitem {
  57. border-left: 1px solid #c8c9ca;
  58. -webkit-border-radius: 4px 0 0 4px;
  59. -moz-border-radius: 4px 0 0 4px;
  60. border-radius: 4px 0 0 4px;
  61. }
  62. .v-tabsheet-tabitemcell, .v-tabsheet-spacertd {
  63. vertical-align: top;
  64. }
  65. .v-tabsheet-spacertd div {
  66. height: 28px;
  67. border: 1px solid #c8c9ca;
  68. border-left: none;
  69. -webkit-border-radius: 0 4px 4px 0;
  70. -moz-border-radius: 0 4px 4px 0;
  71. border-radius: 0 4px 4px 0;
  72. padding: 0;
  73. }
  74. .v-tabsheet-tabitem {
  75. height: 20px;
  76. border-top: 1px solid #c8c9ca;
  77. border-bottom: 1px solid #c8c9ca;
  78. padding: 4px;
  79. }
  80. .v-tabsheet-scroller {
  81. float: right;
  82. width: 33px;
  83. height: 28px;
  84. margin-top: -35px;
  85. background-color: #eef0f2;
  86. border: 1px solid #c8c9ca;
  87. border-left: none;
  88. -webkit-border-radius: 0 4px 4px 0;
  89. -moz-border-radius: 0 4px 4px 0;
  90. border-radius: 0 4px 4px 0;
  91. position: relative;
  92. }
  93. .v-tabsheet-scroller button {
  94. padding: 0;
  95. margin-top: 6px;
  96. width: 16px;
  97. height: 16px;
  98. border: none;
  99. background: transparent;
  100. }
  101. .v-tabsheet-scroller .v-tabsheet-scrollerPrev,
  102. .v-tabsheet-scroller .v-tabsheet-scrollerPrev-disabled {
  103. background: transparent url(/html/themes/classic/images/aui/icon_sprite.png) no-repeat -80px -192px;
  104. }
  105. .v-tabsheet-scroller .v-tabsheet-scrollerNext,
  106. .v-tabsheet-scroller .v-tabsheet-scrollerNext-disabled {
  107. background: transparent url(/html/themes/classic/images/aui/icon_sprite.png) no-repeat -48px -192px;
  108. }
  109. .v-tabsheet-scrollerPrev-disabled,
  110. .v-tabsheet-scrollerNext-disabled {
  111. opacity: 0.5;
  112. filter: alpha(opacity=50);
  113. }
  114. .v-tabsheet-caption-close {
  115. background: transparent url(close.png) no-repeat right top;
  116. cursor: default;
  117. float: right;
  118. margin: 3px -1px 0;
  119. overflow: hidden;
  120. text-indent: -999px;
  121. width: 13px;
  122. height: 9px;
  123. }
  124. .v-ff & .v-tabsheet-caption-close{
  125. margin-top: -10px;
  126. }
  127. .v-ff & .v-tabsheet-caption-close:only-child {
  128. margin-top: -1px;
  129. }
  130. }