noui-slider.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. .noUi-background {
  5. background: #f0f0f0;
  6. }
  7. .noUi-target {
  8. background-color: #ebebeb;
  9. border: none;
  10. box-shadow: none;
  11. border-radius: 1rem;
  12. }
  13. .noUi-target.noUi-connect {
  14. box-shadow: none;
  15. }
  16. .noUi-horizontal {
  17. height: 10px;
  18. padding-right: 17px;
  19. }
  20. .noUi-horizontal .noUi-handle {
  21. width: 20px;
  22. height: 20px;
  23. top: -5px;
  24. left: -1px;
  25. cursor: pointer;
  26. }
  27. .noUi-horizontal .noUi-origin {
  28. left: 17px;
  29. right: -17px;
  30. }
  31. .noUi-horizontal.slider-xl {
  32. height: 14px;
  33. }
  34. .noUi-horizontal.slider-xl .noUi-handle {
  35. width: 28px;
  36. height: 28px;
  37. top: -7px;
  38. }
  39. .noUi-horizontal.slider-lg {
  40. height: 12px;
  41. }
  42. .noUi-horizontal.slider-lg .noUi-handle {
  43. width: 24px;
  44. height: 24px;
  45. top: -6px;
  46. }
  47. .noUi-horizontal.slider-sm {
  48. height: 6px;
  49. }
  50. .noUi-horizontal.slider-sm .noUi-handle {
  51. height: 15px;
  52. width: 15px;
  53. right: -2px !important;
  54. }
  55. .noUi-horizontal.slider-xs {
  56. height: 3px;
  57. }
  58. .noUi-horizontal.slider-xs .noUi-handle {
  59. height: 10px;
  60. width: 10px;
  61. top: -4px;
  62. right: -2px !important;
  63. }
  64. .noUi-handle {
  65. box-shadow: none;
  66. border: none;
  67. border-radius: 50%;
  68. background: #fff;
  69. border: 5px solid #5c6bc6;
  70. }
  71. .noUi-handle:after,
  72. .noUi-handle:before {
  73. display: none;
  74. }
  75. .circle-filled .noUi-handle {
  76. background: #5c6bc6;
  77. border-radius: 50%;
  78. }
  79. .circle-filled .noUi-handle:after,
  80. .circle-filled .noUi-handle:before {
  81. display: none;
  82. }
  83. .square .noUi-handle {
  84. background: #5c6bc6;
  85. border-radius: 3px;
  86. }
  87. .square .noUi-handle:before {
  88. display: block;
  89. width: 2px;
  90. height: 10px;
  91. left: 2px;
  92. top: 0px;
  93. }
  94. .square .noUi-handle:after {
  95. display: block;
  96. width: 2px;
  97. height: 10px;
  98. left: 7px;
  99. top: 0px;
  100. }
  101. .square.slider-xl .noUi-handle:before {
  102. left: 5px;
  103. top: 4px;
  104. }
  105. .square.slider-xl .noUi-handle:after {
  106. left: 10px;
  107. top: 4px;
  108. }
  109. .square.slider-lg .noUi-handle:before {
  110. left: 3px;
  111. top: 2px;
  112. }
  113. .square.slider-lg .noUi-handle:after {
  114. left: 8px;
  115. top: 2px;
  116. }
  117. .square.slider-sm .noUi-handle:before {
  118. left: -1px;
  119. top: -1px;
  120. height: 7px;
  121. }
  122. .square.slider-sm .noUi-handle:after {
  123. left: 4px;
  124. top: -1px;
  125. height: 7px;
  126. }
  127. .square.slider-xs .noUi-handle:before {
  128. left: -3px;
  129. top: -3px;
  130. height: 5px;
  131. }
  132. .square.slider-xs .noUi-handle:after {
  133. left: 1px;
  134. top: -3px;
  135. height: 5px;
  136. }
  137. .noUi-connect {
  138. background: #5c6bc6;
  139. box-shadow: none;
  140. }
  141. .noUi-vertical {
  142. display: inline-block;
  143. width: 8px;
  144. height: 150px;
  145. }
  146. .noUi-vertical .noUi-handle {
  147. width: 20px;
  148. height: 20px;
  149. top: -5px;
  150. left: -6px;
  151. }
  152. .noUi-vertical.square .noUi-handle {
  153. background: #5c6bc6;
  154. border-radius: 3px;
  155. }
  156. .noUi-vertical.square .noUi-handle:before {
  157. display: block;
  158. width: 12px;
  159. height: 2px;
  160. left: -1px;
  161. top: 2px;
  162. }
  163. .noUi-vertical.square .noUi-handle:after {
  164. display: block;
  165. width: 12px;
  166. height: 2px;
  167. left: -1px;
  168. top: 7px;
  169. }
  170. .noUi-vertical .noUi-tooltip {
  171. transform: translate(-10%, -50%);
  172. }
  173. .example-val {
  174. font: 400 12px Arial;
  175. color: #888;
  176. display: block;
  177. margin: 15px 0;
  178. }
  179. .noUi-handle:focus {
  180. outline: 0;
  181. }
  182. _:-ms-lang(x),
  183. .slider-select {
  184. flex: 0 0 10%;
  185. max-width: 10%;
  186. }