jquery.jscrollpane.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. .jspContainer {
  2. overflow: hidden;
  3. position: relative;
  4. }
  5. .jspPane {
  6. position: absolute;
  7. }
  8. .jspVerticalBar {
  9. background: #f3f3f3;
  10. height: 100%;
  11. position: absolute;
  12. right: 0;
  13. top: 0;
  14. width: 14px;
  15. border-left: 1px solid #000;
  16. }
  17. .jspHorizontalBar {
  18. background: #f3f3f3;
  19. bottom: 0;
  20. height: 14px;
  21. left: 0;
  22. position: absolute;
  23. width: 100%;
  24. border-top: 1px solid #000;
  25. }
  26. .jspCap {
  27. display: none;
  28. }
  29. .jspHorizontalBar .jspCap {
  30. float: left;
  31. }
  32. .jspAllInView .jspTrack {
  33. background: #eee;
  34. box-shadow: none;
  35. }
  36. .jspAllInView .jspDrag {
  37. display: none !important;
  38. }
  39. .jspAllInView .jspArrow {
  40. background-color: #eee;
  41. box-shadow: none;
  42. }
  43. .jspAllInView .jspArrowUp {
  44. background-image: url("../img/ui/widgets/scrollbar-arrow-up-disabled.png");
  45. border-top: 1px solid #525252;
  46. }
  47. .jspAllInView .jspArrowRight {
  48. background-image: url("../img/ui/widgets/scrollbar-arrow-right-disabled.png");
  49. border-left: 1px solid #8b8b8b;
  50. border-right: 1px solid #000;
  51. }
  52. .jspAllInView .jspArrowDown {
  53. background-image: url("../img/ui/widgets/scrollbar-arrow-down-disabled.png");
  54. border-top: 1px solid #8b8b8b;
  55. }
  56. .jspAllInView .jspArrowLeft {
  57. background-image: url("../img/ui/widgets/scrollbar-arrow-left-disabled.png");
  58. border-left: 1px solid #525252;
  59. }
  60. .jspTrack {
  61. background: #acacac;
  62. position: relative;
  63. box-shadow: inset 1px 1px #737373,
  64. inset 2px 2px #8b8b8b,
  65. inset -1px -1px #cdcdcd,
  66. inset -2px -2px #bdbdbd;
  67. }
  68. .jspTrack.disabled {
  69. height: 100% !important;
  70. width: 100% !important;
  71. background: #eee;
  72. }
  73. .jspDrag {
  74. background: #9c9cff;
  75. left: 0;
  76. position: relative;
  77. top: 0;
  78. box-shadow: inset 1px 1px #cdcdff,
  79. inset -1px -1px #6262cd;
  80. }
  81. .jspDrag:active {
  82. background-color: #6262cd;
  83. box-shadow: inset 1px 1px #9c9cff,
  84. inset -1px -1px #31319c;
  85. }
  86. .jspVerticalBar .jspDrag {
  87. border-top: 1px solid #000;
  88. border-bottom: 1px solid #000;
  89. background-image: url("../img/ui/widgets/scroll-vertical-handle.png");
  90. background-position: center;
  91. background-repeat: no-repeat;
  92. }
  93. .jspVerticalBar .jspDrag:active {
  94. background-image: url("../img/ui/widgets/scroll-vertical-handle-active.png");
  95. }
  96. .jspHorizontalBar .jspDrag {
  97. border-left: 1px solid #000;
  98. border-right: 1px solid #000;
  99. background-image: url("../img/ui/widgets/scroll-horizontal-handle.png");
  100. background-position: center;
  101. background-repeat: no-repeat;
  102. }
  103. .jspHorizontalBar .jspDrag:active {
  104. background-image: url("../img/ui/widgets/scroll-horizontal-handle-active.png");
  105. }
  106. .jspHorizontalBar .jspTrack,
  107. .jspHorizontalBar .jspDrag {
  108. float: left;
  109. height: 100%;
  110. }
  111. .jspArrow {
  112. display: block;
  113. height: 14px;
  114. width: 14px;
  115. background-color: #dedede;
  116. background-position: center;
  117. background-repeat: no-repeat;
  118. box-shadow: inset 1px 1px #fffaff,
  119. inset -1px -1px #bdbdbd;
  120. }
  121. .jspArrow.jspActive {
  122. background-color: #737373;
  123. box-shadow: inset -1px -1px #9c9c9c,
  124. inset 1px 1px #525252;
  125. }
  126. .jspArrowUp {
  127. background-image: url("../img/ui/widgets/scrollbar-arrow-up.png");
  128. border-top: 1px solid #000;
  129. }
  130. .jspArrowRight {
  131. background-image: url("../img/ui/widgets/scrollbar-arrow-right.png");
  132. border-left: 1px solid #000;
  133. border-right: 1px solid #000;
  134. }
  135. .jspArrowDown {
  136. background-image: url("../img/ui/widgets/scrollbar-arrow-down.png");
  137. border-top: 1px solid #000;
  138. }
  139. .jspArrowLeft {
  140. background-image: url("../img/ui/widgets/scrollbar-arrow-left.png");
  141. border-left: 1px solid #000;
  142. }
  143. .jspDisabled {
  144. /* When clicking arrow won't do anything */
  145. }
  146. .jspVerticalBar .jspArrow {
  147. height: 14px;
  148. }
  149. .jspHorizontalBar .jspArrow {
  150. float: left;
  151. height: 100%;
  152. width: 14px;
  153. }
  154. .jspVerticalBar .jspArrow:focus {
  155. }
  156. .jspCorner {
  157. position: absolute;
  158. width: 1px;
  159. height: 14px;
  160. right: 0;
  161. bottom: 0;
  162. border-left: 1px solid #000;
  163. }