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

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