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.

89 lines
2.2 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. /* Shared styles */
  9. .x-slider {
  10. zoom:1;
  11. }
  12. .x-slider-inner {
  13. position:relative;
  14. left:0;
  15. top:0;
  16. overflow:visible;
  17. zoom:1;
  18. }
  19. .x-slider-focus {
  20. position:absolute;
  21. left:0;
  22. top:0;
  23. width:1px;
  24. height:1px;
  25. line-height:1px;
  26. font-size:1px;
  27. -moz-outline:0 none;
  28. outline:0 none;
  29. -moz-user-select: text;
  30. -khtml-user-select: text;
  31. }
  32. /* Horizontal styles */
  33. .x-slider-horz {
  34. padding-left:7px;
  35. background:transparent url(../images/default/slider/slider-bg.png) no-repeat 0 -22px;
  36. }
  37. .x-slider-horz .x-slider-end {
  38. padding-right:7px;
  39. zoom:1;
  40. background:transparent url(../images/default/slider/slider-bg.png) no-repeat right -44px;
  41. }
  42. .x-slider-horz .x-slider-inner {
  43. background:transparent url(../images/default/slider/slider-bg.png) repeat-x 0 0;
  44. height:22px;
  45. }
  46. .x-slider-horz .x-slider-thumb {
  47. width:14px;
  48. height:15px;
  49. position:absolute;
  50. left:0;
  51. top:3px;
  52. background:transparent url(../images/default/slider/slider-thumb.png) no-repeat 0 0;
  53. }
  54. .x-slider-horz .x-slider-thumb-over {
  55. background-position: -14px -15px;
  56. }
  57. .x-slider-horz .x-slider-thumb-drag {
  58. background-position: -28px -30px;
  59. }
  60. /* Vertical styles */
  61. .x-slider-vert {
  62. padding-top:7px;
  63. background:transparent url(../images/default/slider/slider-v-bg.png) no-repeat -44px 0;
  64. width:22px;
  65. }
  66. .x-slider-vert .x-slider-end {
  67. padding-bottom:7px;
  68. zoom:1;
  69. background:transparent url(../images/default/slider/slider-v-bg.png) no-repeat -22px bottom;
  70. }
  71. .x-slider-vert .x-slider-inner {
  72. background:transparent url(../images/default/slider/slider-v-bg.png) repeat-y 0 0;
  73. }
  74. .x-slider-vert .x-slider-thumb {
  75. width:15px;
  76. height:14px;
  77. position:absolute;
  78. left:3px;
  79. bottom:0;
  80. background:transparent url(../images/default/slider/slider-v-thumb.png) no-repeat 0 0;
  81. }
  82. .x-slider-vert .x-slider-thumb-over {
  83. background-position: -15px -14px;
  84. }
  85. .x-slider-vert .x-slider-thumb-drag {
  86. background-position: -30px -28px;
  87. }