@syncfusion/ej2-angular-inputs 24.1.41-ngcc → 24.1.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (717) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
  3. package/esm2020/src/color-picker/colorpicker.component.mjs +84 -0
  4. package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
  5. package/esm2020/src/form-validator/form-validator.mjs +193 -0
  6. package/esm2020/src/index.mjs +28 -0
  7. package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
  8. package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +85 -0
  9. package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
  10. package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
  11. package/esm2020/src/numerictextbox/numerictextbox.component.mjs +85 -0
  12. package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
  13. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  14. package/esm2020/src/rating/rating.component.mjs +109 -0
  15. package/esm2020/src/rating/rating.module.mjs +25 -0
  16. package/esm2020/src/signature/signature-all.module.mjs +23 -0
  17. package/esm2020/src/signature/signature.component.mjs +84 -0
  18. package/esm2020/src/signature/signature.module.mjs +25 -0
  19. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  20. package/esm2020/src/slider/slider.component.mjs +84 -0
  21. package/esm2020/src/slider/slider.module.mjs +25 -0
  22. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  23. package/esm2020/src/textbox/textbox.component.mjs +85 -0
  24. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  25. package/esm2020/src/uploader/files.directive.mjs +58 -0
  26. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  27. package/esm2020/src/uploader/uploader.component.mjs +96 -0
  28. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  29. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  30. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1245 -0
  31. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  32. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1245 -0
  33. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  34. package/package.json +26 -12
  35. package/src/color-picker/colorpicker-all.module.d.ts +6 -0
  36. package/src/color-picker/colorpicker.component.d.ts +3 -0
  37. package/src/color-picker/colorpicker.module.d.ts +6 -0
  38. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
  39. package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
  40. package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
  41. package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
  42. package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
  43. package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
  44. package/src/rating/rating-all.module.d.ts +6 -0
  45. package/src/rating/rating.component.d.ts +3 -0
  46. package/src/rating/rating.module.d.ts +6 -0
  47. package/src/signature/signature-all.module.d.ts +6 -0
  48. package/src/signature/signature.component.d.ts +3 -0
  49. package/src/signature/signature.module.d.ts +6 -0
  50. package/src/slider/slider-all.module.d.ts +6 -0
  51. package/src/slider/slider.component.d.ts +3 -0
  52. package/src/slider/slider.module.d.ts +6 -0
  53. package/src/textbox/textbox-all.module.d.ts +6 -0
  54. package/src/textbox/textbox.component.d.ts +3 -0
  55. package/src/textbox/textbox.module.d.ts +6 -0
  56. package/src/uploader/files.directive.d.ts +5 -0
  57. package/src/uploader/uploader-all.module.d.ts +6 -0
  58. package/src/uploader/uploader.component.d.ts +3 -0
  59. package/src/uploader/uploader.module.d.ts +7 -0
  60. package/styles/bootstrap-dark.css +7321 -1
  61. package/styles/bootstrap.css +7300 -1
  62. package/styles/bootstrap4.css +7454 -1
  63. package/styles/bootstrap5-dark.css +7618 -1
  64. package/styles/bootstrap5.css +7618 -1
  65. package/styles/color-picker/_all.scss +2 -0
  66. package/styles/color-picker/_bootstrap-dark-definition.scss +131 -0
  67. package/styles/color-picker/_bootstrap-definition.scss +128 -0
  68. package/styles/color-picker/_bootstrap4-definition.scss +127 -0
  69. package/styles/color-picker/_bootstrap5-dark-definition.scss +1 -0
  70. package/styles/color-picker/_bootstrap5-definition.scss +133 -0
  71. package/styles/color-picker/_fabric-dark-definition.scss +131 -0
  72. package/styles/color-picker/_fabric-definition.scss +127 -0
  73. package/styles/color-picker/_fluent-dark-definition.scss +1 -0
  74. package/styles/color-picker/_fluent-definition.scss +133 -0
  75. package/styles/color-picker/_fusionnew-definition.scss +133 -0
  76. package/styles/color-picker/_highcontrast-definition.scss +127 -0
  77. package/styles/color-picker/_highcontrast-light-definition.scss +130 -0
  78. package/styles/color-picker/_layout.scss +1340 -0
  79. package/styles/color-picker/_material-dark-definition.scss +135 -0
  80. package/styles/color-picker/_material-definition.scss +130 -0
  81. package/styles/color-picker/_material3-dark-definition.scss +1 -0
  82. package/styles/color-picker/_material3-definition.scss +141 -0
  83. package/styles/color-picker/_tailwind-dark-definition.scss +1 -0
  84. package/styles/color-picker/_tailwind-definition.scss +132 -0
  85. package/styles/color-picker/_theme.scss +191 -0
  86. package/styles/color-picker/bootstrap-dark.css +745 -1
  87. package/styles/color-picker/bootstrap-dark.scss +11 -1
  88. package/styles/color-picker/bootstrap.css +745 -1
  89. package/styles/color-picker/bootstrap.scss +11 -1
  90. package/styles/color-picker/bootstrap4.css +828 -1
  91. package/styles/color-picker/bootstrap4.scss +11 -1
  92. package/styles/color-picker/bootstrap5-dark.css +809 -1
  93. package/styles/color-picker/bootstrap5-dark.scss +11 -1
  94. package/styles/color-picker/bootstrap5.css +809 -1
  95. package/styles/color-picker/bootstrap5.scss +11 -1
  96. package/styles/color-picker/fabric-dark.css +745 -1
  97. package/styles/color-picker/fabric-dark.scss +11 -1
  98. package/styles/color-picker/fabric.css +750 -1
  99. package/styles/color-picker/fabric.scss +11 -1
  100. package/styles/color-picker/fluent-dark.css +766 -1
  101. package/styles/color-picker/fluent-dark.scss +11 -1
  102. package/styles/color-picker/fluent.css +766 -1
  103. package/styles/color-picker/fluent.scss +11 -1
  104. package/styles/color-picker/highcontrast-light.css +745 -1
  105. package/styles/color-picker/highcontrast-light.scss +11 -1
  106. package/styles/color-picker/highcontrast.css +745 -1
  107. package/styles/color-picker/highcontrast.scss +11 -1
  108. package/styles/color-picker/icons/_bootstrap-dark.scss +9 -0
  109. package/styles/color-picker/icons/_bootstrap.scss +9 -0
  110. package/styles/color-picker/icons/_bootstrap4.scss +9 -0
  111. package/styles/color-picker/icons/_bootstrap5-dark.scss +1 -0
  112. package/styles/color-picker/icons/_bootstrap5.scss +9 -0
  113. package/styles/color-picker/icons/_fabric-dark.scss +9 -0
  114. package/styles/color-picker/icons/_fabric.scss +9 -0
  115. package/styles/color-picker/icons/_fluent-dark.scss +1 -0
  116. package/styles/color-picker/icons/_fluent.scss +9 -0
  117. package/styles/color-picker/icons/_fusionnew.scss +9 -0
  118. package/styles/color-picker/icons/_highcontrast-light.scss +9 -0
  119. package/styles/color-picker/icons/_highcontrast.scss +9 -0
  120. package/styles/color-picker/icons/_material-dark.scss +9 -0
  121. package/styles/color-picker/icons/_material.scss +9 -0
  122. package/styles/color-picker/icons/_material3-dark.scss +1 -0
  123. package/styles/color-picker/icons/_material3.scss +9 -0
  124. package/styles/color-picker/icons/_tailwind-dark.scss +9 -0
  125. package/styles/color-picker/icons/_tailwind.scss +9 -0
  126. package/styles/color-picker/material-dark.css +751 -1
  127. package/styles/color-picker/material-dark.scss +11 -1
  128. package/styles/color-picker/material.css +772 -1
  129. package/styles/color-picker/material.scss +11 -1
  130. package/styles/color-picker/material3-dark.css +897 -1
  131. package/styles/color-picker/material3-dark.scss +11 -1
  132. package/styles/color-picker/material3.css +953 -1
  133. package/styles/color-picker/material3.scss +11 -1
  134. package/styles/color-picker/tailwind-dark.css +786 -1
  135. package/styles/color-picker/tailwind-dark.scss +11 -1
  136. package/styles/color-picker/tailwind.css +786 -1
  137. package/styles/color-picker/tailwind.scss +11 -1
  138. package/styles/data-form/_all.scss +2 -0
  139. package/styles/data-form/_bootstrap-dark-definition.scss +42 -0
  140. package/styles/data-form/_bootstrap-definition.scss +41 -0
  141. package/styles/data-form/_bootstrap4-definition.scss +41 -0
  142. package/styles/data-form/_bootstrap5-dark-definition.scss +1 -0
  143. package/styles/data-form/_bootstrap5-definition.scss +41 -0
  144. package/styles/data-form/_fabric-dark-definition.scss +41 -0
  145. package/styles/data-form/_fabric-definition.scss +41 -0
  146. package/styles/data-form/_fluent-dark-definition.scss +1 -0
  147. package/styles/data-form/_fluent-definition.scss +41 -0
  148. package/styles/data-form/_fusionnew-definition.scss +41 -0
  149. package/styles/data-form/_highcontrast-definition.scss +41 -0
  150. package/styles/data-form/_highcontrast-light-definition.scss +41 -0
  151. package/styles/data-form/_layout.scss +223 -0
  152. package/styles/data-form/_material-dark-definition.scss +41 -0
  153. package/styles/data-form/_material-definition.scss +42 -0
  154. package/styles/data-form/_material3-dark-definition.scss +1 -0
  155. package/styles/data-form/_material3-definition.scss +41 -0
  156. package/styles/data-form/_tailwind-dark-definition.scss +1 -0
  157. package/styles/data-form/_tailwind-definition.scss +41 -0
  158. package/styles/data-form/_theme.scss +38 -0
  159. package/styles/data-form/bootstrap-dark.css +240 -1
  160. package/styles/data-form/bootstrap-dark.scss +3 -1
  161. package/styles/data-form/bootstrap.css +240 -1
  162. package/styles/data-form/bootstrap.scss +3 -1
  163. package/styles/data-form/bootstrap4.css +240 -1
  164. package/styles/data-form/bootstrap4.scss +3 -1
  165. package/styles/data-form/bootstrap5-dark.css +240 -1
  166. package/styles/data-form/bootstrap5-dark.scss +3 -1
  167. package/styles/data-form/bootstrap5.css +240 -1
  168. package/styles/data-form/bootstrap5.scss +3 -1
  169. package/styles/data-form/fabric-dark.css +240 -1
  170. package/styles/data-form/fabric-dark.scss +3 -1
  171. package/styles/data-form/fabric.css +240 -1
  172. package/styles/data-form/fabric.scss +3 -1
  173. package/styles/data-form/fluent-dark.css +240 -1
  174. package/styles/data-form/fluent-dark.scss +3 -1
  175. package/styles/data-form/fluent.css +240 -1
  176. package/styles/data-form/fluent.scss +3 -1
  177. package/styles/data-form/highcontrast-light.css +240 -1
  178. package/styles/data-form/highcontrast-light.scss +3 -1
  179. package/styles/data-form/highcontrast.css +240 -1
  180. package/styles/data-form/highcontrast.scss +3 -1
  181. package/styles/data-form/material-dark.css +240 -1
  182. package/styles/data-form/material-dark.scss +3 -1
  183. package/styles/data-form/material.css +240 -1
  184. package/styles/data-form/material.scss +3 -1
  185. package/styles/data-form/material3-dark.css +295 -1
  186. package/styles/data-form/material3-dark.scss +3 -1
  187. package/styles/data-form/material3.css +351 -1
  188. package/styles/data-form/material3.scss +3 -1
  189. package/styles/data-form/tailwind-dark.css +240 -1
  190. package/styles/data-form/tailwind-dark.scss +3 -1
  191. package/styles/data-form/tailwind.css +240 -1
  192. package/styles/data-form/tailwind.scss +3 -1
  193. package/styles/fabric-dark.css +7250 -1
  194. package/styles/fabric.css +7255 -1
  195. package/styles/fluent-dark.css +7399 -1
  196. package/styles/fluent.css +7399 -1
  197. package/styles/highcontrast-light.css +7566 -1
  198. package/styles/highcontrast.css +7566 -1
  199. package/styles/input/_all.scss +3 -0
  200. package/styles/input/_bootstrap-dark-definition.scss +329 -0
  201. package/styles/input/_bootstrap-definition.scss +320 -0
  202. package/styles/input/_bootstrap4-definition.scss +325 -0
  203. package/styles/input/_bootstrap5-dark-definition.scss +1 -0
  204. package/styles/input/_bootstrap5-definition.scss +336 -0
  205. package/styles/input/_definition.scss +232 -0
  206. package/styles/input/_fabric-dark-definition.scss +319 -0
  207. package/styles/input/_fabric-definition.scss +311 -0
  208. package/styles/input/_fluent-dark-definition.scss +1 -0
  209. package/styles/input/_fluent-definition.scss +338 -0
  210. package/styles/input/_fusionnew-definition.scss +336 -0
  211. package/styles/input/_highcontrast-definition.scss +312 -0
  212. package/styles/input/_highcontrast-light-definition.scss +320 -0
  213. package/styles/input/_layout.scss +11364 -0
  214. package/styles/input/_material-dark-definition.scss +573 -0
  215. package/styles/input/_material-definition.scss +573 -0
  216. package/styles/input/_material3-dark-definition.scss +1 -0
  217. package/styles/input/_material3-definition.scss +548 -0
  218. package/styles/input/_responsive.scss +1 -0
  219. package/styles/input/_tailwind-dark-definition.scss +1 -0
  220. package/styles/input/_tailwind-definition.scss +335 -0
  221. package/styles/input/_theme.scss +4284 -0
  222. package/styles/input/bootstrap-dark.css +4652 -1
  223. package/styles/input/bootstrap-dark.scss +4 -1
  224. package/styles/input/bootstrap.css +4652 -1
  225. package/styles/input/bootstrap.scss +4 -1
  226. package/styles/input/bootstrap4.css +4634 -1
  227. package/styles/input/bootstrap4.scss +4 -1
  228. package/styles/input/bootstrap5-dark.css +4745 -1
  229. package/styles/input/bootstrap5-dark.scss +4 -1
  230. package/styles/input/bootstrap5.css +4745 -1
  231. package/styles/input/bootstrap5.scss +4 -1
  232. package/styles/input/fabric-dark.css +4572 -1
  233. package/styles/input/fabric-dark.scss +4 -1
  234. package/styles/input/fabric.css +4572 -1
  235. package/styles/input/fabric.scss +4 -1
  236. package/styles/input/fluent-dark.css +4617 -1
  237. package/styles/input/fluent-dark.scss +4 -1
  238. package/styles/input/fluent.css +4617 -1
  239. package/styles/input/fluent.scss +4 -1
  240. package/styles/input/highcontrast-light.css +4846 -1
  241. package/styles/input/highcontrast-light.scss +4 -1
  242. package/styles/input/highcontrast.css +4846 -1
  243. package/styles/input/highcontrast.scss +4 -1
  244. package/styles/input/icons/_bootstrap-dark.scss +17 -0
  245. package/styles/input/icons/_bootstrap.scss +17 -0
  246. package/styles/input/icons/_bootstrap4.scss +17 -0
  247. package/styles/input/icons/_bootstrap5-dark.scss +1 -0
  248. package/styles/input/icons/_bootstrap5.scss +17 -0
  249. package/styles/input/icons/_fabric-dark.scss +17 -0
  250. package/styles/input/icons/_fabric.scss +17 -0
  251. package/styles/input/icons/_fluent-dark.scss +1 -0
  252. package/styles/input/icons/_fluent.scss +17 -0
  253. package/styles/input/icons/_fusionnew.scss +17 -0
  254. package/styles/input/icons/_highcontrast-light.scss +17 -0
  255. package/styles/input/icons/_highcontrast.scss +17 -0
  256. package/styles/input/icons/_material-dark.scss +49 -0
  257. package/styles/input/icons/_material.scss +49 -0
  258. package/styles/input/icons/_material3-dark.scss +1 -0
  259. package/styles/input/icons/_material3.scss +17 -0
  260. package/styles/input/icons/_tailwind-dark.scss +1 -0
  261. package/styles/input/icons/_tailwind.scss +17 -0
  262. package/styles/input/material-dark.css +12567 -1
  263. package/styles/input/material-dark.scss +4 -1
  264. package/styles/input/material.css +12575 -1
  265. package/styles/input/material.scss +4 -1
  266. package/styles/input/material3-dark.css +12444 -1
  267. package/styles/input/material3-dark.scss +4 -1
  268. package/styles/input/material3.css +12500 -1
  269. package/styles/input/material3.scss +4 -1
  270. package/styles/input/tailwind-dark.css +4588 -1
  271. package/styles/input/tailwind-dark.scss +4 -1
  272. package/styles/input/tailwind.css +4588 -1
  273. package/styles/input/tailwind.scss +4 -1
  274. package/styles/maskedtextbox/_all.scss +2 -0
  275. package/styles/maskedtextbox/_bootstrap-dark-definition.scss +7 -0
  276. package/styles/maskedtextbox/_bootstrap-definition.scss +4 -0
  277. package/styles/maskedtextbox/_bootstrap4-definition.scss +4 -0
  278. package/styles/maskedtextbox/_bootstrap5-dark-definition.scss +1 -0
  279. package/styles/maskedtextbox/_bootstrap5-definition.scss +7 -0
  280. package/styles/maskedtextbox/_fabric-dark-definition.scss +7 -0
  281. package/styles/maskedtextbox/_fabric-definition.scss +4 -0
  282. package/styles/maskedtextbox/_fluent-dark-definition.scss +1 -0
  283. package/styles/maskedtextbox/_fluent-definition.scss +7 -0
  284. package/styles/maskedtextbox/_fusionnew-definition.scss +7 -0
  285. package/styles/maskedtextbox/_highcontrast-definition.scss +4 -0
  286. package/styles/maskedtextbox/_highcontrast-light-definition.scss +7 -0
  287. package/styles/maskedtextbox/_layout.scss +33 -0
  288. package/styles/maskedtextbox/_material-dark-definition.scss +7 -0
  289. package/styles/maskedtextbox/_material-definition.scss +4 -0
  290. package/styles/maskedtextbox/_material3-dark-definition.scss +1 -0
  291. package/styles/maskedtextbox/_material3-definition.scss +4 -0
  292. package/styles/maskedtextbox/_tailwind-dark-definition.scss +1 -0
  293. package/styles/maskedtextbox/_tailwind-definition.scss +7 -0
  294. package/styles/maskedtextbox/_theme.scss +15 -0
  295. package/styles/maskedtextbox/bootstrap-dark.css +34 -1
  296. package/styles/maskedtextbox/bootstrap-dark.scss +4 -1
  297. package/styles/maskedtextbox/bootstrap.css +14 -1
  298. package/styles/maskedtextbox/bootstrap.scss +4 -1
  299. package/styles/maskedtextbox/bootstrap4.css +34 -1
  300. package/styles/maskedtextbox/bootstrap4.scss +4 -1
  301. package/styles/maskedtextbox/bootstrap5-dark.css +34 -1
  302. package/styles/maskedtextbox/bootstrap5-dark.scss +4 -1
  303. package/styles/maskedtextbox/bootstrap5.css +34 -1
  304. package/styles/maskedtextbox/bootstrap5.scss +4 -1
  305. package/styles/maskedtextbox/fabric-dark.css +34 -1
  306. package/styles/maskedtextbox/fabric-dark.scss +4 -1
  307. package/styles/maskedtextbox/fabric.css +34 -1
  308. package/styles/maskedtextbox/fabric.scss +4 -1
  309. package/styles/maskedtextbox/fluent-dark.css +27 -1
  310. package/styles/maskedtextbox/fluent-dark.scss +4 -1
  311. package/styles/maskedtextbox/fluent.css +27 -1
  312. package/styles/maskedtextbox/fluent.scss +4 -1
  313. package/styles/maskedtextbox/highcontrast-light.css +34 -1
  314. package/styles/maskedtextbox/highcontrast-light.scss +4 -1
  315. package/styles/maskedtextbox/highcontrast.css +34 -1
  316. package/styles/maskedtextbox/highcontrast.scss +4 -1
  317. package/styles/maskedtextbox/material-dark.css +40 -1
  318. package/styles/maskedtextbox/material-dark.scss +4 -1
  319. package/styles/maskedtextbox/material.css +48 -1
  320. package/styles/maskedtextbox/material.scss +4 -1
  321. package/styles/maskedtextbox/material3-dark.css +103 -1
  322. package/styles/maskedtextbox/material3-dark.scss +4 -1
  323. package/styles/maskedtextbox/material3.css +159 -1
  324. package/styles/maskedtextbox/material3.scss +4 -1
  325. package/styles/maskedtextbox/tailwind-dark.css +34 -1
  326. package/styles/maskedtextbox/tailwind-dark.scss +4 -1
  327. package/styles/maskedtextbox/tailwind.css +34 -1
  328. package/styles/maskedtextbox/tailwind.scss +4 -1
  329. package/styles/material-dark.css +15418 -1
  330. package/styles/material.css +15475 -1
  331. package/styles/material3-dark.css +15492 -1
  332. package/styles/material3-dark.scss +1 -0
  333. package/styles/material3.css +15548 -1
  334. package/styles/material3.scss +1 -0
  335. package/styles/numerictextbox/_all.scss +2 -0
  336. package/styles/numerictextbox/_bootstrap-dark-definition.scss +6 -0
  337. package/styles/numerictextbox/_bootstrap-definition.scss +3 -0
  338. package/styles/numerictextbox/_bootstrap4-definition.scss +3 -0
  339. package/styles/numerictextbox/_bootstrap5-dark-definition.scss +1 -0
  340. package/styles/numerictextbox/_bootstrap5-definition.scss +3 -0
  341. package/styles/numerictextbox/_fabric-dark-definition.scss +6 -0
  342. package/styles/numerictextbox/_fabric-definition.scss +3 -0
  343. package/styles/numerictextbox/_fluent-dark-definition.scss +1 -0
  344. package/styles/numerictextbox/_fluent-definition.scss +5 -0
  345. package/styles/numerictextbox/_fusionnew-definition.scss +3 -0
  346. package/styles/numerictextbox/_highcontrast-definition.scss +3 -0
  347. package/styles/numerictextbox/_highcontrast-light-definition.scss +6 -0
  348. package/styles/numerictextbox/_layout.scss +30 -0
  349. package/styles/numerictextbox/_material-dark-definition.scss +6 -0
  350. package/styles/numerictextbox/_material-definition.scss +3 -0
  351. package/styles/numerictextbox/_material3-dark-definition.scss +1 -0
  352. package/styles/numerictextbox/_material3-definition.scss +4 -0
  353. package/styles/numerictextbox/_tailwind-dark-definition.scss +1 -0
  354. package/styles/numerictextbox/_tailwind-definition.scss +3 -0
  355. package/styles/numerictextbox/_theme.scss +39 -0
  356. package/styles/numerictextbox/bootstrap-dark.css +52 -1
  357. package/styles/numerictextbox/bootstrap-dark.scss +5 -1
  358. package/styles/numerictextbox/bootstrap.css +52 -1
  359. package/styles/numerictextbox/bootstrap.scss +5 -1
  360. package/styles/numerictextbox/bootstrap4.css +48 -1
  361. package/styles/numerictextbox/bootstrap4.scss +5 -1
  362. package/styles/numerictextbox/bootstrap5-dark.css +48 -1
  363. package/styles/numerictextbox/bootstrap5-dark.scss +5 -1
  364. package/styles/numerictextbox/bootstrap5.css +48 -1
  365. package/styles/numerictextbox/bootstrap5.scss +5 -1
  366. package/styles/numerictextbox/fabric-dark.css +48 -1
  367. package/styles/numerictextbox/fabric-dark.scss +5 -1
  368. package/styles/numerictextbox/fabric.css +48 -1
  369. package/styles/numerictextbox/fabric.scss +5 -1
  370. package/styles/numerictextbox/fluent-dark.css +59 -1
  371. package/styles/numerictextbox/fluent-dark.scss +5 -1
  372. package/styles/numerictextbox/fluent.css +59 -1
  373. package/styles/numerictextbox/fluent.scss +5 -1
  374. package/styles/numerictextbox/highcontrast-light.css +48 -1
  375. package/styles/numerictextbox/highcontrast-light.scss +5 -1
  376. package/styles/numerictextbox/highcontrast.css +48 -1
  377. package/styles/numerictextbox/highcontrast.scss +5 -1
  378. package/styles/numerictextbox/icons/_bootstrap-dark.scss +11 -0
  379. package/styles/numerictextbox/icons/_bootstrap.scss +11 -0
  380. package/styles/numerictextbox/icons/_bootstrap4.scss +11 -0
  381. package/styles/numerictextbox/icons/_bootstrap5-dark.scss +1 -0
  382. package/styles/numerictextbox/icons/_bootstrap5.scss +11 -0
  383. package/styles/numerictextbox/icons/_fabric-dark.scss +11 -0
  384. package/styles/numerictextbox/icons/_fabric.scss +11 -0
  385. package/styles/numerictextbox/icons/_fluent-dark.scss +1 -0
  386. package/styles/numerictextbox/icons/_fluent.scss +11 -0
  387. package/styles/numerictextbox/icons/_fusionnew.scss +11 -0
  388. package/styles/numerictextbox/icons/_highcontrast-light.scss +11 -0
  389. package/styles/numerictextbox/icons/_highcontrast.scss +11 -0
  390. package/styles/numerictextbox/icons/_material-dark.scss +11 -0
  391. package/styles/numerictextbox/icons/_material.scss +11 -0
  392. package/styles/numerictextbox/icons/_material3-dark.scss +1 -0
  393. package/styles/numerictextbox/icons/_material3.scss +11 -0
  394. package/styles/numerictextbox/icons/_tailwind-dark.scss +1 -0
  395. package/styles/numerictextbox/icons/_tailwind.scss +11 -0
  396. package/styles/numerictextbox/material-dark.css +54 -1
  397. package/styles/numerictextbox/material-dark.scss +5 -1
  398. package/styles/numerictextbox/material.css +62 -1
  399. package/styles/numerictextbox/material.scss +5 -1
  400. package/styles/numerictextbox/material3-dark.css +117 -1
  401. package/styles/numerictextbox/material3-dark.scss +5 -1
  402. package/styles/numerictextbox/material3.css +173 -1
  403. package/styles/numerictextbox/material3.scss +5 -1
  404. package/styles/numerictextbox/tailwind-dark.css +48 -1
  405. package/styles/numerictextbox/tailwind-dark.scss +5 -1
  406. package/styles/numerictextbox/tailwind.css +48 -1
  407. package/styles/numerictextbox/tailwind.scss +5 -1
  408. package/styles/rating/_all.scss +2 -0
  409. package/styles/rating/_bootstrap-dark-definition.scss +47 -0
  410. package/styles/rating/_bootstrap-definition.scss +47 -0
  411. package/styles/rating/_bootstrap4-definition.scss +47 -0
  412. package/styles/rating/_bootstrap5-dark-definition.scss +1 -0
  413. package/styles/rating/_bootstrap5-definition.scss +47 -0
  414. package/styles/rating/_fabric-dark-definition.scss +47 -0
  415. package/styles/rating/_fabric-definition.scss +47 -0
  416. package/styles/rating/_fluent-dark-definition.scss +1 -0
  417. package/styles/rating/_fluent-definition.scss +47 -0
  418. package/styles/rating/_fusionnew-definition.scss +47 -0
  419. package/styles/rating/_highcontrast-definition.scss +47 -0
  420. package/styles/rating/_highcontrast-light-definition.scss +47 -0
  421. package/styles/rating/_layout.scss +221 -0
  422. package/styles/rating/_material-dark-definition.scss +47 -0
  423. package/styles/rating/_material-definition.scss +47 -0
  424. package/styles/rating/_material3-dark-definition.scss +1 -0
  425. package/styles/rating/_material3-definition.scss +47 -0
  426. package/styles/rating/_tailwind-dark-definition.scss +1 -0
  427. package/styles/rating/_tailwind-definition.scss +47 -0
  428. package/styles/rating/_theme.scss +198 -0
  429. package/styles/rating/bootstrap-dark.css +289 -1
  430. package/styles/rating/bootstrap-dark.scss +4 -1
  431. package/styles/rating/bootstrap.css +289 -1
  432. package/styles/rating/bootstrap.scss +4 -1
  433. package/styles/rating/bootstrap4.css +289 -1
  434. package/styles/rating/bootstrap4.scss +4 -1
  435. package/styles/rating/bootstrap5-dark.css +290 -1
  436. package/styles/rating/bootstrap5-dark.scss +4 -1
  437. package/styles/rating/bootstrap5.css +290 -1
  438. package/styles/rating/bootstrap5.scss +4 -1
  439. package/styles/rating/fabric-dark.css +289 -1
  440. package/styles/rating/fabric-dark.scss +4 -1
  441. package/styles/rating/fabric.css +289 -1
  442. package/styles/rating/fabric.scss +4 -1
  443. package/styles/rating/fluent-dark.css +289 -1
  444. package/styles/rating/fluent-dark.scss +4 -1
  445. package/styles/rating/fluent.css +289 -1
  446. package/styles/rating/fluent.scss +4 -1
  447. package/styles/rating/highcontrast-light.css +289 -1
  448. package/styles/rating/highcontrast-light.scss +4 -1
  449. package/styles/rating/highcontrast.css +289 -1
  450. package/styles/rating/highcontrast.scss +4 -1
  451. package/styles/rating/material-dark.css +289 -1
  452. package/styles/rating/material-dark.scss +4 -1
  453. package/styles/rating/material.css +289 -1
  454. package/styles/rating/material.scss +4 -1
  455. package/styles/rating/material3-dark.css +354 -1
  456. package/styles/rating/material3-dark.scss +4 -1
  457. package/styles/rating/material3.css +410 -1
  458. package/styles/rating/material3.scss +4 -1
  459. package/styles/rating/tailwind-dark.css +294 -1
  460. package/styles/rating/tailwind-dark.scss +4 -1
  461. package/styles/rating/tailwind.css +294 -1
  462. package/styles/rating/tailwind.scss +4 -1
  463. package/styles/signature/_all.scss +2 -0
  464. package/styles/signature/_bootstrap-dark-definition.scss +3 -0
  465. package/styles/signature/_bootstrap-definition.scss +3 -0
  466. package/styles/signature/_bootstrap4-definition.scss +3 -0
  467. package/styles/signature/_bootstrap5-dark-definition.scss +1 -0
  468. package/styles/signature/_bootstrap5-definition.scss +3 -0
  469. package/styles/signature/_fabric-dark-definition.scss +3 -0
  470. package/styles/signature/_fabric-definition.scss +3 -0
  471. package/styles/signature/_fluent-dark-definition.scss +1 -0
  472. package/styles/signature/_fluent-definition.scss +3 -0
  473. package/styles/signature/_fusionnew-definition.scss +3 -0
  474. package/styles/signature/_highcontrast-definition.scss +3 -0
  475. package/styles/signature/_highcontrast-light-definition.scss +3 -0
  476. package/styles/signature/_layout.scss +5 -0
  477. package/styles/signature/_material-dark-definition.scss +3 -0
  478. package/styles/signature/_material-definition.scss +3 -0
  479. package/styles/signature/_material3-dark-definition.scss +1 -0
  480. package/styles/signature/_material3-definition.scss +3 -0
  481. package/styles/signature/_tailwind-dark-definition.scss +1 -0
  482. package/styles/signature/_tailwind-definition.scss +3 -0
  483. package/styles/signature/_theme.scss +7 -0
  484. package/styles/signature/bootstrap-dark.css +9 -1
  485. package/styles/signature/bootstrap-dark.scss +3 -1
  486. package/styles/signature/bootstrap.css +9 -1
  487. package/styles/signature/bootstrap.scss +3 -1
  488. package/styles/signature/bootstrap4.css +9 -1
  489. package/styles/signature/bootstrap4.scss +3 -1
  490. package/styles/signature/bootstrap5-dark.css +9 -1
  491. package/styles/signature/bootstrap5-dark.scss +3 -1
  492. package/styles/signature/bootstrap5.css +9 -1
  493. package/styles/signature/bootstrap5.scss +3 -1
  494. package/styles/signature/fabric-dark.css +9 -1
  495. package/styles/signature/fabric-dark.scss +3 -1
  496. package/styles/signature/fabric.css +9 -1
  497. package/styles/signature/fabric.scss +3 -1
  498. package/styles/signature/fluent-dark.css +9 -1
  499. package/styles/signature/fluent-dark.scss +3 -1
  500. package/styles/signature/fluent.css +9 -1
  501. package/styles/signature/fluent.scss +3 -1
  502. package/styles/signature/highcontrast-light.css +9 -1
  503. package/styles/signature/highcontrast-light.scss +3 -1
  504. package/styles/signature/highcontrast.css +9 -1
  505. package/styles/signature/highcontrast.scss +3 -1
  506. package/styles/signature/material-dark.css +9 -1
  507. package/styles/signature/material-dark.scss +3 -1
  508. package/styles/signature/material.css +9 -1
  509. package/styles/signature/material.scss +3 -1
  510. package/styles/signature/material3-dark.css +64 -1
  511. package/styles/signature/material3-dark.scss +3 -1
  512. package/styles/signature/material3.css +120 -1
  513. package/styles/signature/material3.scss +3 -1
  514. package/styles/signature/tailwind-dark.css +9 -1
  515. package/styles/signature/tailwind-dark.scss +3 -1
  516. package/styles/signature/tailwind.css +9 -1
  517. package/styles/signature/tailwind.scss +3 -1
  518. package/styles/slider/_all.scss +3 -0
  519. package/styles/slider/_bootstrap-dark-definition.scss +156 -0
  520. package/styles/slider/_bootstrap-definition.scss +152 -0
  521. package/styles/slider/_bootstrap4-definition.scss +147 -0
  522. package/styles/slider/_bootstrap5-dark-definition.scss +1 -0
  523. package/styles/slider/_bootstrap5-definition.scss +90 -0
  524. package/styles/slider/_fabric-dark-definition.scss +162 -0
  525. package/styles/slider/_fabric-definition.scss +156 -0
  526. package/styles/slider/_fluent-dark-definition.scss +1 -0
  527. package/styles/slider/_fluent-definition.scss +74 -0
  528. package/styles/slider/_fusionnew-definition.scss +90 -0
  529. package/styles/slider/_highcontrast-definition.scss +145 -0
  530. package/styles/slider/_highcontrast-light-definition.scss +149 -0
  531. package/styles/slider/_icons.scss +1 -0
  532. package/styles/slider/_layout.scss +2489 -0
  533. package/styles/slider/_material-dark-definition.scss +159 -0
  534. package/styles/slider/_material-definition.scss +154 -0
  535. package/styles/slider/_material3-dark-definition.scss +1 -0
  536. package/styles/slider/_material3-definition.scss +97 -0
  537. package/styles/slider/_tailwind-dark-definition.scss +1 -0
  538. package/styles/slider/_tailwind-definition.scss +84 -0
  539. package/styles/slider/_theme.scss +249 -0
  540. package/styles/slider/bootstrap-dark.css +492 -1
  541. package/styles/slider/bootstrap-dark.scss +5 -1
  542. package/styles/slider/bootstrap.css +492 -1
  543. package/styles/slider/bootstrap.scss +5 -1
  544. package/styles/slider/bootstrap4.css +564 -1
  545. package/styles/slider/bootstrap4.scss +5 -1
  546. package/styles/slider/bootstrap5-dark.css +629 -1
  547. package/styles/slider/bootstrap5-dark.scss +5 -1
  548. package/styles/slider/bootstrap5.css +629 -1
  549. package/styles/slider/bootstrap5.scss +5 -1
  550. package/styles/slider/fabric-dark.css +504 -1
  551. package/styles/slider/fabric-dark.scss +5 -1
  552. package/styles/slider/fabric.css +504 -1
  553. package/styles/slider/fabric.scss +5 -1
  554. package/styles/slider/fluent-dark.css +532 -1
  555. package/styles/slider/fluent-dark.scss +5 -1
  556. package/styles/slider/fluent.css +532 -1
  557. package/styles/slider/fluent.scss +5 -1
  558. package/styles/slider/highcontrast-light.css +547 -1
  559. package/styles/slider/highcontrast-light.scss +5 -1
  560. package/styles/slider/highcontrast.css +547 -1
  561. package/styles/slider/highcontrast.scss +5 -1
  562. package/styles/slider/material-dark.css +654 -1
  563. package/styles/slider/material-dark.scss +5 -1
  564. package/styles/slider/material.css +654 -1
  565. package/styles/slider/material.scss +5 -1
  566. package/styles/slider/material3-dark.css +776 -1
  567. package/styles/slider/material3-dark.scss +5 -1
  568. package/styles/slider/material3.css +832 -1
  569. package/styles/slider/material3.scss +5 -1
  570. package/styles/slider/tailwind-dark.css +628 -1
  571. package/styles/slider/tailwind-dark.scss +5 -1
  572. package/styles/slider/tailwind.css +628 -1
  573. package/styles/slider/tailwind.scss +5 -1
  574. package/styles/tailwind-dark.css +7470 -1
  575. package/styles/tailwind.css +7470 -1
  576. package/styles/textbox/_all.scss +1 -0
  577. package/styles/textbox/_bootstrap-dark-definition.scss +4 -0
  578. package/styles/textbox/_bootstrap-definition.scss +4 -0
  579. package/styles/textbox/_bootstrap4-definition.scss +4 -0
  580. package/styles/textbox/_bootstrap5-dark-definition.scss +1 -0
  581. package/styles/textbox/_bootstrap5-definition.scss +4 -0
  582. package/styles/textbox/_fabric-dark-definition.scss +4 -0
  583. package/styles/textbox/_fabric-definition.scss +4 -0
  584. package/styles/textbox/_fluent-dark-definition.scss +1 -0
  585. package/styles/textbox/_fluent-definition.scss +4 -0
  586. package/styles/textbox/_fusionnew-definition.scss +4 -0
  587. package/styles/textbox/_highcontrast-definition.scss +4 -0
  588. package/styles/textbox/_highcontrast-light-definition.scss +4 -0
  589. package/styles/textbox/_layout.scss +37 -0
  590. package/styles/textbox/_material-dark-definition.scss +4 -0
  591. package/styles/textbox/_material-definition.scss +4 -0
  592. package/styles/textbox/_material3-dark-definition.scss +1 -0
  593. package/styles/textbox/_material3-definition.scss +4 -0
  594. package/styles/textbox/_tailwind-dark-definition.scss +1 -0
  595. package/styles/textbox/_tailwind-definition.scss +4 -0
  596. package/styles/textbox/_theme.scss +1 -0
  597. package/styles/textbox/bootstrap-dark.css +2 -1
  598. package/styles/textbox/bootstrap-dark.scss +4 -1
  599. package/styles/textbox/bootstrap.css +2 -1
  600. package/styles/textbox/bootstrap.scss +4 -1
  601. package/styles/textbox/bootstrap4.css +2 -1
  602. package/styles/textbox/bootstrap4.scss +4 -1
  603. package/styles/textbox/bootstrap5-dark.css +2 -1
  604. package/styles/textbox/bootstrap5-dark.scss +4 -1
  605. package/styles/textbox/bootstrap5.css +2 -1
  606. package/styles/textbox/bootstrap5.scss +4 -1
  607. package/styles/textbox/fabric-dark.css +2 -1
  608. package/styles/textbox/fabric-dark.scss +4 -1
  609. package/styles/textbox/fabric.css +2 -1
  610. package/styles/textbox/fabric.scss +4 -1
  611. package/styles/textbox/fluent-dark.css +2 -1
  612. package/styles/textbox/fluent-dark.scss +4 -1
  613. package/styles/textbox/fluent.css +2 -1
  614. package/styles/textbox/fluent.scss +4 -1
  615. package/styles/textbox/highcontrast-light.css +2 -1
  616. package/styles/textbox/highcontrast-light.scss +4 -1
  617. package/styles/textbox/highcontrast.css +2 -1
  618. package/styles/textbox/highcontrast.scss +4 -1
  619. package/styles/textbox/material-dark.css +8 -1
  620. package/styles/textbox/material-dark.scss +4 -1
  621. package/styles/textbox/material.css +16 -1
  622. package/styles/textbox/material.scss +4 -1
  623. package/styles/textbox/material3-dark.css +71 -1
  624. package/styles/textbox/material3-dark.scss +4 -1
  625. package/styles/textbox/material3.css +127 -1
  626. package/styles/textbox/material3.scss +4 -1
  627. package/styles/textbox/tailwind-dark.css +2 -1
  628. package/styles/textbox/tailwind-dark.scss +4 -1
  629. package/styles/textbox/tailwind.css +2 -1
  630. package/styles/textbox/tailwind.scss +4 -1
  631. package/styles/uploader/_all.scss +2 -0
  632. package/styles/uploader/_bootstrap-dark-definition.scss +213 -0
  633. package/styles/uploader/_bootstrap-definition.scss +208 -0
  634. package/styles/uploader/_bootstrap4-definition.scss +211 -0
  635. package/styles/uploader/_bootstrap5-dark-definition.scss +1 -0
  636. package/styles/uploader/_bootstrap5-definition.scss +216 -0
  637. package/styles/uploader/_definition.scss +142 -0
  638. package/styles/uploader/_fabric-dark-definition.scss +216 -0
  639. package/styles/uploader/_fabric-definition.scss +210 -0
  640. package/styles/uploader/_fluent-dark-definition.scss +1 -0
  641. package/styles/uploader/_fluent-definition.scss +234 -0
  642. package/styles/uploader/_fusionnew-definition.scss +216 -0
  643. package/styles/uploader/_highcontrast-definition.scss +211 -0
  644. package/styles/uploader/_highcontrast-light-definition.scss +219 -0
  645. package/styles/uploader/_layout.scss +989 -0
  646. package/styles/uploader/_material-dark-definition.scss +217 -0
  647. package/styles/uploader/_material-definition.scss +214 -0
  648. package/styles/uploader/_material3-dark-definition.scss +1 -0
  649. package/styles/uploader/_material3-definition.scss +215 -0
  650. package/styles/uploader/_tailwind-dark-definition.scss +1 -0
  651. package/styles/uploader/_tailwind-definition.scss +232 -0
  652. package/styles/uploader/_theme.scss +146 -0
  653. package/styles/uploader/bootstrap-dark.css +800 -1
  654. package/styles/uploader/bootstrap-dark.scss +6 -1
  655. package/styles/uploader/bootstrap.css +800 -1
  656. package/styles/uploader/bootstrap.scss +6 -1
  657. package/styles/uploader/bootstrap4.css +800 -1
  658. package/styles/uploader/bootstrap4.scss +6 -1
  659. package/styles/uploader/bootstrap5-dark.css +806 -1
  660. package/styles/uploader/bootstrap5-dark.scss +6 -1
  661. package/styles/uploader/bootstrap5.css +806 -1
  662. package/styles/uploader/bootstrap5.scss +6 -1
  663. package/styles/uploader/fabric-dark.css +800 -1
  664. package/styles/uploader/fabric-dark.scss +6 -1
  665. package/styles/uploader/fabric.css +800 -1
  666. package/styles/uploader/fabric.scss +6 -1
  667. package/styles/uploader/fluent-dark.css +852 -1
  668. package/styles/uploader/fluent-dark.scss +6 -1
  669. package/styles/uploader/fluent.css +852 -1
  670. package/styles/uploader/fluent.scss +6 -1
  671. package/styles/uploader/highcontrast-light.css +800 -1
  672. package/styles/uploader/highcontrast-light.scss +6 -1
  673. package/styles/uploader/highcontrast.css +800 -1
  674. package/styles/uploader/highcontrast.scss +6 -1
  675. package/styles/uploader/icons/_bootstrap-dark.scss +34 -0
  676. package/styles/uploader/icons/_bootstrap.scss +34 -0
  677. package/styles/uploader/icons/_bootstrap4.scss +34 -0
  678. package/styles/uploader/icons/_bootstrap5-dark.scss +1 -0
  679. package/styles/uploader/icons/_bootstrap5.scss +34 -0
  680. package/styles/uploader/icons/_fabric-dark.scss +34 -0
  681. package/styles/uploader/icons/_fabric.scss +34 -0
  682. package/styles/uploader/icons/_fluent-dark.scss +1 -0
  683. package/styles/uploader/icons/_fluent.scss +34 -0
  684. package/styles/uploader/icons/_fusionnew.scss +34 -0
  685. package/styles/uploader/icons/_highcontrast-light.scss +34 -0
  686. package/styles/uploader/icons/_highcontrast.scss +34 -0
  687. package/styles/uploader/icons/_material-dark.scss +34 -0
  688. package/styles/uploader/icons/_material.scss +34 -0
  689. package/styles/uploader/icons/_material3-dark.scss +1 -0
  690. package/styles/uploader/icons/_material3.scss +34 -0
  691. package/styles/uploader/icons/_tailwind-dark.scss +1 -0
  692. package/styles/uploader/icons/_tailwind.scss +34 -0
  693. package/styles/uploader/material-dark.css +800 -1
  694. package/styles/uploader/material-dark.scss +6 -1
  695. package/styles/uploader/material.css +804 -1
  696. package/styles/uploader/material.scss +6 -1
  697. package/styles/uploader/material3-dark.css +860 -1
  698. package/styles/uploader/material3-dark.scss +6 -1
  699. package/styles/uploader/material3.css +916 -1
  700. package/styles/uploader/material3.scss +6 -1
  701. package/styles/uploader/tailwind-dark.css +834 -1
  702. package/styles/uploader/tailwind-dark.scss +6 -1
  703. package/styles/uploader/tailwind.css +834 -1
  704. package/styles/uploader/tailwind.scss +6 -1
  705. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  706. package/@syncfusion/ej2-angular-inputs.es5.js +0 -1791
  707. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  708. package/@syncfusion/ej2-angular-inputs.js +0 -1689
  709. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  710. package/CHANGELOG.md +0 -1459
  711. package/dist/ej2-angular-inputs.umd.js +0 -1880
  712. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  713. package/dist/ej2-angular-inputs.umd.min.js +0 -11
  714. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  715. package/ej2-angular-inputs.d.ts +0 -12
  716. package/ej2-angular-inputs.metadata.json +0 -1
  717. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,2489 @@
1
+ @include export-module('slider-layout') {
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ // sass-lint:disable no-important
4
+
5
+ .e-control-wrapper.e-slider-container.e-material-slider .e-slider .e-handle {
6
+ &.e-material-handle {
7
+ cursor: default;
8
+ transition: transform .4s cubic-bezier(.25, .8, .25, 1);
9
+ z-index: 3;
10
+ }
11
+
12
+ &.e-tab-handle {
13
+ &::after {
14
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
15
+ background-color: transparent;
16
+ }
17
+ }
18
+ }
19
+
20
+ &.e-handle-start.e-tab-handle {
21
+ &::after {
22
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
23
+ background-color: transparent;
24
+ }
25
+ }
26
+ }
27
+ }
28
+
29
+ .e-slider-tooltip.e-tooltip-wrap.e-popup {
30
+ @if ($skin-name == 'material' or $skin-name == 'material-dark' or $skin-name == 'Material3' or $skin-name == 'Material3-dark') {
31
+ background-color: $slider-handle-bg-color;
32
+ border: 0;
33
+ border-radius: 8px;
34
+ /* stylelint-disable */
35
+ cursor: -webkit-grab;
36
+ cursor: grab;
37
+ /* stylelint-enable */
38
+ opacity: 1;
39
+
40
+ &.e-popup.e-popup-close {
41
+ display: block;
42
+ opacity: 0;
43
+ }
44
+
45
+ &.e-material-tooltip-start {
46
+ background-color: $slider-handle-border-color;
47
+
48
+ @if $skin-name != 'Material3' and $skin-name != 'Material3-dark' {
49
+ .e-arrow-tip-inner {
50
+ color: $grey-black;
51
+ opacity: 0;
52
+ }
53
+ }
54
+
55
+ .e-arrow-tip-outer.e-tip-bottom {
56
+ border-top-color: $slider-handle-border-color;
57
+ }
58
+
59
+ .e-arrow-tip-outer.e-tip-top {
60
+ border-bottom-color: $slider-handle-border-color;
61
+ }
62
+
63
+ .e-arrow-tip-outer.e-tip-right {
64
+ border-left-color: $slider-handle-border-color;
65
+ }
66
+
67
+ .e-arrow-tip-outer.e-tip-left {
68
+ border-right-color: $slider-handle-border-color;
69
+ }
70
+ }
71
+
72
+ &.e-tooltip-active {
73
+ /* stylelint-disable */
74
+ cursor: -webkit-grabbing;
75
+ cursor: grabbing;
76
+ /* stylelint-enable */
77
+ }
78
+
79
+ .e-arrow-tip {
80
+ visibility: visible;
81
+ }
82
+
83
+ .e-tip-content {
84
+ background-color: transparent;
85
+ height: 16px;
86
+ overflow: hidden;
87
+ padding: 0 8px;
88
+ @if $skin-name != 'Material3' and $skin-name != 'Material3-dark' {
89
+ text-align: center;
90
+ }
91
+ @if $skin-name == 'material' or $skin-name == 'material-dark' or $skin-name == 'Material3' or $skin-name == 'Material3-dark' {
92
+ top: calc(50% - 8px);
93
+ position: relative;
94
+ line-height: 16px;
95
+ }
96
+ @else {
97
+ top: calc(50% - 10px);
98
+ left: calc(50% - 36px);
99
+ }
100
+ width: 100%;
101
+
102
+ &.e-material-tooltip-show {
103
+ color: $slider-material-tooltip-content-color;
104
+ }
105
+
106
+ &.e-material-tooltip-hide {
107
+ color: transparent;
108
+ }
109
+ }
110
+
111
+ .e-arrow-tip-inner {
112
+ color: $slider-handle-bg-color;
113
+ }
114
+
115
+ .e-arrow-tip-outer.e-tip-bottom {
116
+ border-top-color: $slider-handle-bg-color;
117
+ }
118
+
119
+ .e-arrow-tip-outer.e-tip-top {
120
+ border-bottom-color: $slider-handle-bg-color;
121
+ }
122
+
123
+ .e-arrow-tip-outer.e-tip-right {
124
+ border-left-color: $slider-handle-bg-color;
125
+ }
126
+
127
+ .e-arrow-tip-outer.e-tip-left {
128
+ border-right-color: $slider-handle-bg-color;
129
+ }
130
+
131
+ &.e-tooltip-wrap.e-popup.e-material-default {
132
+ background-color: $slider-handle-bg-color;
133
+ border: 0;
134
+ border-bottom-left-radius: 50%;
135
+ border-bottom-right-radius: 0%;
136
+ border-top-left-radius: 50%;
137
+ border-top-right-radius: 50%;
138
+ /* stylelint-disable */
139
+ cursor: -webkit-grab;
140
+ cursor: grab;
141
+ /* stylelint-enable */
142
+ opacity: 1;
143
+
144
+ &.e-material-tooltip-start {
145
+ background-color: $slider-handle-border-color;
146
+ }
147
+
148
+ &.e-tooltip-active {
149
+ /* stylelint-disable */
150
+ cursor: -webkit-grabbing;
151
+ cursor: grabbing;
152
+ /* stylelint-enable */
153
+ }
154
+
155
+ .e-arrow-tip {
156
+ visibility: hidden;
157
+ }
158
+
159
+ &.e-slider-horizontal-before {
160
+ transform: rotate(45deg);
161
+ .e-tip-content {
162
+ transform: rotate(-45deg);
163
+ }
164
+ }
165
+
166
+ &.e-slider-horizontal-after {
167
+ transform: rotate(225deg);
168
+ .e-tip-content {
169
+ transform: rotate(-225deg);
170
+ }
171
+ }
172
+
173
+ &.e-slider-vertical-before {
174
+ transform: rotate(-45deg);
175
+ .e-tip-content {
176
+ transform: rotate(45deg);
177
+ }
178
+ }
179
+
180
+ &.e-slider-vertical-after {
181
+ transform: rotate(-225deg);
182
+ .e-tip-content {
183
+ transform: rotate(225deg);
184
+ }
185
+ }
186
+
187
+ .e-tip-content {
188
+ background-color: transparent;
189
+ height: 16px;
190
+ overflow: hidden;
191
+ padding: 0;
192
+ text-align: center;
193
+ @if $skin-name == 'material' or $skin-name == 'material-dark' {
194
+ top: calc(50% - 8px);
195
+ }
196
+ @else {
197
+ top: calc(50% - 10px);
198
+ left: calc(50% - 16px);
199
+ }
200
+ width: 100%;
201
+
202
+ &.e-material-tooltip-show {
203
+ color: $slider-material-tooltip-content-color;
204
+ }
205
+
206
+ &.e-material-tooltip-hide {
207
+ color: transparent;
208
+ }
209
+ }
210
+ }
211
+ }
212
+ @else {
213
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
214
+ background-color: $slider-active-handle-bg-color;
215
+ border: 1px solid $slider-hover-handle-color;
216
+ }
217
+
218
+ .e-tip-content {
219
+ padding: $slider-tooltip-padding;
220
+ text-align: center;
221
+
222
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
223
+ color: $slider-button-icon-color;
224
+ }
225
+ }
226
+ }
227
+ }
228
+
229
+ .e-slider-horizantal-color {
230
+ height: 100%;
231
+ position: absolute;
232
+ top: 0;
233
+ }
234
+
235
+ .e-slider-vertical-color {
236
+ left: -1px;
237
+ position: absolute;
238
+ width: 100%;
239
+ }
240
+
241
+ .e-bigger {
242
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
243
+ .e-slider-tooltip.e-tooltip-wrap.e-popup {
244
+ .e-tip-content {
245
+ padding: $slider-tooltip-padding;
246
+ }
247
+ }
248
+
249
+ &.e-slider-tooltip.e-tooltip-wrap.e-popup {
250
+ .e-tip-content {
251
+ padding: $slider-tooltip-padding;
252
+ }
253
+ }
254
+ }
255
+ @else {
256
+ &.e-slider-tooltip.e-tooltip-wrap.e-popup {
257
+ .e-tip-content {
258
+ font-size: 11px;
259
+ line-height: 16px;
260
+ }
261
+ }
262
+
263
+ .e-slider-tooltip.e-tooltip-wrap.e-popup {
264
+ .e-tip-content {
265
+ font-size: 11px;
266
+ line-height: 16px;
267
+ }
268
+ }
269
+ }
270
+ }
271
+
272
+ .e-bigger .e-control-wrapper.e-slider-container,
273
+ .e-control-wrapper.e-slider-container.e-bigger {
274
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
275
+ .e-slider {
276
+ .e-handle {
277
+ height: $slider-handle-mobile-height;
278
+ width: $slider-handle-mobile-width;
279
+ }
280
+ }
281
+
282
+ @if ($skin-name == 'FluentUI') {
283
+ .e-slider-button {
284
+ height: 20px;
285
+ width: 20px;
286
+ }
287
+
288
+ &.e-horizontal {
289
+ .e-first-button,
290
+ .e-second-button {
291
+ margin-top: $slider-touch-btn-center-align;
292
+
293
+ .e-button-icon::before {
294
+ font-size: 17px;
295
+ }
296
+ }
297
+ }
298
+
299
+ &.e-vertical {
300
+ .e-first-button,
301
+ .e-second-button {
302
+ margin-right: $slider-touch-btn-center-align;
303
+
304
+ .e-button-icon::before {
305
+ font-size: 17px;
306
+ }
307
+ }
308
+ }
309
+ }
310
+
311
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'Material3') {
312
+ .e-slider-button {
313
+ height: 18px;
314
+ width: 18px;
315
+ }
316
+
317
+ &.e-vertical {
318
+ &.e-slider-btn {
319
+ @if ($skin-name == 'bootstrap5') {
320
+ padding: 36px 0;
321
+ }
322
+ @else {
323
+ padding: 34px 0;
324
+ }
325
+ }
326
+
327
+ .e-first-button,
328
+ .e-second-button {
329
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'Material3') {
330
+ margin-right: -12px;
331
+ }
332
+ @else {
333
+ margin-right: -9px;
334
+ }
335
+ }
336
+
337
+ .e-slider {
338
+ .e-slider-track {
339
+ left: calc(50% - 4px);
340
+ width: 8px;
341
+ }
342
+
343
+ .e-range {
344
+ left: calc(50% - 4px);
345
+ width: 8px;
346
+ }
347
+ }
348
+ }
349
+
350
+ &.e-horizontal .e-slider {
351
+ .e-limits {
352
+ height: 8px;
353
+ top: calc(50% - 4px);
354
+ @if ($skin-name == 'bootstrap5' and $skin-name == 'FluentUI') {
355
+ border-radius: $slider-range-border-radius;
356
+ }
357
+ }
358
+ }
359
+
360
+ &.e-vertical .e-slider {
361
+ .e-limits {
362
+ left: calc(50% - 4px);
363
+ width: 8px;
364
+ @if ($skin-name == 'bootstrap5' and $skin-name == 'FluentUI') {
365
+ border-radius: $slider-range-border-radius;
366
+ }
367
+ }
368
+ }
369
+ }
370
+
371
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'Material3') {
372
+
373
+ &.e-horizontal,
374
+ &.e-vertical {
375
+ .e-slider-button.e-first-button,
376
+ .e-slider-button.e-second-button {
377
+ border-radius: 12px;
378
+ height: 24px;
379
+ width: 24px;
380
+ @if $skin-name == 'Material3' {
381
+ padding: 0;
382
+ }
383
+
384
+ .e-button-icon::before {
385
+ font-size: 22px;
386
+ }
387
+ }
388
+ }
389
+
390
+ &.e-horizontal {
391
+
392
+ .e-slider-button.e-first-button,
393
+ .e-slider-button.e-second-button {
394
+ margin-top: -12px;
395
+ }
396
+
397
+ .e-tick-both {
398
+ &.e-scale {
399
+ &.e-h-scale {
400
+ .e-tick {
401
+ height: 24px;
402
+ top: -14px;
403
+ }
404
+
405
+ .e-large {
406
+ height: 32px;
407
+ top: -10px;
408
+ }
409
+ }
410
+ }
411
+ }
412
+
413
+ .e-tick-before {
414
+ &.e-scale {
415
+ &.e-h-scale {
416
+ .e-tick {
417
+ height: $tick-after-mobile-height;
418
+ top: $tick-before-mobile-top;
419
+ }
420
+
421
+ .e-large {
422
+ height: $largetick-before-mobile-height;
423
+ top: $tick-before-mobile-top;
424
+ }
425
+ }
426
+ }
427
+ }
428
+
429
+ .e-tick-after {
430
+ &.e-scale {
431
+ &.e-h-scale {
432
+ .e-tick {
433
+ height: $tick-after-mobile-height;
434
+ top: $tick-after-mobile-top;
435
+ }
436
+
437
+ .e-large {
438
+ height: $largetick-before-mobile-height;
439
+ top: $largetick-after-mobile-top;
440
+ }
441
+ }
442
+ }
443
+ }
444
+ }
445
+
446
+ &.e-vertical {
447
+
448
+ .e-tick-both {
449
+ &.e-scale {
450
+ .e-tick {
451
+ left: 2px;
452
+ width: 24px;
453
+ }
454
+
455
+ .e-large {
456
+ left: -2px;
457
+ width: 32px;
458
+ }
459
+ }
460
+ }
461
+
462
+ .e-tick-before {
463
+
464
+ &.e-scale {
465
+ &.e-v-scale {
466
+ .e-tick {
467
+ left: $tick-before-mobile-left;
468
+ width: $tick-after-mobile-height;
469
+ }
470
+
471
+ .e-large {
472
+ left: $largetick-before-mobile-left;
473
+ width: $largetick-before-mobile-height;
474
+ }
475
+ }
476
+ }
477
+ }
478
+
479
+ .e-tick-after {
480
+
481
+ &.e-scale {
482
+ &.e-v-scale {
483
+ .e-tick {
484
+ left: $tick-after-mobile-left;
485
+ width: $tick-after-mobile-height;
486
+ }
487
+
488
+ .e-large {
489
+ left: $tick-after-mobile-left;
490
+ width: $largetick-before-mobile-height;
491
+ }
492
+ }
493
+ }
494
+ }
495
+ }
496
+ }
497
+
498
+ @if ($skin-name == 'tailwind') {
499
+ .e-scale.e-h-scale {
500
+ &.e-tick-after {
501
+ top: 7px;
502
+ }
503
+ }
504
+
505
+ &.e-horizontal,
506
+ &.e-vertical {
507
+ .e-slider-button.e-first-button,
508
+ .e-slider-button.e-second-button {
509
+ border-radius: 12px;
510
+ height: 24px;
511
+ width: 24px;
512
+
513
+ .e-button-icon::before {
514
+ font-size: 22px;
515
+ }
516
+ }
517
+ }
518
+
519
+ &.e-horizontal {
520
+
521
+ &.e-scale-both {
522
+ .e-range {
523
+ height: 6px;
524
+ }
525
+ }
526
+
527
+ .e-slider-track {
528
+ border-radius: 6px;
529
+ }
530
+
531
+ .e-limits {
532
+ height: 6px;
533
+ }
534
+
535
+ .e-first-button,
536
+ .e-second-button {
537
+ margin-top: -14px;
538
+ }
539
+
540
+ .e-tick-both {
541
+ &.e-scale {
542
+ &.e-h-scale {
543
+ .e-tick {
544
+ height: 22px;
545
+ top: -19px;
546
+ }
547
+
548
+ .e-large {
549
+ height: 30px;
550
+ top: -16px;
551
+ }
552
+ }
553
+ }
554
+ }
555
+
556
+ .e-tick-before {
557
+ &.e-scale {
558
+ &.e-h-scale {
559
+ .e-tick {
560
+ height: $tick-after-mobile-height;
561
+ }
562
+
563
+ .e-large {
564
+ height: $largetick-before-mobile-height;
565
+ }
566
+ }
567
+ }
568
+ }
569
+
570
+ .e-tick-after {
571
+ &.e-scale {
572
+ &.e-h-scale {
573
+ .e-tick {
574
+ height: $tick-after-mobile-height;
575
+ }
576
+
577
+ .e-large {
578
+ height: $largetick-before-mobile-height;
579
+ }
580
+ }
581
+ }
582
+ }
583
+
584
+ &.e-scale-both {
585
+ .e-scale {
586
+ top: 17px;
587
+ }
588
+ }
589
+
590
+ &.e-slider-btn {
591
+ padding: $slider-button-horizon-mobile-padding;
592
+ }
593
+ }
594
+
595
+ &.e-vertical {
596
+
597
+ &.e-scale-both {
598
+ .e-range {
599
+ width: 6px;
600
+ }
601
+ }
602
+
603
+ .e-range {
604
+ width: 6px;
605
+ }
606
+
607
+ .e-slider-track {
608
+ border-radius: 6px;
609
+ }
610
+
611
+ &.e-slider-btn {
612
+ padding: $slider-button-vertical-mobile-padding;
613
+ }
614
+
615
+ .e-slider-button {
616
+ margin-right: -15px;
617
+ }
618
+
619
+ .e-tick-both {
620
+ &.e-scale {
621
+ &.e-v-scale {
622
+ .e-tick {
623
+ left: 4px;
624
+ width: 22px;
625
+ }
626
+
627
+ .e-large {
628
+ left: 0;
629
+ width: 30px;
630
+ }
631
+ }
632
+ }
633
+ }
634
+
635
+ .e-tick-before {
636
+
637
+ &.e-scale {
638
+ &.e-v-scale {
639
+ .e-tick {
640
+ width: $tick-after-mobile-height;
641
+ }
642
+
643
+ .e-large {
644
+ width: $largetick-before-mobile-height;
645
+ }
646
+ }
647
+ }
648
+ }
649
+
650
+ .e-tick-after {
651
+
652
+ &.e-scale {
653
+ &.e-v-scale {
654
+ .e-tick {
655
+ width: $tick-after-mobile-height;
656
+ }
657
+
658
+ .e-large {
659
+ width: $largetick-before-mobile-height;
660
+ }
661
+ }
662
+ }
663
+ }
664
+ }
665
+ }
666
+
667
+ &.e-horizontal {
668
+ @if ($skin-name == 'bootstrap5') {
669
+ &.e-slider-btn {
670
+ padding: 0 36px;
671
+ }
672
+ }
673
+ @if ($skin-name == 'bootstrap4') {
674
+ &.e-slider-btn {
675
+ padding: 0 34px;
676
+ }
677
+
678
+ .e-slider-button {
679
+ height: $slider-handle-mobile-buttons-height;
680
+ margin-top: -9px;
681
+ width: $slider-handle-mobile-buttons-width;
682
+ }
683
+ }
684
+
685
+ @if ($skin-name == 'tailwind') {
686
+ .e-slider-track {
687
+ height: 6px;
688
+ }
689
+
690
+ .e-range {
691
+ height: 6px;
692
+ }
693
+ }
694
+
695
+ .e-slider {
696
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'Material3') {
697
+ .e-slider-track {
698
+ height: 8px;
699
+ top: calc(50% - 4px);
700
+ }
701
+
702
+ .e-range {
703
+ height: 8px;
704
+ top: calc(50% - 4px);
705
+ }
706
+ }
707
+
708
+ .e-handle {
709
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
710
+ margin-left: $slider-handle-mobile-margin-left;
711
+ top: $slider-handle-mobile-handle-top;
712
+ }
713
+ @else {
714
+ margin-left: -9px;
715
+ top: calc(50% - 9px);
716
+ }
717
+ }
718
+ }
719
+
720
+ &.e-scale-both {
721
+ .e-slider {
722
+ .e-handle {
723
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
724
+ margin-left: -9px;
725
+ top: calc(50% - 8px);
726
+ }
727
+ }
728
+ }
729
+ }
730
+ }
731
+
732
+ &.e-vertical {
733
+ .e-slider {
734
+ .e-handle {
735
+ @if ($skin-name == 'tailwind') {
736
+ left: calc(50% - 5px);
737
+ }
738
+ @else if $skin-name == 'Material3' {
739
+ left: calc(50% - 14px);
740
+ }
741
+ @else {
742
+ left: calc(50% - 9px);
743
+ }
744
+ margin-bottom: -9px;
745
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI') {
746
+ left: calc(50% - 8px);
747
+ margin-bottom: -8px;
748
+ }
749
+ }
750
+
751
+ @if ($skin-name == 'tailwind') {
752
+ .e-range {
753
+ width: 6px;
754
+ }
755
+ }
756
+ }
757
+
758
+ &.e-scale-both {
759
+ .e-slider {
760
+ .e-handle {
761
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
762
+ left: calc(50% - 10px);
763
+ margin-bottom: -9px;
764
+ }
765
+ @if $skin-name == 'bootstrap4' {
766
+ left: calc(50% - 8px);
767
+ margin-bottom: -8px;
768
+ }
769
+ }
770
+ }
771
+ }
772
+
773
+ @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
774
+ .e-slider-track {
775
+ width: 6px;
776
+ }
777
+
778
+ .e-range {
779
+ width: 6px;
780
+ }
781
+ }
782
+ }
783
+
784
+ &.e-rtl {
785
+ &.e-horizontal {
786
+ .e-slider {
787
+ .e-handle {
788
+ @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
789
+ margin: 0 -8px 0 0;
790
+ }
791
+ }
792
+ }
793
+ }
794
+ }
795
+ }
796
+
797
+ .e-scale .e-tick .e-tick-value {
798
+ font-size: $slider-mobile-scale-font-size;
799
+ }
800
+ }
801
+
802
+ .e-control-wrapper.e-slider-container {
803
+ -moz-user-select: none;
804
+ -ms-user-select: none;
805
+ -webkit-tap-highlight-color: transparent;
806
+ -webkit-touch-callout: none;
807
+ -webkit-user-select: none;
808
+ box-sizing: border-box;
809
+ display: inline-block;
810
+ height: $slider-wrap-height;
811
+ line-height: normal;
812
+ outline: none;
813
+ position: relative;
814
+ user-select: none;
815
+
816
+ &::after {
817
+ content: $skin-name;
818
+ display: none;
819
+ }
820
+
821
+ .e-slider {
822
+ .e-handle {
823
+ &.e-large-thumb-size {
824
+ transform: scale(1.5);
825
+ }
826
+ }
827
+ }
828
+
829
+ &.e-rtl {
830
+ &.e-horizontal {
831
+ .e-slider {
832
+ .e-handle {
833
+ margin: $rtl-slider-h-handle-margin;
834
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap4') {
835
+ top: calc(50% - 8px);
836
+ }
837
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI' or $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
838
+ top: calc(50% - 8px);
839
+ }
840
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
841
+ top: calc(50% - 6px);
842
+ }
843
+ }
844
+ }
845
+
846
+ .e-scale {
847
+ &.e-h-scale {
848
+ .e-tick.e-first-tick {
849
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
850
+ background-position-x: right;
851
+ }
852
+
853
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI' or $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
854
+ background-position: right center;
855
+ left: 0;
856
+ }
857
+
858
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'Material3') {
859
+ background-position: right center;
860
+ left: 0;
861
+ }
862
+ }
863
+
864
+ .e-tick.e-last-tick {
865
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
866
+ background-position-x: left;
867
+ }
868
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
869
+ background-position: left center;
870
+ }
871
+ }
872
+ }
873
+ }
874
+
875
+ .e-slider-button {
876
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' or $skin-name == 'FluentUI') {
877
+ margin-top: -8px;
878
+ }
879
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap4') {
880
+ margin-top: -7px;
881
+ }
882
+ @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
883
+ margin-top: -13px;
884
+
885
+ .e-button-icon::before {
886
+ font-size: 18px;
887
+ }
888
+ }
889
+ }
890
+ }
891
+
892
+ &.e-vertical {
893
+ direction: ltr;
894
+ }
895
+ }
896
+
897
+ &.e-disabled {
898
+ @if ($skin-name == 'tailwind') {
899
+ filter: alpha(Opacity=100);
900
+ opacity: 1;
901
+ }
902
+ @if ($skin-name == 'bootstrap5') {
903
+ opacity: .5;
904
+ }
905
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
906
+ &.e-material-slider .e-slider .e-handle.e-handle-first {
907
+ background-color: $grey-600;
908
+ }
909
+
910
+ &:hover {
911
+ .e-scale .e-tick {
912
+ visibility: hidden;
913
+ }
914
+ }
915
+
916
+ .e-slider {
917
+ .e-range {
918
+ background: $slider-disabled-bg-color;
919
+ }
920
+
921
+ .e-handle {
922
+ background: $grey-600;
923
+ transform: scale(.5) !important;/* stylelint-disable-line declaration-no-important */
924
+
925
+ &.e-handle-first {
926
+ background-color: $grey-600;
927
+ border: 0;
928
+ }
929
+
930
+ &::after {
931
+ -ms-transform: scale(0);
932
+ -webkit-transform: scale(0);
933
+ background: transparent;
934
+ border: 7px solid $slider-material-tooltip-content-color;
935
+ border-radius: 50%;
936
+ box-sizing: border-box;
937
+ content: '';
938
+ height: 26px;
939
+ left: calc(50% - 13px);
940
+ opacity: 1;
941
+ position: absolute;
942
+ top: calc(50% - 13px);
943
+ transform: scale(1);
944
+ transition: none;
945
+ width: 26px;
946
+ z-index: -1;
947
+ }
948
+ }
949
+ }
950
+ }
951
+
952
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
953
+ .e-slider {
954
+ .e-range {
955
+ background: $slider-disabled-bg-color;
956
+ }
957
+
958
+ .e-handle {
959
+ border-color: $slider-disabled-bg-color;
960
+ }
961
+ }
962
+ }
963
+
964
+ .e-btn {
965
+ cursor: default;
966
+ }
967
+
968
+ .e-slider {
969
+ .e-handle {
970
+ cursor: default;
971
+
972
+ &.e-handle-disable {
973
+ display: $slider-disabled-handle-show;
974
+ }
975
+ }
976
+ }
977
+
978
+ @if ($skin-name == 'bootstrap4') {
979
+ .e-slider {
980
+ .e-range {
981
+ background-color: $slider-disabled-range-color;
982
+ }
983
+
984
+ .e-handle {
985
+ background-color: $slider-disabled-handle-color;
986
+ border-color: $slider-disabled-handle-color;
987
+ }
988
+
989
+ .e-slider-track {
990
+ background-color: $slider-disabled-track-color;
991
+ }
992
+ }
993
+
994
+ .e-scale .e-tick {
995
+ .e-tick-value {
996
+ color: $slider-button-bg-color;
997
+ }
998
+ }
999
+
1000
+ .e-slider-button {
1001
+ background-color: $slider-disabled-bg-color;
1002
+ border-color: $white;
1003
+ }
1004
+ }
1005
+ }
1006
+
1007
+ @if ($skin-name == 'bootstrap4') {
1008
+ &:not(.e-disabled) {
1009
+ .e-slider-button {
1010
+ &:hover {
1011
+ background-color: darken($gray-600, 7.5%);
1012
+ border-color: darken($gray-600, 10%);
1013
+ }
1014
+
1015
+ &:active {
1016
+ background-color: darken($gray-600, 10%);
1017
+ border-color: darken($gray-600, 12%);
1018
+ }
1019
+ }
1020
+ }
1021
+ }
1022
+
1023
+ &.e-horizontal {
1024
+ height: 48px;
1025
+ width: 100%;
1026
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
1027
+ .e-first-button {
1028
+ left: 0;
1029
+ margin-top: $slider-btn-center-align;
1030
+ top: 50%;
1031
+
1032
+ .e-button-icon {
1033
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAkFBMVEUAAAD////////////////////////+/v7////+/v7////////+/v7+/v7////////+/v7+/v7+/v7////+/v7+/v7+/v7+/v7////+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7///8G+5iqAAAAL3RSTlMABAgMEBQYHCAkKDA0ODxETFRYYGRsdHyAh4uTm6Onr7O/w8fL09ff4+fr7/P3+/6nVicAAADJSURBVHgBldJHdoNgAANhQUjvPTHuxbgAuv/t/J5O8I82Wn27UfGaVmjvBwvsdmEDUH33JuBxYwNQ/48m4LWzAbie2QR8nkzA/coGoPodTMDzzgagae1ykHAASDgAJBwAEk4xSDgAJBwAEg4ACacYJBwAEg4ACYeAjyMEaqYQSC97CFT/DQxID2sIpK8zBLqZQyC9dRDoajIyID1tIVD10zMg3S0ZSF4IJC8GkhcDyQuB5MVA8kIgeTGQvBhIXggkLwaSFwLJK3cBRvanB71ijlkAAAAASUVORK5CYII=');
1034
+ background-repeat: no-repeat;
1035
+ background-size: cover;
1036
+ display: inline-block;
1037
+ height: 7px;
1038
+ left: calc(50% - 4.6px);
1039
+ position: absolute;
1040
+ top: calc(50% - 3.6px);
1041
+ width: 7px;
1042
+ }
1043
+ }
1044
+
1045
+ .e-second-button {
1046
+ margin-top: $slider-btn-center-align;
1047
+ right: 0;
1048
+ top: 50%;
1049
+
1050
+ .e-button-icon {
1051
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAkFBMVEUAAAD////////////////////////+/v7////////+/v7+/v7+/v7////////+/v7////+/v7+/v7+/v7+/v7+/v7////////+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7///9VYKa9AAAAL3RSTlMABAgMEBQYHCAoLDQ4PEBMUFhcZGx0eICDi5Obn6ers7vDx8vP19vf4+fr7/P3++LF0fAAAADNSURBVHgBldNHbsNAGEPhkZSi9F4S915k6d3/dga8Jgjw7bkYzPeXS5ObkkX3EQ5gcRcO6H/qbACbp3AAo6twwOEtHMCsDQecvqpsAKuHcMDw12QD2L2EA/C8EFleiCwvRJYXIssLmeGFzPBCZnghM7yQGV7IDC9Eglc26D6zwfS2JIP9a/To4b8pyWD9GH1c/11FNOZthO/4nvEeX5dksH2OTnT4rUsyWN4Xk4cj8nBEHo7IwxF5OCIPR+ThiDwckYcj8nBEHo5Iw5GdAVm8p9sPUXNKAAAAAElFTkSuQmCC');
1052
+ background-repeat: no-repeat;
1053
+ background-size: cover;
1054
+ display: inline-block;
1055
+ height: 7px;
1056
+ left: calc(50% - 2.6px);
1057
+ position: absolute;
1058
+ top: calc(50% - 3.6px);
1059
+ width: 7px;
1060
+ }
1061
+ }
1062
+ }
1063
+ @else if ($skin-name != 'highcontrast' and $skin-name != 'highcontrast-light') {
1064
+ .e-first-button {
1065
+ left: 0;
1066
+ margin-top: $slider-btn-center-align;
1067
+ top: 50%;
1068
+
1069
+ @if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI' and $skin-name != 'Material3') {
1070
+ .e-button-icon {
1071
+ background-image: $slider-button-hleft-bg-image;
1072
+ background-repeat: no-repeat;
1073
+ background-size: cover;
1074
+ height: 8px;
1075
+ left: calc(50% - 5px);
1076
+ position: absolute;
1077
+ top: calc(50% - 4px);
1078
+ width: 8px;
1079
+ }
1080
+ }
1081
+ @else if($skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
1082
+ .e-button-icon {
1083
+ font-family: 'e-icons';
1084
+ }
1085
+
1086
+ .e-button-icon::before {
1087
+ color: $slider-button-icon-bg-color;
1088
+ content: '\e738';
1089
+ @if ($skin-name == 'FluentUI') {
1090
+ font-size: 14px;
1091
+ }
1092
+ @else if ($skin-name == 'Material3') {
1093
+ font-size: 16px;
1094
+ }
1095
+ @else {
1096
+ font-size: 17px;
1097
+ }
1098
+ }
1099
+ }
1100
+ @else {
1101
+ .e-button-icon::before {
1102
+ font-size: 17px;
1103
+ @if ($skin-name == 'tailwind') {
1104
+ color: $slider-button-icon-bg-color;
1105
+ content: '\e765';
1106
+ }
1107
+ @else {
1108
+ content: '\e761';
1109
+ }
1110
+ }
1111
+ }
1112
+ }
1113
+
1114
+ .e-second-button {
1115
+ margin-top: $slider-btn-center-align;
1116
+ right: 0;
1117
+ top: 50%;
1118
+
1119
+ @if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI' and $skin-name != 'Material3') {
1120
+ .e-button-icon {
1121
+ background-image: $slider-button-hright-bg-image;
1122
+ background-repeat: no-repeat;
1123
+ background-size: cover;
1124
+ height: 8px;
1125
+ left: calc(50% - 3px);
1126
+ position: absolute;
1127
+ top: calc(50% - 4px);
1128
+ width: 8px;
1129
+ }
1130
+ }
1131
+ @else if($skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
1132
+ .e-button-icon {
1133
+ font-family: 'e-icons';
1134
+ }
1135
+
1136
+ .e-button-icon::before {
1137
+ color: $slider-button-icon-bg-color;
1138
+ content: '\e75c';
1139
+ @if ($skin-name == 'FluentUI') {
1140
+ font-size: 14px;
1141
+ }
1142
+ @else if ($skin-name == 'Material3') {
1143
+ font-size: 16px;
1144
+ }
1145
+ @else {
1146
+ font-size: 17px;
1147
+ margin-left: 1px;
1148
+ }
1149
+ }
1150
+ }
1151
+ @else {
1152
+ .e-button-icon::before {
1153
+ font-size: 18px;
1154
+ @if ($skin-name == 'tailwind') {
1155
+ color: $slider-button-icon-bg-color;
1156
+ content: '\e748';
1157
+ }
1158
+ @else {
1159
+ content: '\e707';
1160
+ }
1161
+ }
1162
+ }
1163
+ }
1164
+ }
1165
+ @else {
1166
+ .e-first-button {
1167
+ left: 0;
1168
+ margin-top: $slider-btn-center-align;
1169
+ top: 50%;
1170
+
1171
+ .e-button-icon {
1172
+ font-family: 'e-icons';
1173
+ }
1174
+
1175
+ .e-button-icon::before {
1176
+ color: $slider-button-icon-color;
1177
+ content: '\e829';
1178
+ font-size: 8px;
1179
+ font-weight: 600;
1180
+ left: calc(50% - 5px);
1181
+ position: absolute;
1182
+ top: calc(50% - 4px);
1183
+ }
1184
+ }
1185
+
1186
+ .e-second-button {
1187
+ margin-top: $slider-btn-center-align;
1188
+ right: 0;
1189
+ top: 50%;
1190
+
1191
+ .e-button-icon {
1192
+ font-family: 'e-icons';
1193
+ }
1194
+
1195
+ .e-button-icon::before {
1196
+ color: $slider-button-icon-color;
1197
+ content: '\e830';
1198
+ font-size: 8px;
1199
+ font-weight: 600;
1200
+ left: calc(50% - 3px);
1201
+ position: absolute;
1202
+ top: calc(50% - 4px);
1203
+ }
1204
+ }
1205
+ }
1206
+
1207
+ &.e-slider-btn {
1208
+ padding: $slider-button-horizon-padding;
1209
+ }
1210
+
1211
+ .e-slider {
1212
+ height: 32px;
1213
+ position: relative;
1214
+ top: calc(50% - 16px);
1215
+ width: 100%;
1216
+ }
1217
+
1218
+ .e-slider-track {
1219
+ height: $slider-container-height;
1220
+ left: 0;
1221
+ position: absolute;
1222
+ width: 100%;
1223
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
1224
+ background: $slider-handle-start-border-color;
1225
+ overflow: hidden;
1226
+ top: calc(50% - 1px);
1227
+ }
1228
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI') {
1229
+ background: $slider-track-color;
1230
+ overflow: hidden;
1231
+ top: calc(50% - 2px);
1232
+ @if $skin-name == 'FluentUI' {
1233
+ border-radius: 2px;
1234
+ }
1235
+ }
1236
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'Material3' or $skin-name == 'Material3-dark') {
1237
+ background: $slider-track-color;
1238
+ border-radius: 4px;
1239
+ overflow: hidden;
1240
+ top: calc(50% - 4px);
1241
+ }
1242
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5') {
1243
+ top: calc(50% - 3px);
1244
+ }
1245
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
1246
+ background: $slider-handle-start-border-color;
1247
+ border: 1px solid $slider-track-border-color;
1248
+ border-radius: 4px;
1249
+ overflow: hidden;
1250
+ top: calc(50% - 5px);
1251
+ }
1252
+ @if $skin-name == 'bootstrap4' {
1253
+ background: $slider-handle-start-border-color;
1254
+ border-radius: 6px;
1255
+ overflow: hidden;
1256
+ }
1257
+ }
1258
+
1259
+ .e-handle {
1260
+ @if ($skin-name == 'material' or $skin-name == 'material-dark' or $skin-name == 'bootstrap5') {
1261
+ margin-left: -6px;
1262
+ top: calc(50% - 6px);
1263
+ }
1264
+ @else if ($skin-name == 'bootstrap4') {
1265
+ margin-left: -7px;
1266
+ top: calc(50% - 7px);
1267
+ }
1268
+ @else if($skin-name == 'Material3') {
1269
+ margin-left: -10px;
1270
+ top: calc(50% - 12px);
1271
+ }
1272
+ @else {
1273
+ @if ($skin-name == 'tailwind') {
1274
+ margin-left: -6px;
1275
+ }
1276
+ @else {
1277
+ margin-left: -8px;
1278
+ }
1279
+ top: calc(50% - 8px);
1280
+ }
1281
+ }
1282
+
1283
+ &.e-scale-both {
1284
+ .e-handle {
1285
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
1286
+ margin-left: -8px;
1287
+ top: calc(50% - 7px);
1288
+ }
1289
+ }
1290
+
1291
+ .e-range {
1292
+ height: $slider-range-height;
1293
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
1294
+ top: calc(50% - 2px);
1295
+ }
1296
+ }
1297
+ }
1298
+
1299
+ .e-range {
1300
+ height: $slider-range-height;
1301
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
1302
+ top: calc(50% - 1px);
1303
+ }
1304
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI') {
1305
+ top: calc(50% - 2px);
1306
+ }
1307
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' or $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5') {
1308
+ top: calc(50% - 3px);
1309
+ }
1310
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'tailwind' or $skin-name == 'Material3') {
1311
+ top: calc(50% - 4px);
1312
+ }
1313
+ }
1314
+
1315
+ .e-limits {
1316
+ background-color: $slider-limit-bar-color;
1317
+ height: $slider-limit-bar-horizontal-height;
1318
+ position: absolute;
1319
+ top: $slider-limit-bar-top;
1320
+ @if ($skin-name == 'bootstrap5') {
1321
+ border-radius: 4px;
1322
+ }
1323
+ @if ($skin-name == 'FluentUI') {
1324
+ border-radius: 2px;
1325
+ }
1326
+ }
1327
+ }
1328
+
1329
+ &.e-vertical {
1330
+ height: inherit;
1331
+ @if ($skin-name == 'tailwind') {
1332
+ padding: 28px 0;
1333
+ }
1334
+ @else if ($skin-name == 'FluentUI') {
1335
+ padding: 32px 0;
1336
+ }
1337
+ @else {
1338
+ padding: 38px 0;
1339
+ }
1340
+ width: 48px;
1341
+ @if ($skin-name == 'bootstrap4') {
1342
+ padding: 30px 0;
1343
+ }
1344
+
1345
+ @if ($skin-name == 'bootstrap5') {
1346
+ padding: 28px 0;
1347
+ }
1348
+
1349
+ .e-slider {
1350
+ height: 100%;
1351
+ @if ($skin-name == 'FluentUI') {
1352
+ left: calc(50% - 15px);
1353
+ }
1354
+ @else {
1355
+ left: calc(50% - 16px);
1356
+ }
1357
+ position: relative;
1358
+ width: 32px;
1359
+ }
1360
+
1361
+ .e-slider-track {
1362
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
1363
+ background: $slider-track-color;
1364
+ }
1365
+ @if ($skin-name != 'highcontrast' and $skin-name != 'highcontrast-light' and $skin-name != 'FluentUI' and $skin-name != 'Material3') {
1366
+ background: $slider-handle-start-border-color;
1367
+ }
1368
+ bottom: 0;
1369
+ height: 100%;
1370
+ position: absolute;
1371
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
1372
+ @if ($skin-name == 'tailwind') {
1373
+ left: calc(50%);
1374
+ }
1375
+ @else {
1376
+ left: calc(50% - 2px);
1377
+ }
1378
+ overflow: hidden;
1379
+ width: 4px;
1380
+ }
1381
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
1382
+ left: calc(50% - 4px);
1383
+ overflow: hidden;
1384
+ width: 8px;
1385
+ }
1386
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
1387
+ border: 1px solid $slider-track-border-color;
1388
+ border-radius: 3px;
1389
+ left: calc(50% - 5px);
1390
+ overflow: hidden;
1391
+ width: 10px;
1392
+ }
1393
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5') {
1394
+ left: calc(50% - 3px);
1395
+ overflow: hidden;
1396
+ width: 6px;
1397
+ }
1398
+ @if ($skin-name == 'bootstrap4') {
1399
+ border-radius: 6px;
1400
+ }
1401
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
1402
+ left: calc(50% - 1px);
1403
+ overflow: hidden;
1404
+ width: 2px;
1405
+ }
1406
+ @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
1407
+ border-radius: 4px;
1408
+ }
1409
+ @if ($skin-name == 'FluentUI') {
1410
+ border-radius: 2px;
1411
+ }
1412
+ }
1413
+
1414
+ &.e-small-size {
1415
+ &.e-slider-btn {
1416
+ height: 100%;
1417
+ padding: $slider-button-vertical-padding;
1418
+
1419
+ .e-slider {
1420
+ height: 100%;
1421
+ width: $slider-height;
1422
+ }
1423
+ }
1424
+ }
1425
+
1426
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
1427
+ .e-first-button {
1428
+ bottom: 0;
1429
+ margin-right: $slider-btn-center-align;
1430
+ right: 50%;
1431
+
1432
+ .e-button-icon {
1433
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAjVBMVEUAAAD////////////////////////+/v7////+/v7////////+/v7////////+/v7+/v7+/v7+/v7////+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7////1kjJ6AAAALnRSTlMABAgMEBQYHCAkKDA4QERITFRcYGRodHyDj5OXn6Ons7e7v8vP09ff5+vv8/f7zZvJMAAAAItJREFUeAHdyVcagjAQBsAfUVTAXsTeSTRm7388i/kUQjYHYF4H9bAUXjuEV/KQEdC98f9I8dLXxJngY879CsbG/ccARuPsetHCT1tWXyUoSDXZRiiZ2p/Bsi7/HrbgVPw8REUk/n+P4ZAoMvQATmMyFmBk39+CExzefwnBauZEsgOPWOkevIYz1NEToo45F58KJy0AAAAASUVORK5CYII=');
1434
+ background-repeat: no-repeat;
1435
+ background-size: cover;
1436
+ display: inline-block;
1437
+ height: 8px;
1438
+ left: calc(50% - 3.8px);
1439
+ position: absolute;
1440
+ top: calc(50% - 2.7px);
1441
+ width: 8px;
1442
+ }
1443
+ }
1444
+
1445
+ .e-second-button {
1446
+ margin-right: $slider-btn-center-align;
1447
+ right: 50%;
1448
+ top: 0;
1449
+
1450
+ .e-button-icon {
1451
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAjVBMVEUAAAD////////////////////////////////+/v7////+/v7+/v7////////+/v7+/v7////+/v7////+/v7+/v7////+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7+/v7////wrNfvAAAALnRSTlMABAgMEBQYICgsMDQ4QERITFBcYGhseHyDi5Obn6Ort7u/x8/X29/j5+vv8/f77y3LJgAAAI1JREFUeAHdyVeagjAUBtCbYQTsXewFENGYf//LsyB8kORmAZzXQ600mLrfz2XX9X8xcO0Qb4+3s2B/ia8N9yOFwtz+wR0/z77tvQSVm0+mI2piYXyEhp3+E2gWzQ8lNGpY//8UhjygijjBIvGotIbVofwZGFHxPQmGGn/ez8B6hETiAofUo1XmtKVWeAEhzjgqqZr/lwAAAABJRU5ErkJggg==');
1452
+ background-repeat: no-repeat;
1453
+ background-size: cover;
1454
+ display: inline-block;
1455
+ height: 8px;
1456
+ left: calc(50% - 3.8px);
1457
+ position: absolute;
1458
+ top: calc(50% - 4.7px);
1459
+ width: 8px;
1460
+ }
1461
+ }
1462
+ }
1463
+ @else if ($skin-name != 'highcontrast' and $skin-name != 'highcontrast-light') {
1464
+ .e-first-button {
1465
+ bottom: 0;
1466
+ margin-right: $slider-btn-center-align;
1467
+ right: 50%;
1468
+
1469
+ @if $skin-name == 'Material3' {
1470
+ margin-right: $slider-btn-vertical-center-align;
1471
+ }
1472
+
1473
+ @if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI' and $skin-name != 'Material3') {
1474
+ .e-button-icon {
1475
+ background-image: $slider-button-vdown-bg-image;
1476
+ background-repeat: no-repeat;
1477
+ background-size: cover;
1478
+ display: inline-block;
1479
+ height: 8px;
1480
+ left: calc(50% - 4px);
1481
+ position: absolute;
1482
+ top: calc(50% - 3.6px);
1483
+ width: 8px;
1484
+ }
1485
+ }
1486
+ @else if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
1487
+ .e-button-icon {
1488
+ font-family: 'e-icons';
1489
+ }
1490
+
1491
+ .e-button-icon::before {
1492
+ color: $slider-button-icon-bg-color;
1493
+ @if ($skin-name == 'bootstrap5') {
1494
+ content: '\e734';
1495
+ font-size: 18px;
1496
+ }
1497
+ @else if ($skin-name == 'Material3') {
1498
+ content: '\e734';
1499
+ font-size: 16px;
1500
+ }
1501
+ @else {
1502
+ content: '\e734';
1503
+ font-size: 14px;
1504
+ }
1505
+ }
1506
+ }
1507
+ @else {
1508
+ .e-button-icon::before {
1509
+ font-size: 18px;
1510
+ @if ($skin-name == 'tailwind') {
1511
+ color: $slider-button-icon-bg-color;
1512
+ content: '\e729';
1513
+ }
1514
+ @else {
1515
+ content: '\e729';
1516
+ }
1517
+ }
1518
+ }
1519
+ }
1520
+
1521
+ .e-second-button {
1522
+ margin-right: $slider-btn-center-align;
1523
+ right: 50%;
1524
+ top: 0;
1525
+
1526
+ @if $skin-name == 'Material3' {
1527
+ margin-right: $slider-btn-vertical-center-align;
1528
+ }
1529
+
1530
+ @if ($skin-name != 'tailwind' and $skin-name != 'bootstrap5' and $skin-name != 'FluentUI' and $skin-name != 'Material3') {
1531
+ .e-button-icon {
1532
+ background-image: $slider-button-vup-bg-image;
1533
+ background-repeat: no-repeat;
1534
+ background-size: cover;
1535
+ display: inline-block;
1536
+ height: 8px;
1537
+ left: calc(50% - 4px);
1538
+ position: absolute;
1539
+ top: calc(50% - 4.5px);
1540
+ width: 8px;
1541
+ }
1542
+ }
1543
+ @else if ($skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
1544
+ .e-button-icon {
1545
+ font-family: 'e-icons';
1546
+ }
1547
+
1548
+ .e-button-icon::before {
1549
+ color: $slider-button-icon-bg-color;
1550
+ @if ($skin-name == 'bootstrap5') {
1551
+ content: '\e7dd';
1552
+ font-size: 18px;
1553
+ }
1554
+ @else if ($skin-name == 'Material3') {
1555
+ content: '\e7dd';
1556
+ font-size: 16px;
1557
+ }
1558
+ @else {
1559
+ content: '\e7dd';
1560
+ font-size: 14px;
1561
+ }
1562
+ }
1563
+ }
1564
+ @else {
1565
+ .e-button-icon::before {
1566
+ font-size: 18px;
1567
+ @if ($skin-name == 'tailwind') {
1568
+ color: $slider-button-icon-bg-color;
1569
+ content: '\e776';
1570
+ }
1571
+ @else {
1572
+ content: '\e7a0';
1573
+ }
1574
+ }
1575
+ }
1576
+ }
1577
+ }
1578
+ @else {
1579
+ .e-first-button {
1580
+ bottom: 0;
1581
+ margin-right: $slider-btn-center-align;
1582
+ right: 50%;
1583
+
1584
+ .e-button-icon {
1585
+ font-family: 'e-icons';
1586
+ }
1587
+
1588
+ .e-button-icon::before {
1589
+ color: $slider-button-icon-color;
1590
+ content: '\e829';
1591
+ font-size: 9px;
1592
+ font-weight: 600;
1593
+ left: calc(50% - 4.15px);
1594
+ position: absolute;
1595
+ top: calc(50% - 4px);
1596
+ transform: rotate(-90deg);
1597
+ }
1598
+ }
1599
+
1600
+ .e-second-button {
1601
+ margin-right: $slider-btn-center-align;
1602
+ right: 50%;
1603
+ top: 0;
1604
+
1605
+ .e-button-icon {
1606
+ font-family: 'e-icons';
1607
+ }
1608
+
1609
+ .e-button-icon::before {
1610
+ color: $slider-button-icon-color;
1611
+ content: '\e829';
1612
+ font-size: 9px;
1613
+ font-weight: 600;
1614
+ left: calc(50% - 5.5px);
1615
+ position: absolute;
1616
+ top: calc(50% - 5.8px);
1617
+ transform: rotate(90deg);
1618
+ }
1619
+ }
1620
+ }
1621
+
1622
+ &.e-scale-both {
1623
+ .e-slider {
1624
+ .e-handle {
1625
+ margin-bottom: $slider-v-handle-margin;
1626
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
1627
+ left: calc(50% - 9px);
1628
+ }
1629
+ }
1630
+ }
1631
+ }
1632
+
1633
+ .e-slider {
1634
+ .e-handle {
1635
+ margin-bottom: $slider-v-handle-margin;
1636
+ @if ($skin-name == 'material' or $skin-name == 'material-dark' or $skin-name == 'bootstrap5') {
1637
+ left: calc(50% - 6px);
1638
+ }
1639
+ @else if($skin-name == 'bootstrap4') {
1640
+ left: calc(50% - 7px);
1641
+ }
1642
+ @else if($skin-name == 'tailwind') {
1643
+ left: calc(50% - 4px);
1644
+ }
1645
+ @else if($skin-name == 'Material3') {
1646
+ left: calc(50% - 10px);
1647
+ }
1648
+ @else {
1649
+ left: calc(50% - 8px);
1650
+ }
1651
+ }
1652
+
1653
+ .e-range {
1654
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
1655
+ left: calc(50% - 4px);
1656
+ width: 8px;
1657
+ }
1658
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'Material3') {
1659
+ left: calc(50% - 3px);
1660
+ width: 6px;
1661
+ }
1662
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
1663
+ @if ($skin-name == 'tailwind') {
1664
+ left: calc(50%);
1665
+ }
1666
+ @else {
1667
+ left: calc(50% - 2px);
1668
+ }
1669
+ @if ($skin-name == 'bootstrap5') {
1670
+ width: 6px;
1671
+ }
1672
+ @else {
1673
+ width: 4px;
1674
+ }
1675
+ }
1676
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
1677
+ left: calc(50% - 3px);
1678
+ width: 6px;
1679
+ }
1680
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
1681
+ left: calc(50% - 1px);
1682
+ width: 2px;
1683
+ }
1684
+ }
1685
+
1686
+ .e-limits {
1687
+ background-color: $slider-limit-bar-color;
1688
+ left: $slider-limit-bar-left;
1689
+ position: absolute;
1690
+ width: $slider-limit-bar-vertical-width;
1691
+ @if ($skin-name == 'bootstrap5') {
1692
+ border-radius: 4px;
1693
+ }
1694
+ @if ($skin-name == 'FluentUI') {
1695
+ border-radius: 2px;
1696
+ }
1697
+ }
1698
+ }
1699
+ }
1700
+
1701
+ .e-range {
1702
+ border-radius: $slider-range-border-radius;
1703
+ position: absolute;
1704
+ transition: left 300ms ease-out, right 300ms ease-out, bottom 300ms ease-out, width 300ms ease-out, height 300ms ease-out;
1705
+
1706
+ &.e-drag-horizontal {
1707
+ cursor: pointer;
1708
+ }
1709
+
1710
+ &.e-drag-vertical {
1711
+ cursor: pointer;
1712
+ }
1713
+ }
1714
+
1715
+ .e-slider {
1716
+ box-sizing: border-box;
1717
+ cursor: $slider-cursor;
1718
+ display: block;
1719
+ outline: 0 none;
1720
+ padding: 0;
1721
+ position: relative;
1722
+
1723
+ .e-handle {
1724
+ border-radius: $slider-border-radius-handle;
1725
+ @if ($skin-name == 'tailwind') {
1726
+ box-shadow: $slider-handle-box-shadow;
1727
+ }
1728
+ box-sizing: border-box;
1729
+ cursor: $slider-handle-hover-cursor;
1730
+ height: $slider-handle-height;
1731
+ outline: none;
1732
+ position: absolute;
1733
+ touch-action: none;
1734
+ transition: left 300ms ease-out, right 300ms ease-out, bottom 300ms ease-out, transform 300ms ease-out;
1735
+ width: $slider-handle-width;
1736
+ z-index: 10;
1737
+
1738
+ &.e-handle-active {
1739
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
1740
+ background-color: $slider-active-handle-bg-color;
1741
+ border-color: $slider-hover-handle-color;
1742
+ }
1743
+ }
1744
+
1745
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
1746
+ /* stylelint-disable */
1747
+ cursor: -webkit-grab;
1748
+ cursor: grab;
1749
+ /* stylelint-enable */
1750
+
1751
+ &.e-handle-active {
1752
+ /* stylelint-disable */
1753
+ cursor: -webkit-grabbing;
1754
+ cursor: grabbing;
1755
+ /* stylelint-enable */
1756
+ }
1757
+
1758
+ &.e-handle-start {
1759
+ background-color: $slider-handle-start-background;
1760
+ border: $slider-start-handle-border-size;
1761
+ }
1762
+
1763
+ &::after {
1764
+ -moz-box-sizing: content-box;
1765
+ -ms-transform: scale(0);
1766
+ -webkit-box-sizing: content-box;
1767
+ -webkit-transform: scale(0);
1768
+ border: 0 solid;
1769
+ border-radius: 50%;
1770
+ box-sizing: content-box;
1771
+ content: '';
1772
+ filter: alpha(opacity=26);
1773
+ height: 32px;
1774
+ left: calc(50% - 16px);
1775
+ opacity: .26;
1776
+ position: $slider-handle-after-position;
1777
+ top: calc(50% - 16px);
1778
+ transform: scale(0);
1779
+ transition: transform .4s cubic-bezier(.25, .8, .25, 1);
1780
+ width: 32px;
1781
+ z-index: -1;
1782
+ }
1783
+ }
1784
+
1785
+ &.e-tab-handle {
1786
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
1787
+ &.e-handle-start::after {
1788
+ background-color: $slider-tab-background;
1789
+ opacity: .38;
1790
+ }
1791
+
1792
+ &::after {
1793
+ -ms-transform: scale(1);
1794
+ -webkit-transform: scale(1);
1795
+ background-color: $slider-color;
1796
+ transform: scale(1);
1797
+ }
1798
+ }
1799
+
1800
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' or $skin-name == 'FluentUI') {
1801
+ border-color: $slider-tab-border-color;
1802
+ }
1803
+
1804
+ /* stylelint-disable */
1805
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
1806
+ background-color: $slider-tab-background;
1807
+ border-color: $slider-tab-border-color;
1808
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
1809
+ }
1810
+ @if ($skin-name == 'bootstrap4') {
1811
+ background-color: $slider-tab-background;
1812
+ border-color: $slider-tab-border-color;
1813
+ box-shadow: $slider-tab-active-box-shadow;
1814
+ }
1815
+ @if ($skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'Material3') {
1816
+ @if $skin-name == 'Material3' {
1817
+ background: $slider-tab-background;
1818
+ }
1819
+ @else {
1820
+ background-color: $slider-tab-background;
1821
+ border: $slider-tab-border;
1822
+ }
1823
+ box-shadow: $slider-tab-active-box-shadow;
1824
+ }
1825
+ /* stylelint-enable */
1826
+ }
1827
+ }
1828
+
1829
+ .e-tab-track {
1830
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI') {
1831
+ background-color: $slider-tab-track-color;
1832
+ }
1833
+ }
1834
+ }
1835
+
1836
+ .e-tick-before {
1837
+ &.e-scale {
1838
+ &.e-h-scale {
1839
+ .e-tick {
1840
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1841
+ height: $tick-after-height;
1842
+ top: $tick-after-top;
1843
+ }
1844
+ @else {
1845
+ background-position: bottom;
1846
+ height: 50%;
1847
+ top: 1px;
1848
+ }
1849
+ }
1850
+
1851
+ .e-large {
1852
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1853
+ height: $largetick-before-height;
1854
+ top: $largetick-before-top;
1855
+ }
1856
+ }
1857
+ }
1858
+
1859
+ &.e-v-scale {
1860
+ .e-tick {
1861
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1862
+ left: $tick-after-left;
1863
+ width: $tick-after-height;
1864
+ }
1865
+ @else {
1866
+ background-position: right;
1867
+ left: 1px;
1868
+ width: 50%;
1869
+ }
1870
+ }
1871
+
1872
+ .e-large {
1873
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1874
+ left: $largetick-before-left;
1875
+ width: $largetick-before-height;
1876
+ }
1877
+ }
1878
+ }
1879
+ }
1880
+ }
1881
+
1882
+ .e-tick-after {
1883
+ &.e-scale {
1884
+ &.e-h-scale {
1885
+ .e-tick {
1886
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1887
+ height: $tick-before-height;
1888
+ top: $tick-before-top;
1889
+ }
1890
+ @else {
1891
+ background-position-x: center;
1892
+ height: 50%;
1893
+ top: calc(50% - 1px);
1894
+ }
1895
+ }
1896
+
1897
+ .e-large {
1898
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1899
+ height: $largetick-after-height;
1900
+ top: $largetick-after-top;
1901
+ }
1902
+ }
1903
+ }
1904
+
1905
+ &.e-v-scale {
1906
+ .e-tick {
1907
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1908
+ left: $tick-before-left;
1909
+ width: $tick-before-height;
1910
+ }
1911
+ @else {
1912
+ background-position: left;
1913
+ left: calc(50% - 1px);
1914
+ width: 50%;
1915
+ }
1916
+ }
1917
+
1918
+ .e-large {
1919
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1920
+ left: $largetick-after-left;
1921
+ width: $largetick-after-height;
1922
+ }
1923
+ }
1924
+ }
1925
+ }
1926
+ }
1927
+
1928
+ &.e-scale-before {
1929
+ .e-scale {
1930
+ &.e-v-scale {
1931
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1932
+ right: 9px;
1933
+ }
1934
+ }
1935
+ }
1936
+ }
1937
+
1938
+ &.e-scale-after {
1939
+ .e-scale {
1940
+ &.e-v-scale {
1941
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
1942
+ right: 9px;
1943
+ }
1944
+ }
1945
+ }
1946
+ }
1947
+
1948
+ .e-tick-both {
1949
+ &.e-scale {
1950
+ &.e-h-scale {
1951
+ .e-tick {
1952
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
1953
+ height: calc(100% - 6px);
1954
+ top: -11px;
1955
+ }
1956
+ @if ($skin-name == 'bootstrap4') {
1957
+ height: 16px;
1958
+ top: -8px;
1959
+ }
1960
+ @if ($skin-name == 'bootstrap5') {
1961
+ height: 18px;
1962
+ top: -11px;
1963
+ }
1964
+ @if ($skin-name == 'Material3') {
1965
+ height: 18px;
1966
+ top: -13px;
1967
+ }
1968
+ @if ($skin-name == 'tailwind') {
1969
+ height: 16px;
1970
+ top: -16px;
1971
+ }
1972
+
1973
+ @if ($skin-name == 'FluentUI') {
1974
+ height: 30px;
1975
+ top: -17px;
1976
+ }
1977
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark') {
1978
+ height: calc(100% - 3px);
1979
+ top: -12.5px;
1980
+ }
1981
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
1982
+ height: calc(100% - 6px);
1983
+ top: -12px;
1984
+ }
1985
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
1986
+ background-position: center;
1987
+ height: 99%;
1988
+ }
1989
+ }
1990
+
1991
+ .e-large {
1992
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
1993
+ height: 100%;
1994
+ top: -8px;
1995
+ }
1996
+ @if ($skin-name == 'bootstrap4') {
1997
+ height: 22px;
1998
+ top: -5px;
1999
+ }
2000
+ @if ($skin-name == 'bootstrap5') {
2001
+ height: 26px;
2002
+ top: -7px;
2003
+ }
2004
+ @if ($skin-name == 'tailwind') {
2005
+ height: 24px;
2006
+ top: -12px;
2007
+ }
2008
+ @if ($skin-name == 'FluentUI') {
2009
+ height: 38px;
2010
+ top: -13px;
2011
+ }
2012
+ @if ($skin-name == 'Material3') {
2013
+ height: 26px;
2014
+ top: -10px;
2015
+ }
2016
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
2017
+ height: calc(100% + 3px);
2018
+ top: -9px;
2019
+ }
2020
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
2021
+ height: calc(100% + 2px);
2022
+ top: -8px;
2023
+ }
2024
+ }
2025
+ }
2026
+
2027
+ &.e-v-scale {
2028
+ .e-tick {
2029
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
2030
+ background-position: center;
2031
+ width: 100%;
2032
+ }
2033
+ @if ($skin-name == 'bootstrap4') {
2034
+ background-position: center;
2035
+ left: 6px;
2036
+ width: calc(100% - 12px);
2037
+ }
2038
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'Material3') {
2039
+ background-position: center;
2040
+ left: 5px;
2041
+ width: 18px;
2042
+ }
2043
+ @if ($skin-name == 'tailwind') {
2044
+ left: 6px;
2045
+ width: 16px;
2046
+ }
2047
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2048
+ background-position: center;
2049
+ width: 100%;
2050
+ }
2051
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI') {
2052
+ left: 0;
2053
+ width: calc(100% - 2px);
2054
+ }
2055
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
2056
+ left: 2px;
2057
+ width: calc(100% - 6px);
2058
+ }
2059
+ }
2060
+
2061
+ .e-large {
2062
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark') {
2063
+ width: 100%;
2064
+ }
2065
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5') {
2066
+ left: 3px;
2067
+ width: calc(100% - 6px);
2068
+ }
2069
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'Material3') {
2070
+ left: 1px;
2071
+ width: 26px;
2072
+ }
2073
+ @if ($skin-name == 'tailwind') {
2074
+ left: 3px;
2075
+ width: 24px;
2076
+ }
2077
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2078
+ width: 100%;
2079
+ }
2080
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
2081
+ left: -2px;
2082
+ width: calc(100% + 3px);
2083
+ }
2084
+ }
2085
+ }
2086
+ }
2087
+ }
2088
+
2089
+ .e-scale {
2090
+ box-sizing: content-box;
2091
+ font-family: $slider-scale-font-family;
2092
+ height: 28px;
2093
+ line-height: normal;
2094
+ list-style: none outside none;
2095
+ margin: 0;
2096
+ outline: 0 none;
2097
+ padding: 0;
2098
+ position: absolute;
2099
+ top: $slider-scale-top;
2100
+ width: 100%;
2101
+ z-index: 1;
2102
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
2103
+ font-size: $slider-scale-font-size;
2104
+ margin-top: $slider-center-align;
2105
+ }
2106
+
2107
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
2108
+ z-index: -1;
2109
+ }
2110
+
2111
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
2112
+ &.e-tick-both {
2113
+ top: 12px;
2114
+ }
2115
+ }
2116
+
2117
+ .e-tick {
2118
+ @if ($theme-name == 'bootstrap5-dark' or $theme-name == 'tailwind-dark' or $theme-name == 'fluentui-dark') {
2119
+ background-image: $slider-scale-tick-image-dark;
2120
+ }
2121
+ @else {
2122
+ background-image: $slider-scale-tick-image;
2123
+ }
2124
+ cursor: $slider-cursor;
2125
+ outline: none;
2126
+ position: relative;
2127
+ user-select: none;
2128
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
2129
+ background-position: center center;
2130
+ }
2131
+
2132
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'Material3') {
2133
+ &.e-large {
2134
+ @if ($skin-name != 'bootstrap4') {
2135
+ background-image: $slider-scale-tick-image-dark;
2136
+ }
2137
+ @else {
2138
+ background-image: $slider-small-scale-tick-image;
2139
+ }
2140
+ }
2141
+ }
2142
+
2143
+ .e-tick-value {
2144
+ color: $slider-tick-font-color;
2145
+ font-family: $slider-scale-font-family;
2146
+ font-size: $slider-scale-font-size;
2147
+ outline: none;
2148
+ position: absolute;
2149
+ user-select: none;
2150
+ white-space: nowrap;
2151
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'bootstrap5' or $skin-name == 'Material3') {
2152
+ line-height: 1.5;
2153
+ }
2154
+ @if ($skin-name == 'tailwind') {
2155
+ line-height: 18px;
2156
+ }
2157
+ }
2158
+ }
2159
+
2160
+ &.e-v-scale {
2161
+ height: 100%;
2162
+ @if ($skin-name == 'tailwind') {
2163
+ left: calc(50% - 12px);
2164
+ }
2165
+ @else {
2166
+ left: calc(50% - 14px);
2167
+ }
2168
+ top: 0;
2169
+ width: 28px;
2170
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap4' or $skin-name == 'bootstrap5') {
2171
+ margin-top: -2px;
2172
+ }
2173
+
2174
+ .e-tick {
2175
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2176
+ background-repeat: no-repeat;
2177
+ }
2178
+
2179
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
2180
+ background-repeat: repeat-x;
2181
+ }
2182
+
2183
+ &.e-first-tick {
2184
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
2185
+ background-position-y: center;
2186
+ }
2187
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2188
+ background-position-y: top;
2189
+ }
2190
+ }
2191
+
2192
+ &.e-last-tick {
2193
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
2194
+ background-position-y: bottom;
2195
+ margin-top: 2px;
2196
+ @if ($skin-name == 'tailwind') {
2197
+ margin-top: 3px;
2198
+ }
2199
+ }
2200
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2201
+ background-position-y: bottom;
2202
+ }
2203
+ }
2204
+ }
2205
+ }
2206
+
2207
+ &.e-h-scale {
2208
+ &.e-tick-after {
2209
+ @if ($skin-name == 'tailwind') {
2210
+ top: 3px;
2211
+ }
2212
+ }
2213
+
2214
+ &.e-tick-before {
2215
+ @if ($skin-name == 'tailwind') {
2216
+ top: 15px;
2217
+ }
2218
+ }
2219
+
2220
+ .e-tick {
2221
+ display: inline-block;
2222
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2223
+ background-repeat: no-repeat;
2224
+ }
2225
+
2226
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
2227
+ background-repeat: repeat-y;
2228
+ height: 100%;
2229
+ top: 0;
2230
+ }
2231
+
2232
+ .e-tick-value {
2233
+ &.e-tick-before {
2234
+ top: -18px;
2235
+ }
2236
+
2237
+ &.e-tick-after {
2238
+ bottom: -20px;
2239
+ }
2240
+
2241
+ &.e-tick-both {
2242
+ bottom: -20px;
2243
+
2244
+ &:first-child {
2245
+ top: -18px;
2246
+ }
2247
+ }
2248
+ }
2249
+
2250
+ &.e-first-tick {
2251
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
2252
+ background-position: left center;
2253
+ }
2254
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2255
+ background-position-x: left;
2256
+ }
2257
+ }
2258
+
2259
+ &.e-last-tick {
2260
+ @if ($skin-name != 'material' and $skin-name != 'material-dark') {
2261
+ background-position: right center;
2262
+ }
2263
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2264
+ background-position-x: right;
2265
+ }
2266
+ }
2267
+ }
2268
+ }
2269
+ }
2270
+
2271
+ &.e-horizontal {
2272
+ &.e-scale-both {
2273
+ .e-scale {
2274
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI') {
2275
+ top: 12px;
2276
+ }
2277
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap4' or $skin-name == 'tailwind' or $skin-name == 'bootstrap5') {
2278
+ top: 15px;
2279
+ }
2280
+ }
2281
+
2282
+ .e-slider-track {
2283
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI') {
2284
+ border-color: $slider-track-border-color;
2285
+ border-radius: 1px;
2286
+ border-style: solid;
2287
+ border-width: 5px 0;
2288
+ height: 14px;
2289
+ margin-top: -4px;
2290
+ top: calc(50% - 3px);
2291
+ }
2292
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
2293
+ border-color: $slider-tack-ticks-border-color;
2294
+ border-radius: 4px;
2295
+ border-style: solid;
2296
+ border-width: 4px;
2297
+ height: 14px;
2298
+ top: calc(50% - 6px);
2299
+ }
2300
+ }
2301
+ }
2302
+ }
2303
+
2304
+ &.e-vertical {
2305
+ &.e-scale-both {
2306
+ .e-scale {
2307
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI') {
2308
+ right: 12px;
2309
+ }
2310
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
2311
+ right: 11px;
2312
+ }
2313
+ }
2314
+
2315
+ .e-slider-track {
2316
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI') {
2317
+ border-color: $slider-track-border-color;
2318
+ border-radius: 1px;
2319
+ border-style: solid;
2320
+ border-width: 0 5px;
2321
+ left: calc(50% - 1px);
2322
+ margin-left: -7px;
2323
+ width: 14px;
2324
+ }
2325
+ @if ($skin-name == 'highcontrast' or $skin-name == 'highcontrast-light') {
2326
+ border-color: $slider-tack-ticks-border-color;
2327
+ border-radius: 1px;
2328
+ border-style: solid;
2329
+ border-width: 0 5px;
2330
+ left: calc(50% - 1px);
2331
+ margin-left: -7px;
2332
+ width: 14px;
2333
+ }
2334
+ }
2335
+
2336
+ .e-range {
2337
+ @if ($skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'FluentUI') {
2338
+ margin-left: -1px;
2339
+ }
2340
+ }
2341
+ }
2342
+ }
2343
+
2344
+ &.e-scale-both {
2345
+ &.e-vertical {
2346
+ .e-scale {
2347
+ &.e-h-scale {
2348
+ @if $skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' or $skin-name == 'FluentUI' {
2349
+ margin-left: -7px;
2350
+ }
2351
+ }
2352
+ }
2353
+
2354
+ &.e-small-size {
2355
+ .e-scale {
2356
+ &.e-h-scale {
2357
+ @if $skin-name == 'fabric' or $skin-name == 'fabric-dark' or $skin-name == 'highcontrast' or $skin-name == 'highcontrast-light' or $skin-name == 'FluentUI' {
2358
+ margin-left: -7px;
2359
+ }
2360
+ }
2361
+ }
2362
+ }
2363
+ }
2364
+ }
2365
+ }
2366
+
2367
+ .e-control-wrapper.e-slider-container {
2368
+ &.e-vertical {
2369
+ &.e-scale-both {
2370
+ .e-scale.e-v-scale {
2371
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap4') {
2372
+ right: 10px;
2373
+ }
2374
+ }
2375
+ }
2376
+ }
2377
+
2378
+ .e-scale.e-v-scale {
2379
+ &.e-tick-after {
2380
+ @if ($skin-name == 'tailwind') {
2381
+ left: calc(50% - 17px);
2382
+ }
2383
+ }
2384
+
2385
+ &.e-tick-before {
2386
+ @if ($skin-name == 'tailwind') {
2387
+ left: calc(50% - 7px);
2388
+ }
2389
+ }
2390
+
2391
+ .e-tick {
2392
+ .e-tick-value {
2393
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2394
+ &.e-tick-before {
2395
+ right: 26px;
2396
+ }
2397
+
2398
+ &.e-tick-after {
2399
+ left: 27px;
2400
+ }
2401
+
2402
+ &.e-tick-both {
2403
+ right: 41px;
2404
+
2405
+ &:first-child {
2406
+ left: 39px;
2407
+ }
2408
+ }
2409
+ }
2410
+ @else {
2411
+ &.e-tick-before {
2412
+ right: 17px;
2413
+ }
2414
+
2415
+ &.e-tick-after {
2416
+ left: 19px;
2417
+ }
2418
+
2419
+ &.e-tick-both {
2420
+ @if $skin-name == 'bootstrap4' {
2421
+ right: 30px;
2422
+ }
2423
+ @else {
2424
+ right: 44px;
2425
+ }
2426
+
2427
+ &:first-child {
2428
+ @if $skin-name == 'bootstrap4' {
2429
+ left: 30px;
2430
+ }
2431
+ @else {
2432
+ left: 42px;
2433
+ }
2434
+ }
2435
+ }
2436
+ }
2437
+ }
2438
+ }
2439
+ }
2440
+ }
2441
+
2442
+ .e-control-wrapper.e-slider-container {
2443
+ .e-scale .e-tick {
2444
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2445
+ visibility: hidden;
2446
+ }
2447
+
2448
+ .e-tick-value {
2449
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2450
+ visibility: visible;
2451
+ }
2452
+ }
2453
+ }
2454
+ }
2455
+
2456
+ .e-control-wrapper.e-slider-container:hover {
2457
+ .e-scale .e-tick {
2458
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2459
+ visibility: visible;
2460
+ }
2461
+ }
2462
+ }
2463
+
2464
+ .e-control-wrapper.e-slider-container:active {
2465
+ .e-scale .e-tick {
2466
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2467
+ visibility: visible;
2468
+ }
2469
+ }
2470
+ }
2471
+
2472
+ .e-slider-hover .e-scale .e-tick {
2473
+ @if ($skin-name == 'material' or $skin-name == 'material-dark') {
2474
+ visibility: visible;
2475
+ }
2476
+ }
2477
+
2478
+ .e-control-wrapper.e-slider-container .e-slider {
2479
+ .e-handle.e-handle-active {
2480
+ @if ($skin-name == 'bootstrap' or $skin-name == 'bootstrap-dark' or $skin-name == 'bootstrap4') {
2481
+ background-color: $slider-handle-active-bg-color;
2482
+ border-color: $slider-handle-active-border-color;
2483
+ }
2484
+ @if ($skin-name == 'bootstrap4') {
2485
+ box-shadow: $slider-handle-active-box-shadow;
2486
+ }
2487
+ }
2488
+ }
2489
+ }