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.

133 lines
3.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-tip{
  9. position: absolute;
  10. top: 0;
  11. left:0;
  12. visibility: hidden;
  13. z-index: 20000;
  14. border:0 none;
  15. }
  16. .x-tip .x-tip-close{
  17. background-image: url(../images/default/qtip/close.gif);
  18. height: 15px;
  19. float:right;
  20. width: 15px;
  21. margin:0 0 2px 2px;
  22. cursor:pointer;
  23. display:none;
  24. }
  25. .x-tip .x-tip-tc {
  26. background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -62px;
  27. padding-top:3px;
  28. overflow:hidden;
  29. zoom:1;
  30. }
  31. .x-tip .x-tip-tl {
  32. background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 0;
  33. padding-left:6px;
  34. overflow:hidden;
  35. zoom:1;
  36. }
  37. .x-tip .x-tip-tr {
  38. background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right 0;
  39. padding-right:6px;
  40. overflow:hidden;
  41. zoom:1;
  42. }
  43. .x-tip .x-tip-bc {
  44. background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -121px;
  45. height:3px;
  46. overflow:hidden;
  47. }
  48. .x-tip .x-tip-bl {
  49. background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -59px;
  50. padding-left:6px;
  51. zoom:1;
  52. }
  53. .x-tip .x-tip-br {
  54. background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -59px;
  55. padding-right:6px;
  56. zoom:1;
  57. }
  58. .x-tip .x-tip-mc {
  59. border:0 none;
  60. font: normal 11px tahoma,arial,helvetica,sans-serif;
  61. }
  62. .x-tip .x-tip-ml {
  63. background: #fff url(../images/default/qtip/tip-sprite.gif) no-repeat 0 -124px;
  64. padding-left:6px;
  65. zoom:1;
  66. }
  67. .x-tip .x-tip-mr {
  68. background: transparent url(../images/default/qtip/tip-sprite.gif) no-repeat right -124px;
  69. padding-right:6px;
  70. zoom:1;
  71. }
  72. .ext-ie .x-tip .x-tip-header,.ext-ie .x-tip .x-tip-tc {
  73. font-size:0;
  74. line-height:0;
  75. }
  76. .x-tip .x-tip-header-text {
  77. font: bold 11px tahoma,arial,helvetica,sans-serif;
  78. padding:0;
  79. margin:0 0 2px 0;
  80. color:#444;
  81. }
  82. .x-tip .x-tip-body {
  83. font: normal 11px tahoma,arial,helvetica,sans-serif;
  84. margin:0 !important;
  85. line-height:14px;
  86. color:#444;
  87. padding:0;
  88. }
  89. .x-tip .x-tip-body .loading-indicator {
  90. margin:0;
  91. }
  92. .x-tip-draggable .x-tip-header,.x-tip-draggable .x-tip-header-text {
  93. cursor:move;
  94. }
  95. .x-form-invalid-tip {
  96. }
  97. .x-form-invalid-tip .x-tip-tc {
  98. background: url(../images/default/form/error-tip-corners.gif) repeat-x 0 -12px;
  99. padding-top:6px;
  100. }
  101. .x-form-invalid-tip .x-tip-tl {
  102. background-image: url(../images/default/form/error-tip-corners.gif);
  103. }
  104. .x-form-invalid-tip .x-tip-tr {
  105. background-image: url(../images/default/form/error-tip-corners.gif);
  106. }
  107. .x-form-invalid-tip .x-tip-bc {
  108. background: url(../images/default/form/error-tip-corners.gif) repeat-x 0 -18px;
  109. height:6px;
  110. }
  111. .x-form-invalid-tip .x-tip-bl {
  112. background: url(../images/default/form/error-tip-corners.gif) no-repeat 0 -6px;
  113. }
  114. .x-form-invalid-tip .x-tip-br {
  115. background: url(../images/default/form/error-tip-corners.gif) no-repeat right -6px;
  116. }
  117. .x-form-invalid-tip .x-tip-ml {
  118. background-image: url(../images/default/form/error-tip-corners.gif);
  119. }
  120. .x-form-invalid-tip .x-tip-mr {
  121. background-image: url(../images/default/form/error-tip-corners.gif);
  122. }
  123. .x-form-invalid-tip .x-tip-body {
  124. padding:2px;
  125. }
  126. .x-form-invalid-tip .x-tip-body {
  127. padding-left:24px;
  128. background:transparent url(../images/default/form/exclamation.gif) no-repeat 2px 2px;
  129. }