Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
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.

143 lines
3.5 KiB

  1. /*
  2. * Ext JS Library 2.2
  3. * Copyright(c) 2006-2008, Ext JS, LLC.
  4. * licensing@extjs.com
  5. *
  6. * http://extjs.com/license
  7. */
  8. .x-resizable-handle {
  9. position:absolute;
  10. z-index:100;
  11. /* ie needs these */
  12. font-size:1px;
  13. line-height:6px;
  14. overflow:hidden;
  15. background:white;
  16. filter:alpha(opacity=0);
  17. opacity:0;
  18. zoom:1;
  19. }
  20. .x-resizable-handle-east{
  21. width:6px;
  22. cursor:e-resize;
  23. right:0;
  24. top:0;
  25. height:100%;
  26. }
  27. .ext-ie .x-resizable-handle-east {
  28. margin-right:-1px; /*IE rounding error*/
  29. }
  30. .x-resizable-handle-south{
  31. width:100%;
  32. cursor:s-resize;
  33. left:0;
  34. bottom:0;
  35. height:6px;
  36. }
  37. .ext-ie .x-resizable-handle-south {
  38. margin-bottom:-1px; /*IE rounding error*/
  39. }
  40. .x-resizable-handle-west{
  41. width:6px;
  42. cursor:w-resize;
  43. left:0;
  44. top:0;
  45. height:100%;
  46. }
  47. .x-resizable-handle-north{
  48. width:100%;
  49. cursor:n-resize;
  50. left:0;
  51. top:0;
  52. height:6px;
  53. }
  54. .x-resizable-handle-southeast{
  55. width:6px;
  56. cursor:se-resize;
  57. right:0;
  58. bottom:0;
  59. height:6px;
  60. z-index:101;
  61. }
  62. .x-resizable-handle-northwest{
  63. width:6px;
  64. cursor:nw-resize;
  65. left:0;
  66. top:0;
  67. height:6px;
  68. z-index:101;
  69. }
  70. .x-resizable-handle-northeast{
  71. width:6px;
  72. cursor:ne-resize;
  73. right:0;
  74. top:0;
  75. height:6px;
  76. z-index:101;
  77. }
  78. .x-resizable-handle-southwest{
  79. width:6px;
  80. cursor:sw-resize;
  81. left:0;
  82. bottom:0;
  83. height:6px;
  84. z-index:101;
  85. }
  86. .x-resizable-over .x-resizable-handle, .x-resizable-pinned .x-resizable-handle{
  87. filter:alpha(opacity=100);
  88. opacity:1;
  89. }
  90. .x-resizable-over .x-resizable-handle-east, .x-resizable-pinned .x-resizable-handle-east{
  91. background:url(../images/default/sizer/e-handle.gif);
  92. background-position: left;
  93. }
  94. .x-resizable-over .x-resizable-handle-west, .x-resizable-pinned .x-resizable-handle-west{
  95. background:url(../images/default/sizer/e-handle.gif);
  96. background-position: left;
  97. }
  98. .x-resizable-over .x-resizable-handle-south, .x-resizable-pinned .x-resizable-handle-south{
  99. background:url(../images/default/sizer/s-handle.gif);
  100. background-position: top;
  101. }
  102. .x-resizable-over .x-resizable-handle-north, .x-resizable-pinned .x-resizable-handle-north{
  103. background:url(../images/default/sizer/s-handle.gif);
  104. background-position: top;
  105. }
  106. .x-resizable-over .x-resizable-handle-southeast, .x-resizable-pinned .x-resizable-handle-southeast{
  107. background:url(../images/default/sizer/se-handle.gif);
  108. background-position: top left;
  109. }
  110. .x-resizable-over .x-resizable-handle-northwest, .x-resizable-pinned .x-resizable-handle-northwest{
  111. background:url(../images/default/sizer/nw-handle.gif);
  112. background-position:bottom right;
  113. }
  114. .x-resizable-over .x-resizable-handle-northeast, .x-resizable-pinned .x-resizable-handle-northeast{
  115. background:url(../images/default/sizer/ne-handle.gif);
  116. background-position: bottom left;
  117. }
  118. .x-resizable-over .x-resizable-handle-southwest, .x-resizable-pinned .x-resizable-handle-southwest{
  119. background:url(../images/default/sizer/sw-handle.gif);
  120. background-position: top right;
  121. }
  122. .x-resizable-proxy{
  123. border: 1px dashed #3b5a82;
  124. position:absolute;
  125. overflow:hidden;
  126. display:none;
  127. left:0;top:0;
  128. z-index:50000;
  129. }
  130. .x-resizable-overlay{
  131. width:100%;
  132. height:100%;
  133. display:none;
  134. position:absolute;
  135. left:0;
  136. top:0;
  137. background:white;
  138. z-index:200000;
  139. -moz-opacity: 0;
  140. opacity:0;
  141. filter: alpha(opacity=0);
  142. }