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

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