Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

jquery.nouislider.css 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /* Functional styling;
  2. * These styles are required for noUiSlider to function.
  3. * You don't need to change these rules to apply your design.
  4. */
  5. .noUi-target,
  6. .noUi-target * {
  7. -webkit-touch-callout: none;
  8. -webkit-user-select: none;
  9. -ms-touch-action: none;
  10. touch-action: none;
  11. -ms-user-select: none;
  12. -moz-user-select: none;
  13. -moz-box-sizing: border-box;
  14. box-sizing: border-box;
  15. }
  16. .noUi-target {
  17. position: relative;
  18. direction: ltr;
  19. }
  20. .noUi-base {
  21. width: 100%;
  22. height: 100%;
  23. position: relative;
  24. z-index: 1; /* Fix 401 */
  25. }
  26. .noUi-origin {
  27. position: absolute;
  28. right: 0;
  29. top: 0;
  30. left: 0;
  31. bottom: 0;
  32. }
  33. .noUi-handle {
  34. position: relative;
  35. z-index: 1;
  36. }
  37. .noUi-stacking .noUi-handle {
  38. /* This class is applied to the lower origin when
  39. its values is > 50%. */
  40. z-index: 10;
  41. }
  42. .noUi-state-tap .noUi-origin {
  43. -webkit-transition: left 0.3s, top 0.3s;
  44. transition: left 0.3s, top 0.3s;
  45. }
  46. .noUi-state-drag * {
  47. cursor: inherit !important;
  48. }
  49. /* Painting and performance;
  50. * Browsers can paint handles in their own layer.
  51. */
  52. .noUi-base {
  53. -webkit-transform: translate3d(0,0,0);
  54. transform: translate3d(0,0,0);
  55. }
  56. /* Slider size and handle placement;
  57. */
  58. .noUi-horizontal {
  59. height: 18px;
  60. }
  61. .noUi-horizontal .noUi-handle {
  62. width: 34px;
  63. height: 28px;
  64. left: -17px;
  65. top: -6px;
  66. }
  67. .noUi-vertical {
  68. width: 18px;
  69. }
  70. .noUi-vertical .noUi-handle {
  71. width: 28px;
  72. height: 34px;
  73. left: -6px;
  74. top: -17px;
  75. }
  76. /* Styling;
  77. */
  78. .noUi-background {
  79. background: #FAFAFA;
  80. box-shadow: inset 0 1px 1px #f0f0f0;
  81. }
  82. .noUi-connect {
  83. background: #3FB8AF;
  84. box-shadow: inset 0 0 3px rgba(51,51,51,0.45);
  85. -webkit-transition: background 450ms;
  86. transition: background 450ms;
  87. }
  88. .noUi-origin {
  89. border-radius: 2px;
  90. }
  91. .noUi-target {
  92. border-radius: 4px;
  93. border: 1px solid #D3D3D3;
  94. box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
  95. }
  96. .noUi-target.noUi-connect {
  97. box-shadow: inset 0 0 3px rgba(51,51,51,0.45), 0 3px 6px -5px #BBB;
  98. }
  99. /* Handles and cursors;
  100. */
  101. .noUi-draggable {
  102. cursor: w-resize;
  103. }
  104. .noUi-vertical .noUi-draggable {
  105. cursor: n-resize;
  106. }
  107. .noUi-handle {
  108. border: 1px solid #D9D9D9;
  109. border-radius: 3px;
  110. background: #FFF;
  111. cursor: default;
  112. box-shadow: inset 0 0 1px #FFF,
  113. inset 0 1px 7px #EBEBEB,
  114. 0 3px 6px -3px #BBB;
  115. }
  116. .noUi-active {
  117. box-shadow: inset 0 0 1px #FFF,
  118. inset 0 1px 7px #DDD,
  119. 0 3px 6px -3px #BBB;
  120. }
  121. /* Handle stripes;
  122. */
  123. .noUi-handle:before,
  124. .noUi-handle:after {
  125. content: "";
  126. display: block;
  127. position: absolute;
  128. height: 14px;
  129. width: 1px;
  130. background: #E8E7E6;
  131. left: 14px;
  132. top: 6px;
  133. }
  134. .noUi-handle:after {
  135. left: 17px;
  136. }
  137. .noUi-vertical .noUi-handle:before,
  138. .noUi-vertical .noUi-handle:after {
  139. width: 14px;
  140. height: 1px;
  141. left: 6px;
  142. top: 14px;
  143. }
  144. .noUi-vertical .noUi-handle:after {
  145. top: 17px;
  146. }
  147. /* Disabled state;
  148. */
  149. [disabled].noUi-connect,
  150. [disabled] .noUi-connect {
  151. background: #B8B8B8;
  152. }
  153. [disabled].noUi-origin,
  154. [disabled] .noUi-handle {
  155. cursor: not-allowed;
  156. }