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.

149 lines
2.8 KiB

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