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.

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