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.

207 lines
4.4 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-window {
  9. zoom:1;
  10. }
  11. .x-window .x-resizable-handle {
  12. opacity:0;
  13. -moz-opacity:0;
  14. filter:alpha(opacity=0);
  15. }
  16. .x-window-proxy {
  17. background:#C7DFFC;
  18. border:1px solid #99bbe8;
  19. z-index:12000;
  20. overflow:hidden;
  21. position:absolute;
  22. left:0;top:0;
  23. display:none;
  24. opacity:.5;
  25. -moz-opacity:.5;
  26. filter:alpha(opacity=50);
  27. }
  28. .x-window-header {
  29. overflow:hidden;
  30. zoom:1;
  31. }
  32. .x-window-bwrap {
  33. z-index:1;
  34. position:relative;
  35. zoom:1;
  36. left:0;top:0;
  37. }
  38. .x-window-tl .x-window-header {
  39. color:#15428b;
  40. font:bold 11px tahoma,arial,verdana,sans-serif;
  41. padding:5px 0 4px 0;
  42. }
  43. .x-window-header-text {
  44. cursor:pointer;
  45. }
  46. .x-window-tc {
  47. background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 0;
  48. overflow:hidden;
  49. zoom:1;
  50. }
  51. .x-window-tl {
  52. background: transparent url(../images/default/window/left-corners.png) no-repeat 0 0;
  53. padding-left:6px;
  54. zoom:1;
  55. z-index:1;
  56. position:relative;
  57. }
  58. .x-window-tr {
  59. background: transparent url(../images/default/window/right-corners.png) no-repeat right 0;
  60. padding-right:6px;
  61. }
  62. .x-window-bc {
  63. background: transparent url(../images/default/window/top-bottom.png) repeat-x 0 bottom;
  64. zoom:1;
  65. }
  66. .x-window-bc .x-window-footer {
  67. padding-bottom:6px;
  68. zoom:1;
  69. font-size:0;
  70. line-height:0;
  71. }
  72. .x-window-bl {
  73. background: transparent url(../images/default/window/left-corners.png) no-repeat 0 bottom;
  74. padding-left:6px;
  75. zoom:1;
  76. }
  77. .x-window-br {
  78. background: transparent url(../images/default/window/right-corners.png) no-repeat right bottom;
  79. padding-right:6px;
  80. zoom:1;
  81. }
  82. .x-window-mc {
  83. border:1px solid #99bbe8;
  84. padding:0;
  85. margin:0;
  86. font: normal 11px tahoma,arial,helvetica,sans-serif;
  87. background:#dfe8f6;
  88. }
  89. .x-window-ml {
  90. background: transparent url(../images/default/window/left-right.png) repeat-y 0 0;
  91. padding-left:6px;
  92. zoom:1;
  93. }
  94. .x-window-mr {
  95. background: transparent url(../images/default/window/left-right.png) repeat-y right 0;
  96. padding-right:6px;
  97. zoom:1;
  98. }
  99. .x-window-body {
  100. overflow:hidden;
  101. }
  102. .x-window-bwrap {
  103. overflow:hidden;
  104. }
  105. .x-window-maximized .x-window-bl, .x-window-maximized .x-window-br,
  106. .x-window-maximized .x-window-ml, .x-window-maximized .x-window-mr,
  107. .x-window-maximized .x-window-tl, .x-window-maximized .x-window-tr {
  108. padding:0;
  109. }
  110. .x-window-maximized .x-window-footer {
  111. padding-bottom:0;
  112. }
  113. .x-window-maximized .x-window-tc {
  114. padding-left:3px;
  115. padding-right:3px;
  116. background-color:white;
  117. }
  118. .x-window-maximized .x-window-mc {
  119. border-left:0 none;
  120. border-right:0 none;
  121. }
  122. .x-window-tbar .x-toolbar, .x-window-bbar .x-toolbar {
  123. border-left:0 none;
  124. border-right: 0 none;
  125. }
  126. .x-window-bbar .x-toolbar {
  127. border-top:1px solid #99bbe8;
  128. border-bottom:0 none;
  129. }
  130. .x-window-draggable, .x-window-draggable .x-window-header-text {
  131. cursor:move;
  132. }
  133. .x-window-maximized .x-window-draggable, .x-window-maximized .x-window-draggable .x-window-header-text {
  134. cursor:default;
  135. }
  136. .x-window-body {
  137. background:transparent;
  138. }
  139. .x-panel-ghost .x-window-tl {
  140. border-bottom:1px solid #99bbe8;
  141. }
  142. .x-panel-collapsed .x-window-tl {
  143. border-bottom:1px solid #84a0c4;
  144. }
  145. .x-window-maximized-ct {
  146. overflow:hidden;
  147. }
  148. .x-window-maximized .x-resizable-handle {
  149. display:none;
  150. }
  151. .x-window-sizing-ghost ul {
  152. border:0 none !important;
  153. }
  154. .x-dlg-focus{
  155. -moz-outline:0 none;
  156. outline:0 none;
  157. width:0;
  158. height:0;
  159. overflow:hidden;
  160. position:absolute;
  161. top:0;
  162. left:0;
  163. }
  164. .x-dlg-mask{
  165. z-index:10000;
  166. display:none;
  167. position:absolute;
  168. top:0;
  169. left:0;
  170. -moz-opacity: 0.5;
  171. opacity:.50;
  172. filter: alpha(opacity=50);
  173. background-color:#CCC;
  174. }
  175. body.ext-ie6.x-body-masked select {
  176. visibility:hidden;
  177. }
  178. body.ext-ie6.x-body-masked .x-window select {
  179. visibility:visible;
  180. }
  181. .x-window-plain .x-window-mc {
  182. background: #CAD9EC;
  183. border-right:1px solid #DFE8F6;
  184. border-bottom:1px solid #DFE8F6;
  185. border-top:1px solid #a3bae9;
  186. border-left:1px solid #a3bae9;
  187. }
  188. .x-window-plain .x-window-body {
  189. border-left:1px solid #DFE8F6;
  190. border-top:1px solid #DFE8F6;
  191. border-bottom:1px solid #a3bae9;
  192. border-right:1px solid #a3bae9;
  193. background:transparent !important;
  194. }
  195. body.x-body-masked .x-window-plain .x-window-mc {
  196. background: #C7D6E9;
  197. }