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.

183 lines
5.0 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-toolbar{
  9. border-color:#a9bfd3;
  10. border-style:solid;
  11. border-width:0 0 1px 0;
  12. display: block;
  13. padding:2px;
  14. background:#d0def0 url(../images/default/toolbar/bg.gif) repeat-x top left;
  15. position:relative;
  16. zoom:1;
  17. }
  18. .x-toolbar .x-item-disabled .x-btn-icon {
  19. opacity: .35;
  20. -moz-opacity: .35;
  21. filter: alpha(opacity=35);
  22. }
  23. .x-toolbar td {
  24. vertical-align:middle;
  25. }
  26. .mso .x-toolbar, .x-grid-mso .x-toolbar{
  27. border: 0 none;
  28. background: url(../images/default/grid/mso-hd.gif);
  29. }
  30. .x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label{
  31. white-space: nowrap;
  32. font:normal 11px tahoma, arial, helvetica, sans-serif;
  33. }
  34. .x-toolbar .x-item-disabled {
  35. color:gray;
  36. cursor:default;
  37. opacity:.6;
  38. -moz-opacity:.6;
  39. filter:alpha(opacity=60);
  40. }
  41. .x-toolbar .x-item-disabled * {
  42. color:gray;
  43. cursor:default;
  44. }
  45. .x-toolbar .x-btn-left{
  46. background:none;
  47. }
  48. .x-toolbar .x-btn-right{
  49. background:none;
  50. }
  51. .x-toolbar .x-btn-center{
  52. background:none;
  53. padding:0 0;
  54. }
  55. .x-toolbar .x-btn-menu-text-wrap .x-btn-center button{
  56. padding-right:2px;
  57. }
  58. .ext-gecko .x-toolbar .x-btn-menu-text-wrap .x-btn-center button{
  59. padding-right:0;
  60. }
  61. .x-toolbar .x-btn-menu-arrow-wrap .x-btn-center button{
  62. padding:0 2px;
  63. }
  64. .x-toolbar .x-btn-menu-arrow-wrap .x-btn-center button {
  65. width:12px;
  66. background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat 0 3px;
  67. }
  68. .x-toolbar .x-btn-text-icon .x-btn-menu-arrow-wrap .x-btn-center button {
  69. width:12px;
  70. background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat 0 3px;
  71. }
  72. .x-toolbar .x-btn-over .x-btn-menu-arrow-wrap .x-btn-center button {
  73. background-position: 0 -47px;
  74. }
  75. .x-toolbar .x-btn-over .x-btn-left{
  76. background: url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 0;
  77. }
  78. .x-toolbar .x-btn-over .x-btn-right{
  79. background: url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -21px;
  80. }
  81. .x-toolbar .x-btn-over .x-btn-center{
  82. background: url(../images/default/toolbar/tb-btn-sprite.gif) repeat-x 0 -42px;
  83. }
  84. .x-toolbar .x-btn-click .x-btn-left, .x-toolbar .x-btn-pressed .x-btn-left, .x-toolbar .x-btn-menu-active .x-btn-left{
  85. background: url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -63px;
  86. }
  87. .x-toolbar .x-btn-click .x-btn-right, .x-toolbar .x-btn-pressed .x-btn-right, .x-toolbar .x-btn-menu-active .x-btn-right{
  88. background: url(../images/default/toolbar/tb-btn-sprite.gif) no-repeat 0 -84px;
  89. }
  90. .x-toolbar .x-btn-click .x-btn-center, .x-toolbar .x-btn-pressed .x-btn-center, .x-toolbar .x-btn-menu-active .x-btn-center{
  91. background: url(../images/default/toolbar/tb-btn-sprite.gif) repeat-x 0 -105px;
  92. }
  93. .x-toolbar .x-btn-with-menu .x-btn-center em{
  94. padding-right:8px;
  95. }
  96. .x-toolbar .ytb-text{
  97. padding:2px;
  98. }
  99. .x-toolbar .ytb-sep {
  100. background-image: url(../images/default/grid/grid-blue-split.gif);
  101. background-position: center;
  102. background-repeat: no-repeat;
  103. display: block;
  104. font-size: 1px;
  105. height: 16px;
  106. width:4px;
  107. overflow: hidden;
  108. cursor:default;
  109. margin: 0 2px 0;
  110. border:0;
  111. }
  112. .x-toolbar .ytb-spacer {
  113. width:2px;
  114. }
  115. /* Paging Toolbar */
  116. .x-tbar-page-number{
  117. width:24px;
  118. height:14px;
  119. }
  120. .x-tbar-page-first{
  121. background-image: url(../images/default/grid/page-first.gif) !important;
  122. }
  123. .x-tbar-loading{
  124. background-image: url(../images/default/grid/refresh.gif) !important;
  125. }
  126. .x-tbar-page-last{
  127. background-image: url(../images/default/grid/page-last.gif) !important;
  128. }
  129. .x-tbar-page-next{
  130. background-image: url(../images/default/grid/page-next.gif) !important;
  131. }
  132. .x-tbar-page-prev{
  133. background-image: url(../images/default/grid/page-prev.gif) !important;
  134. }
  135. .x-item-disabled .x-tbar-loading{
  136. background-image: url(../images/default/grid/loading.gif) !important;
  137. }
  138. .x-item-disabled .x-tbar-page-first{
  139. background-image: url(../images/default/grid/page-first-disabled.gif) !important;
  140. }
  141. .x-item-disabled .x-tbar-page-last{
  142. background-image: url(../images/default/grid/page-last-disabled.gif) !important;
  143. }
  144. .x-item-disabled .x-tbar-page-next{
  145. background-image: url(../images/default/grid/page-next-disabled.gif) !important;
  146. }
  147. .x-item-disabled .x-tbar-page-prev{
  148. background-image: url(../images/default/grid/page-prev-disabled.gif) !important;
  149. }
  150. .x-paging-info {
  151. position:absolute;
  152. top:5px;
  153. right: 8px;
  154. color:#444;
  155. }
  156. /* StatusBar */
  157. .x-statusbar .x-status-text {
  158. height: 21px;
  159. line-height: 21px;
  160. padding: 0 4px;
  161. cursor: default;
  162. }
  163. .x-statusbar .x-status-busy {
  164. padding-left: 25px;
  165. background: transparent url(../images/default/grid/loading.gif) no-repeat 3px 3px;
  166. }
  167. .x-statusbar .x-status-text-panel {
  168. border-top: 1px solid #99BBE8;
  169. border-right: 1px solid #fff;
  170. border-bottom: 1px solid #fff;
  171. border-left: 1px solid #99BBE8;
  172. padding: 2px 8px 2px 5px;
  173. }