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.

331 lines
5.1 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. .ext-el-mask {
  8. z-index: 100;
  9. position: absolute;
  10. top:0;
  11. left:0;
  12. -moz-opacity: 0.5;
  13. opacity: .50;
  14. filter: alpha(opacity=50);
  15. width: 100%;
  16. height: 100%;
  17. zoom: 1;
  18. }
  19. .ext-el-mask-msg {
  20. z-index: 20001;
  21. position: absolute;
  22. top: 0;
  23. left: 0;
  24. border:1px solid;
  25. background:repeat-x 0 -16px;
  26. padding:2px;
  27. }
  28. .ext-el-mask-msg div {
  29. padding:5px 10px 5px 10px;
  30. border:1px solid;
  31. cursor:wait;
  32. }
  33. .ext-shim {
  34. position:absolute;
  35. visibility:hidden;
  36. left:0;
  37. top:0;
  38. overflow:hidden;
  39. }
  40. .ext-ie .ext-shim {
  41. filter: alpha(opacity=0);
  42. }
  43. .ext-ie6 .ext-shim {
  44. margin-left: 5px;
  45. margin-top: 3px;
  46. }
  47. .x-mask-loading div {
  48. padding:5px 10px 5px 25px;
  49. background:no-repeat 5px 5px;
  50. line-height:16px;
  51. }
  52. /* class for hiding elements without using display:none */
  53. .x-hidden, .x-hide-offsets {
  54. position:absolute !important;
  55. left:-10000px;
  56. top:-10000px;
  57. visibility:hidden;
  58. }
  59. .x-hide-display {
  60. display:none !important;
  61. }
  62. .x-hide-visibility {
  63. visibility:hidden !important;
  64. }
  65. .x-masked {
  66. overflow: hidden !important;
  67. }
  68. .x-masked-relative {
  69. position: relative !important;
  70. }
  71. .x-masked select, .x-masked object, .x-masked embed {
  72. visibility: hidden;
  73. }
  74. .x-layer {
  75. visibility: hidden;
  76. }
  77. .x-unselectable, .x-unselectable * {
  78. -moz-user-select: none;
  79. -khtml-user-select: none;
  80. -webkit-user-select:ignore;
  81. }
  82. .x-repaint {
  83. zoom: 1;
  84. background-color: transparent;
  85. -moz-outline: none;
  86. outline: none;
  87. }
  88. .x-item-disabled {
  89. cursor: default;
  90. opacity: .6;
  91. -moz-opacity: .6;
  92. filter: alpha(opacity=60);
  93. }
  94. .x-item-disabled * {
  95. cursor: default !important;
  96. }
  97. .x-form-radio-group .x-item-disabled {
  98. filter: none;
  99. }
  100. .x-splitbar-proxy {
  101. position: absolute;
  102. visibility: hidden;
  103. z-index: 20001;
  104. zoom: 1;
  105. line-height: 1px;
  106. font-size: 1px;
  107. overflow: hidden;
  108. }
  109. .x-splitbar-h, .x-splitbar-proxy-h {
  110. cursor: e-resize;
  111. cursor: col-resize;
  112. }
  113. .x-splitbar-v, .x-splitbar-proxy-v {
  114. cursor: s-resize;
  115. cursor: row-resize;
  116. }
  117. .x-color-palette {
  118. width: 150px;
  119. height: 92px;
  120. cursor: pointer;
  121. }
  122. .x-color-palette a {
  123. border: 1px solid;
  124. float: left;
  125. padding: 2px;
  126. text-decoration: none;
  127. -moz-outline: 0 none;
  128. outline: 0 none;
  129. cursor: pointer;
  130. }
  131. .x-color-palette a:hover, .x-color-palette a.x-color-palette-sel {
  132. border: 1px solid;
  133. }
  134. .x-color-palette em {
  135. display: block;
  136. border: 1px solid;
  137. }
  138. .x-color-palette em span {
  139. cursor: pointer;
  140. display: block;
  141. height: 10px;
  142. line-height: 10px;
  143. width: 10px;
  144. }
  145. .x-ie-shadow {
  146. display: none;
  147. position: absolute;
  148. overflow: hidden;
  149. left:0;
  150. top:0;
  151. zoom:1;
  152. }
  153. .x-shadow {
  154. display: none;
  155. position: absolute;
  156. overflow: hidden;
  157. left:0;
  158. top:0;
  159. }
  160. .x-shadow * {
  161. overflow: hidden;
  162. }
  163. .x-shadow * {
  164. padding: 0;
  165. border: 0;
  166. margin: 0;
  167. clear: none;
  168. zoom: 1;
  169. }
  170. /* top bottom */
  171. .x-shadow .xstc, .x-shadow .xsbc {
  172. height: 6px;
  173. float: left;
  174. }
  175. /* corners */
  176. .x-shadow .xstl, .x-shadow .xstr, .x-shadow .xsbl, .x-shadow .xsbr {
  177. width: 6px;
  178. height: 6px;
  179. float: left;
  180. }
  181. /* sides */
  182. .x-shadow .xsc {
  183. width: 100%;
  184. }
  185. .x-shadow .xsml, .x-shadow .xsmr {
  186. width: 6px;
  187. float: left;
  188. height: 100%;
  189. }
  190. .x-shadow .xsmc {
  191. float: left;
  192. height: 100%;
  193. background: transparent;
  194. }
  195. .x-shadow .xst, .x-shadow .xsb {
  196. height: 6px;
  197. overflow: hidden;
  198. width: 100%;
  199. }
  200. .x-shadow .xsml {
  201. background: transparent repeat-y 0 0;
  202. }
  203. .x-shadow .xsmr {
  204. background: transparent repeat-y -6px 0;
  205. }
  206. .x-shadow .xstl {
  207. background: transparent no-repeat 0 0;
  208. }
  209. .x-shadow .xstc {
  210. background: transparent repeat-x 0 -30px;
  211. }
  212. .x-shadow .xstr {
  213. background: transparent repeat-x 0 -18px;
  214. }
  215. .x-shadow .xsbl {
  216. background: transparent no-repeat 0 -12px;
  217. }
  218. .x-shadow .xsbc {
  219. background: transparent repeat-x 0 -36px;
  220. }
  221. .x-shadow .xsbr {
  222. background: transparent repeat-x 0 -6px;
  223. }
  224. .loading-indicator {
  225. background: no-repeat left;
  226. padding-left: 20px;
  227. line-height: 16px;
  228. margin: 3px;
  229. }
  230. .x-text-resize {
  231. position: absolute;
  232. left: -1000px;
  233. top: -1000px;
  234. visibility: hidden;
  235. zoom: 1;
  236. }
  237. .x-drag-overlay {
  238. width: 100%;
  239. height: 100%;
  240. display: none;
  241. position: absolute;
  242. left: 0;
  243. top: 0;
  244. background-image:url(../images/default/s.gif);
  245. z-index: 20000;
  246. }
  247. .x-clear {
  248. clear:both;
  249. height:0;
  250. overflow:hidden;
  251. line-height:0;
  252. font-size:0;
  253. }
  254. .x-spotlight {
  255. z-index: 8999;
  256. position: absolute;
  257. top:0;
  258. left:0;
  259. -moz-opacity: 0.5;
  260. opacity: .50;
  261. filter: alpha(opacity=50);
  262. width:0;
  263. height:0;
  264. zoom: 1;
  265. }
  266. #x-history-frame {
  267. position:absolute;
  268. top:-1px;
  269. left:0;
  270. width:1px;
  271. height:1px;
  272. visibility:hidden;
  273. }
  274. #x-history-field {
  275. position:absolute;
  276. top:0;
  277. left:-1px;
  278. width:1px;
  279. height:1px;
  280. visibility:hidden;
  281. }