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.

160 lines
3.8 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-btn{
  9. font:normal 11px tahoma, verdana, helvetica;
  10. cursor:pointer;
  11. white-space: nowrap;
  12. }
  13. .x-btn button{
  14. border:0 none;
  15. background:transparent;
  16. font:normal 11px tahoma,verdana,helvetica;
  17. padding-left:3px;
  18. padding-right:3px;
  19. cursor:pointer;
  20. margin:0;
  21. overflow:visible;
  22. width:auto;
  23. -moz-outline:0 none;
  24. outline:0 none;
  25. }
  26. * html .ext-ie .x-btn button {
  27. width:1px;
  28. }
  29. .ext-gecko .x-btn button {
  30. padding-left:0;
  31. padding-right:0;
  32. }
  33. .ext-ie .x-btn button {
  34. padding-top:2px;
  35. }
  36. /*
  37. Predefined css class for buttons with only icon. Add this class (x-btn-icon) and a class with a background-image
  38. to your button for a button with just an icon.
  39. e.g.
  40. .my-class .x-btn-text { background-image: url(foo.gif); }
  41. */
  42. .x-btn-icon .x-btn-center .x-btn-text{
  43. background-position: center;
  44. background-repeat: no-repeat;
  45. height: 16px;
  46. width: 16px;
  47. cursor:pointer;
  48. white-space: nowrap;
  49. padding:0;
  50. }
  51. .x-btn-icon .x-btn-center{
  52. padding:1px;
  53. }
  54. .x-btn em {
  55. font-style:normal;
  56. font-weight:normal;
  57. }
  58. /*
  59. Button class for icon and text. Add this class (x-btn-text-icon) and a class with a background-image
  60. to your button for both text and icon.
  61. */
  62. .x-btn-text-icon .x-btn-center .x-btn-text{
  63. background-position: 0 2px;
  64. background-repeat: no-repeat;
  65. padding-left:18px;
  66. padding-top:3px;
  67. padding-bottom:2px;
  68. padding-right:0;
  69. }
  70. .ext-gecko3 .x-btn-text-icon .x-btn-center .x-btn-text {
  71. padding-top:2px;
  72. }
  73. .x-btn-left, .x-btn-right{
  74. font-size:1px;
  75. line-height:1px;
  76. }
  77. .x-btn-left{
  78. width:3px;
  79. height:21px;
  80. background:url(../images/default/button/btn-sprite.gif) no-repeat 0 0;
  81. }
  82. .x-btn-right{
  83. width:3px;
  84. height:21px;
  85. background:url(../images/default/button/btn-sprite.gif) no-repeat 0 -21px;
  86. }
  87. .x-btn-left i, .x-btn-right i{
  88. display:block;
  89. width:3px;
  90. overflow:hidden;
  91. font-size:1px;
  92. line-height:1px;
  93. }
  94. .x-btn-center{
  95. background:url(../images/default/button/btn-sprite.gif) repeat-x 0 -42px;
  96. vertical-align: middle;
  97. text-align:center;
  98. padding:0 5px;
  99. cursor:pointer;
  100. white-space:nowrap;
  101. }
  102. .x-btn-over .x-btn-left{
  103. background-position:0 -63px;
  104. }
  105. .x-btn-over .x-btn-right{
  106. background-position:0 -84px;
  107. }
  108. .x-btn-over .x-btn-center{
  109. background-position:0 -105px;
  110. }
  111. .x-btn-click .x-btn-center, .x-btn-menu-active .x-btn-center{
  112. background-position:0 -126px;
  113. }
  114. .x-btn-disabled *{
  115. color:gray !important;
  116. cursor:default !important;
  117. }
  118. .x-btn-menu-text-wrap .x-btn-center {
  119. padding:0 3px;
  120. }
  121. .ext-gecko .x-btn-menu-text-wrap .x-btn-center {
  122. padding:0 1px;
  123. }
  124. .x-btn-menu-arrow-wrap .x-btn-center {
  125. padding:0;
  126. }
  127. .x-btn-menu-arrow-wrap .x-btn-center button {
  128. width:12px !important;
  129. height:21px;
  130. padding:0 !important;
  131. display:block;
  132. background:transparent url(../images/default/button/btn-arrow.gif) no-repeat left 3px;
  133. }
  134. .x-btn-with-menu .x-btn-center {
  135. padding-right:2px !important;
  136. }
  137. .x-btn-with-menu .x-btn-center em {
  138. display:block;
  139. background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat right 0;
  140. padding-right:10px;
  141. }
  142. .x-btn-text-icon .x-btn-with-menu .x-btn-center em {
  143. display:block;
  144. background:transparent url(../images/default/toolbar/btn-arrow.gif) no-repeat right 3px;
  145. padding-right:10px;
  146. }
  147. /* Toggle button styles */
  148. .x-btn-pressed .x-btn-left{
  149. background: url(../images/default/button/btn-sprite.gif) no-repeat 0 -63px;
  150. }
  151. .x-btn-pressed .x-btn-right{
  152. background: url(../images/default/button/btn-sprite.gif) no-repeat 0 -84px;
  153. }
  154. .x-btn-pressed .x-btn-center{
  155. background: url(../images/default/button/btn-sprite.gif) repeat-x 0 -126px;
  156. }