@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,989 @@
1
+ // uploader layout styles
2
+ @include export-module('uploader-layout') {
3
+ // For bigger class UI
4
+ .e-bigger {
5
+ .e-upload {
6
+ width: 100%;
7
+ @if $skin-name == 'FluentUI' {
8
+ border-radius: $upload-border-radius-bigger;
9
+ }
10
+
11
+ .e-file-select-wrap {
12
+ padding: $header-padding-bigger;
13
+
14
+ #{if(&, '&', '*')} .e-file-drop {
15
+ font-size: $drop-area-font-size;
16
+ margin-left: $drop-area-padding-left;
17
+ }
18
+ }
19
+
20
+ #{if(&, '&', '*')} .e-upload-files {
21
+
22
+ .e-upload-file-list {
23
+ font-size: $list-items-font-size;
24
+ line-height: $list-line-height;
25
+ min-height: $list-items-height;
26
+
27
+ .e-file-container {
28
+ margin-left: $list-item-margin-left;
29
+ top: $file-container-top-bigger;
30
+ }
31
+
32
+ .e-file-container .e-file-name {
33
+ font-size: $file-name-font-size;
34
+ padding-top: $file-name-padding-top;
35
+ }
36
+
37
+ .e-file-container .e-file-size {
38
+ font-size: $list-item-status-font-size;
39
+ @if $skin-name == 'tailwind' {
40
+ font-size: $list-item-file-size-font-size;
41
+ line-height: 22px;
42
+ }
43
+ padding: $file-size-padding;
44
+ }
45
+
46
+ .e-file-container .e-file-type {
47
+ font-size: $file-name-font-size;
48
+ padding-top: $file-name-padding-top;
49
+ top: initial;
50
+ }
51
+
52
+ .e-file-container .e-file-status,
53
+ .e-file-container .e-file-information {
54
+ font-size: $list-item-status-font-size;
55
+ padding-bottom: $file-name-padding-top;
56
+ }
57
+
58
+ .e-file-container .e-upload-progress-wrap {
59
+ height: $progress-bar-wrapper-height;
60
+
61
+ #{if(&, '&', '*')} .e-progress-inner-wrap {
62
+ height: $progress-inner-wrap-height;
63
+ width: $progress-bar-wrapper-width;
64
+
65
+ #{if(&, '&', '*')} .e-upload-progress-bar {
66
+ height: $progress-bar-height;
67
+ }
68
+ }
69
+
70
+ #{if(&, '&', '*')} .e-progress-bar-text {
71
+ font-size: $list-item-status-font-size-smaller;
72
+ right: $progress-bar-text-right;
73
+ top: $progress-bar-text-top;
74
+ }
75
+ }
76
+ }
77
+
78
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons,
79
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons,
80
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons,
81
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons,
82
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
83
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons {
84
+ box-sizing: border-box;
85
+ font-size: $remove-icon-font-size;
86
+ height: $remove-bigger-icon-height;
87
+ margin: $remove-icon-margin;
88
+ margin-top: $remove-icon-margin-top;
89
+ padding: $delete-icon-padding;
90
+ top: $remove-icon-top-smaller;
91
+ width: $remove-bigger-icon-width;
92
+ }
93
+
94
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
95
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
96
+ color: $disabled-state;
97
+ cursor: not-allowed;
98
+ opacity: .4;
99
+ pointer-events: none;
100
+ }
101
+
102
+ #{if(&, '&', '*')} .e-file-remove-btn.e-msie.e-icons,
103
+ #{if(&, '&', '*')} .e-file-delete-btn.e-msie.e-icons,
104
+ #{if(&, '&', '*')} .e-file-abort-btn.e-msie.e-icons,
105
+ #{if(&, '&', '*')} .e-file-reload-btn.e-msie.e-icons,
106
+ #{if(&, '&', '*')} .e-file-play-btn.e-msie.e-icons,
107
+ #{if(&, '&', '*')} .e-file-pause-btn.e-msie.e-icons {
108
+ padding: $icons-bigger-ie-padding;
109
+ }
110
+
111
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
112
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons,
113
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons {
114
+ right: $pause-play-button-right-value-bigger;
115
+ }
116
+
117
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons {
118
+ font-size: $delete-icon-font-size;
119
+ }
120
+
121
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons {
122
+ font-size: $abort-icon-font-size;
123
+ }
124
+ }
125
+
126
+ #{if(&, '&', '*')} .e-upload-actions .e-btn {
127
+ margin-left: $list-item-margin-left;
128
+ }
129
+
130
+ #{if(&, '&', '*')} .e-upload-actions {
131
+
132
+ .e-file-upload-btn {
133
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'FluentUI') {
134
+ margin: $footer-upload-buttons-margin;
135
+ }
136
+ @else if ($skin-name != 'bootstrap4' and $skin-name != 'FluentUI') {
137
+ margin: $footer-buttons-margin;
138
+ }
139
+ }
140
+
141
+ .e-file-clear-btn {
142
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'FluentUI') {
143
+ margin: $footer-clear-buttons-margin;
144
+ }
145
+ @else if ($skin-name != 'bootstrap4' and $skin-name != 'FluentUI') {
146
+ margin: $footer-buttons-margin;
147
+ }
148
+ }
149
+ }
150
+
151
+ #{if(&, '&', '*')}.e-rtl {
152
+ #{if(&, '&', '*')} .e-file-select-wrap {
153
+ padding: $header-padding-rtl-bigger;
154
+
155
+ #{if(&, '&', '*')} .e-control {
156
+ #{if(&, '&', '*')}.e-btn {
157
+ margin-right: $margin-rtl-header;
158
+ }
159
+ }
160
+
161
+ #{if(&, '&', '*')} .e-file-drop {
162
+ margin-right: $drop-area-padding-left;
163
+ }
164
+ }
165
+
166
+ #{if(&, '&', '*')} .e-upload-actions {
167
+
168
+ .e-file-upload-btn {
169
+ @if $skin-name == 'FluentUI' {
170
+ margin: $footer-upload-buttons-margin-rtl;
171
+ }
172
+ }
173
+
174
+ .e-file-clear-btn {
175
+ @if $skin-name == 'FluentUI' {
176
+ margin: $footer-clear-buttons-margin-rtl;
177
+ }
178
+ }
179
+ }
180
+
181
+ #{if(&, '&', '*')} .e-upload-files {
182
+ #{if(&, '&', '*')} .e-upload-file-list {
183
+ #{if(&, '&', '*')} .e-file-container {
184
+ margin-left: $file-container-left;
185
+ margin-right: $margin-rtl;
186
+
187
+ #{if(&, '&', '*')} .e-file-status,
188
+ #{if(&, '&', '*')} .e-file-information {
189
+ top: $file-status-rtl;
190
+ }
191
+
192
+ #{if(&, '&', '*')} .e-upload-progress-wrap {
193
+
194
+ #{if(&, '&', '*')} .e-progress-bar-text {
195
+ left: $progress-bar-text-right;
196
+ right: initial;
197
+ }
198
+ }
199
+ }
200
+
201
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons,
202
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons,
203
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons,
204
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons,
205
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
206
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons {
207
+ box-sizing: border-box;
208
+ left: $remove-icon-rtl-bigger;
209
+ margin-left: $margin-rtl;
210
+ margin-right: $margin-rtl;
211
+ padding: $delete-icon-padding;
212
+ top: $remove-icon-top;
213
+ @if $skin-name == 'FluentUI' {
214
+ margin-left: $margin-icon-rtl;
215
+ margin-right: $margin-icon-rtl;
216
+ }
217
+ }
218
+
219
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
220
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
221
+ color: $disabled-state;
222
+ cursor: not-allowed;
223
+ opacity: .4;
224
+ pointer-events: none;
225
+ }
226
+
227
+ #{if(&, '&', '*')} .e-file-remove-btn.e-msie.e-icons,
228
+ #{if(&, '&', '*')} .e-file-delete-btn.e-msie.e-icons,
229
+ #{if(&, '&', '*')} .e-file-abort-btn.e-msie.e-icons,
230
+ #{if(&, '&', '*')} .e-file-reload-btn.e-msie.e-icons,
231
+ #{if(&, '&', '*')} .e-file-play-btn.e-msie.e-icons,
232
+ #{if(&, '&', '*')} .e-file-pause-btn.e-msie.e-icons {
233
+ padding: $icons-bigger-ie-padding;
234
+ }
235
+
236
+ #{if(&, '&', '*')} .e-file-play-btn,
237
+ #{if(&, '&', '*')} .e-file-reload-btn,
238
+ #{if(&, '&', '*')} .e-file-pause-btn {
239
+ #{if(&, '&', '*')}.e-icons {
240
+ left: $pause-play-button-right-value-bigger-rtl;
241
+ }
242
+ }
243
+ }
244
+ }
245
+ }
246
+
247
+ #{if(&, '&', '*')}.e-form-upload .e-upload-files {
248
+ #{if(&, '&', '*')} .e-upload-file-list {
249
+ min-height: $form-upload-bigger-file-list-height;
250
+ padding-bottom: $form-upload-bigger-file-list-padding-bottom;
251
+ padding-top: $form-upload-bigger-file-list-padding-top;
252
+
253
+ #{if(&, '&', '*')} .e-file-container {
254
+ top: 0;
255
+
256
+ #{if(&, '&', '*')} .e-hidden-input {
257
+ display: none;
258
+ }
259
+
260
+ #{if(&, '&', '*')} .e-file-name,
261
+ #{if(&, '&', '*')} .e-file-type {
262
+ line-height: $form-upload-bigger-file-name-line-height;
263
+ padding-top: $form-upload-bigger-file-name-padding;
264
+ }
265
+
266
+ #{if(&, '&', '*')} .e-file-name.e-error,
267
+ #{if(&, '&', '*')} .e-file-type.e-error,
268
+ #{if(&, '&', '*')} .e-file-status.e-error {
269
+ color: $upload-failure-color;
270
+ }
271
+
272
+ #{if(&, '&', '*')} .e-file-status,
273
+ #{if(&, '&', '*')} .e-file-information {
274
+ color: $file-size-color;
275
+ display: block;
276
+ font-size: $form-upload-bigger-file-status-font-size;
277
+ line-height: $form-upload-bigger-file-name-line-height;
278
+ padding-bottom: 0;
279
+ padding-top: $form-upload-bigger-file-name-padding;
280
+ position: relative;
281
+ }
282
+ }
283
+
284
+ #{if(&, '&', '*')}.e-file-invalid {
285
+ color: $upload-failure-color;
286
+
287
+ #{if(&, '&', '*')} .e-file-name,
288
+ #{if(&, '&', '*')} .e-file-type,
289
+ #{if(&, '&', '*')} .e-file-status {
290
+ color: $upload-failure-color;
291
+ }
292
+ }
293
+ }
294
+
295
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons,
296
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons,
297
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons,
298
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons,
299
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
300
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons {
301
+ box-sizing: border-box;
302
+ top: $form-upload-bigger-remove-icon-top;
303
+ }
304
+
305
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
306
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
307
+ color: $disabled-state;
308
+ cursor: not-allowed;
309
+ opacity: .4;
310
+ pointer-events: none;
311
+ }
312
+ }
313
+ }
314
+ }
315
+
316
+ // For Desktop view
317
+
318
+ .e-upload,
319
+ .e-bigger.e-small .e-upload {
320
+ width: 100%;
321
+
322
+ #{if(&, '&', '*')}.e-control-wrapper {
323
+ font-family: $upload-root-font-family;
324
+ }
325
+
326
+ .e-hidden-file-input {
327
+ border: 0;
328
+ height: 0;
329
+ margin: 0;
330
+ outline: none;
331
+ padding: 0;
332
+ text-indent: 0;
333
+ visibility: hidden;
334
+ width: 0;
335
+ }
336
+
337
+ .e-file-select-wrap {
338
+ padding: $header-padding;
339
+
340
+ .e-file-select,
341
+ .e-file-select .e-uploader {
342
+ display: inline-block;
343
+ width: $upload-element-width;
344
+ }
345
+
346
+ .e-file-select .e-uploader {
347
+ opacity: $upload-element-opacity;
348
+ }
349
+
350
+ #{if(&, '&', '*')} .e-file-drop {
351
+ font-family: $upload-font-family;
352
+ font-size: $drop-area-font-size-smaller;
353
+ margin-left: $drop-area-padding-left-smaller;
354
+ }
355
+ }
356
+
357
+ #{if(&, '&', '*')}.e-form-upload .e-upload-files {
358
+ #{if(&, '&', '*')} .e-upload-file-list {
359
+ min-height: $form-upload-file-list-height;
360
+ padding-bottom: $form-upload-file-list-padding-bottom;
361
+ padding-top: $form-upload-file-list-padding-top;
362
+
363
+ #{if(&, '&', '*')} .e-file-container {
364
+ top: 0;
365
+
366
+ #{if(&, '&', '*')} .e-hidden-input {
367
+ display: none;
368
+ }
369
+
370
+ #{if(&, '&', '*')} .e-file-name,
371
+ #{if(&, '&', '*')} .e-file-type {
372
+ line-height: $form-upload-file-name-line-height;
373
+ padding-top: $form-upload-file-name-padding;
374
+ }
375
+
376
+ #{if(&, '&', '*')} .e-file-name.e-error,
377
+ #{if(&, '&', '*')} .e-file-type.e-error,
378
+ #{if(&, '&', '*')} .e-file-status.e-error {
379
+ color: $upload-failure-color;
380
+ }
381
+
382
+ #{if(&, '&', '*')} .e-file-status,
383
+ #{if(&, '&', '*')} .e-file-information {
384
+ color: $file-size-color;
385
+ display: block;
386
+ font-size: $form-upload-file-status-font-size;
387
+ line-height: $form-upload-file-name-line-height;
388
+ padding-bottom: 0;
389
+ padding-top: $form-upload-file-name-padding;
390
+ position: relative;
391
+ }
392
+ }
393
+
394
+ #{if(&, '&', '*')}.e-file-invalid {
395
+ color: $upload-failure-color;
396
+
397
+ #{if(&, '&', '*')} .e-file-name,
398
+ #{if(&, '&', '*')} .e-file-type,
399
+ #{if(&, '&', '*')} .e-file-status {
400
+ color: $upload-failure-color;
401
+ }
402
+ }
403
+ }
404
+
405
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons,
406
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons,
407
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons,
408
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons,
409
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
410
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons {
411
+ box-sizing: border-box;
412
+ top: $form-upload-remove-icon-top;
413
+ }
414
+
415
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
416
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
417
+ color: $disabled-state;
418
+ cursor: not-allowed;
419
+ opacity: .4;
420
+ pointer-events: none;
421
+ }
422
+ }
423
+
424
+ #{if(&, '&', '*')} .e-upload-files {
425
+ list-style-type: none;
426
+ margin: $select-file-margin;
427
+ padding: $select-file-padding;
428
+
429
+ .e-icons:focus {
430
+ @if ($skin-name == 'material' or $skin-name == 'Material3') {
431
+ outline: none;
432
+ }
433
+ }
434
+
435
+ .e-upload-file-list {
436
+ font-family: $upload-font-family;
437
+ font-size: $list-items-font-size-smaller;
438
+ height: 100%;
439
+ line-height: $list-line-height;
440
+ @if $skin-name == 'tailwind' {
441
+ line-height: $list-line-height-smaller;
442
+ }
443
+ min-height: $li-min-height;
444
+ position: relative;
445
+
446
+ .e-file-container {
447
+ display: block;
448
+ height: 100%;
449
+ margin-left: $list-item-margin-left-smaller;
450
+ margin-right: $list-item-margin-right;
451
+ min-height: $list-item-height;
452
+ position: relative;
453
+ top: $file-container-top;
454
+
455
+ .e-file-name {
456
+ float: left;
457
+ font-family: $file-name-font-family;
458
+ font-size: $file-name-font-size-smaller;
459
+ max-width: $list-item-name-width;
460
+ overflow: hidden;
461
+ padding-top: $file-name-padding-top-smaller;
462
+ position: relative;
463
+ text-overflow: ellipsis;
464
+ top: $file-name-top;
465
+ white-space: nowrap;
466
+ }
467
+
468
+ .e-file-name::before {
469
+ content: attr(data-tail);
470
+ float: right;
471
+ }
472
+
473
+ #{if(&, '&', '*')} .e-file-type {
474
+ display: block;
475
+ font-family: $file-name-font-family;
476
+ font-size: $file-name-font-size-smaller;
477
+ padding-top: $file-name-padding-top-smaller;
478
+ }
479
+
480
+ #{if(&, '&', '*')} .e-file-type.e-hidden {
481
+ visibility: hidden;
482
+ }
483
+
484
+ #{if(&, '&', '*')} .e-file-size {
485
+ display: block;
486
+ font-size: $list-item-status-font-size-smaller;
487
+ padding: $file-size-padding-smaller;
488
+ @if $skin-name == 'tailwind' {
489
+ font-size: $list-item-file-size-font-size-smaller;
490
+ line-height: 18px;
491
+ }
492
+ }
493
+
494
+ #{if(&, '&', '*')} .e-file-status,
495
+ #{if(&, '&', '*')} .e-file-information {
496
+ display: block;
497
+ font-family: $upload-font-family;
498
+ font-size: $list-item-status-font-size-smaller;
499
+ padding-bottom: $file-name-padding-top-smaller;
500
+
501
+ #{if(&, '&', '*')}.e-upload-progress {
502
+ display: none;
503
+ }
504
+ }
505
+
506
+ #{if(&, '&', '*')} .e-upload-progress-wrap {
507
+ display: block;
508
+ height: $progress-bar-wrapper-height-smaller;
509
+ padding-bottom: $progress-bar-bottom-paddding;
510
+ padding-top: $progress-bar-top-paddding;
511
+ position: absolute;
512
+ width: $progress-bar-wrapper-width;
513
+
514
+ #{if(&, '&', '*')} .e-progress-inner-wrap {
515
+ border-radius: $inner-wrap-radius;
516
+ display: block;
517
+ height: $progress-inner-wrap-height-smaller;
518
+ width: 100%;
519
+
520
+ #{if(&, '&', '*')} .e-upload-progress-bar {
521
+ border-radius: $progress-bar-radius;
522
+ display: inherit;
523
+ height: $progress-bar-height-smaller;
524
+ }
525
+ }
526
+
527
+ #{if(&, '&', '*')} .e-progress-bar-text {
528
+ float: right;
529
+ font-family: $upload-font-family;
530
+ font-size: $list-item-status-font-size-smaller;
531
+ position: relative;
532
+ right: $progress-bar-text-right-smaller;
533
+ top: $progress-bar-text-top-smaller;
534
+ }
535
+ }
536
+ }
537
+ }
538
+
539
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons,
540
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons,
541
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons,
542
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons,
543
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
544
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons {
545
+ align-items: center;
546
+ box-sizing: border-box;
547
+ cursor: pointer;
548
+ display: inline-flex;
549
+ font-size: $remove-icon-font-size-smaller;
550
+ height: $remove-icon-height;
551
+ justify-content: center;
552
+ margin: $remove-icon-margin-smaller;
553
+ margin-top: $remove-icon-margin-top-smaller;
554
+ padding: $remove-icon-padding-smaller;
555
+ position: absolute;
556
+ right: $remove-icon-right;
557
+ top: $remove-icon-top-smaller;
558
+ vertical-align: middle;
559
+ width: $remove-icon-width;
560
+
561
+ #{if(&, '&', '*')}.e-upload-progress {
562
+ cursor: default;
563
+ }
564
+ }
565
+
566
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
567
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
568
+ color: $disabled-state;
569
+ cursor: not-allowed;
570
+ opacity: .4;
571
+ pointer-events: none;
572
+ }
573
+
574
+ #{if(&, '&', '*')} .e-file-remove-btn.e-msie.e-icons,
575
+ #{if(&, '&', '*')} .e-file-delete-btn.e-msie.e-icons,
576
+ #{if(&, '&', '*')} .e-file-abort-btn.e-msie.e-icons,
577
+ #{if(&, '&', '*')} .e-file-pause-btn.e-msie.e-icons,
578
+ #{if(&, '&', '*')} .e-file-play-btn.e-msie.e-icons,
579
+ #{if(&, '&', '*')} .e-file-reload-btn.e-msie.e-icons {
580
+ padding: $icons-small-ie-padding;
581
+ }
582
+
583
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons,
584
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
585
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons {
586
+ right: $pause-play-button-right-value;
587
+ }
588
+
589
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons:not(.e-upload-progress):hover,
590
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons:not(.e-upload-progress):hover,
591
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons:not(.e-upload-progress):hover,
592
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons:not(.e-upload-progress):hover,
593
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons:hover,
594
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons:not(.e-disabled):hover,
595
+ #{if(&, '&', '*')} .e-clear-icon-focus {
596
+ @if $skin-name == 'Material3' {
597
+ background: $clear-icon-focus-color;
598
+ }
599
+ @if $skin-name != 'Material3' {
600
+ background-color: $clear-icon-focus-color;
601
+ }
602
+ border-color: transparent;
603
+ border-radius: $uploader-icons-hover-radius;
604
+ box-shadow: 0 0 0 transparent;
605
+ }
606
+
607
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons:not(.e-upload-progress):focus,
608
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons:not(.e-upload-progress):focus,
609
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons:not(.e-upload-progress):focus,
610
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons:not(.e-upload-progress):focus,
611
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons:focus,
612
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons:not(.e-disabled):focus,
613
+ #{if(&, '&', '*')} .e-clear-icon-focus {
614
+ border-radius: $uploader-icons-hover-radius;
615
+ }
616
+
617
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons {
618
+ font-size: $delete-icon-font-size-smaller;
619
+ opacity: $delete-icon-opacity;
620
+ }
621
+
622
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons {
623
+ font-size: $abort-icon-font-size-smaller;
624
+ opacity: $delete-icon-opacity;
625
+ }
626
+ }
627
+
628
+ #{if(&, '&', '*')} .e-file-select-wrap .e-btn,
629
+ #{if(&, '&', '*')} .e-upload-actions .e-btn {
630
+ font-family: $upload-font-family;
631
+ }
632
+
633
+ #{if(&, '&', '*')} .e-upload-actions {
634
+ position: relative;
635
+ text-align: right;
636
+
637
+ .e-file-upload-btn {
638
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'FluentUI') {
639
+ margin: $action-upload-buttons-margin-smaller;
640
+ }
641
+ @else if ($skin-name != 'bootstrap4' and $skin-name != 'FluentUI') {
642
+ margin: $action-buttons-margin-smaller;
643
+ }
644
+ }
645
+
646
+ .e-file-clear-btn {
647
+ @if ($skin-name == 'bootstrap4' or $skin-name == 'FluentUI') {
648
+ margin: $action-clear-buttons-margin-smaller;
649
+ }
650
+ @else if ($skin-name != 'bootstrap4' and $skin-name != 'FluentUI') {
651
+ margin: $action-buttons-margin-smaller;
652
+ }
653
+ }
654
+ }
655
+
656
+ #{if(&, '&', '*')}.e-rtl {
657
+ #{if(&, '&', '*')} .e-file-select-wrap {
658
+ padding: $header-padding-rtl-smaller;
659
+
660
+ #{if(&, '&', '*')} .e-control {
661
+ #{if(&, '&', '*')}.e-btn {
662
+ margin-right: $margin-rtl-header-smaller;
663
+ }
664
+ }
665
+
666
+ #{if(&, '&', '*')} .e-file-drop {
667
+ margin-left: $file-container-left;
668
+ margin-right: $drop-area-padding-left-smaller;
669
+ position: relative;
670
+ }
671
+ }
672
+
673
+ #{if(&, '&', '*')} .e-upload-actions {
674
+ text-align: $float-left;
675
+
676
+ .e-file-upload-btn {
677
+ @if $skin-name == 'FluentUI' {
678
+ margin: $action-upload-buttons-margin-smaller-rtl;
679
+ }
680
+ }
681
+
682
+ .e-file-clear-btn {
683
+ @if $skin-name == 'FluentUI' {
684
+ margin: $action-clear-buttons-margin-smaller-rtl;
685
+ }
686
+ }
687
+ }
688
+
689
+ #{if(&, '&', '*')} .e-upload-files {
690
+ #{if(&, '&', '*')} .e-upload-file-list {
691
+ #{if(&, '&', '*')} .e-file-container {
692
+ height: $file-container-height;
693
+ margin-left: $file-container-left;
694
+ margin-right: $margin-rtl-smaller;
695
+ position: relative;
696
+
697
+ #{if(&, '&', '*')} .e-rtl-container {
698
+ direction: ltr;
699
+ float: $float-right;
700
+ width: $file-container-height;
701
+ }
702
+
703
+ #{if(&, '&', '*')} .e-file-type {
704
+ float: $float-right;
705
+ }
706
+
707
+ #{if(&, '&', '*')} .e-file-name {
708
+ float: $float-right;
709
+ }
710
+
711
+ #{if(&, '&', '*')} .e-file-size {
712
+ direction: ltr;
713
+ float: $float-right;
714
+ position: relative;
715
+ text-align: right;
716
+ width: $file-container-height;
717
+ }
718
+
719
+ #{if(&, '&', '*')} .e-upload-progress-wrap {
720
+ float: $float-right;
721
+ position: initial;
722
+ top: $progress-bar-wrap-top-smaller;
723
+ width: $progress-bar-width-rtl;
724
+
725
+ #{if(&, '&', '*')} .e-progress-bar-text {
726
+ float: $float-left;
727
+ right: $progress-text-rtl-smaller;
728
+ top: $rtl-progress-top;
729
+ }
730
+ }
731
+ }
732
+
733
+ #{if(&, '&', '*')} .e-file-remove-btn,
734
+ #{if(&, '&', '*')} .e-file-delete-btn,
735
+ #{if(&, '&', '*')} .e-file-abort-btn,
736
+ #{if(&, '&', '*')} .e-file-reload-btn,
737
+ #{if(&, '&', '*')} .e-file-pause-btn,
738
+ #{if(&, '&', '*')} .e-file-play-btn {
739
+ #{if(&, '&', '*')}.e-icons {
740
+ left: $left;
741
+ margin-left: $margin-rtl-smaller;
742
+ margin-right: $margin-rtl-smaller;
743
+ right: auto;
744
+ top: $remove-icon-rtl-top-smaller;
745
+ @if $skin-name == 'FluentUI' {
746
+ margin-left: $margin-icon-rtl-smaller;
747
+ margin-right: $margin-icon-rtl-smaller;
748
+ }
749
+ }
750
+ }
751
+
752
+ #{if(&, '&', '*')} .e-file-reload-btn {
753
+ #{if(&, '&', '*')}.e-icons {
754
+ left: $reload-btn-right;
755
+ right: auto;
756
+ }
757
+ }
758
+
759
+ #{if(&, '&', '*')} .e-file-play-btn,
760
+ #{if(&, '&', '*')} .e-file-reload-btn,
761
+ #{if(&, '&', '*')} .e-file-pause-btn {
762
+ #{if(&, '&', '*')}.e-icons {
763
+ left: $pause-play-button-right-value;
764
+ }
765
+ }
766
+ }
767
+ }
768
+ }
769
+
770
+ #{if(&, '&', '*')}.e-disabled {
771
+ #{if(&, '&', '*')} .e-file-drop {
772
+ color: $disabled-state;
773
+ }
774
+
775
+ #{if(&, '&', '*')} .e-upload-files {
776
+ .e-upload-file-list {
777
+ #{if(&, '&', '*')} .e-file-container .e-file-name,
778
+ #{if(&, '&', '*')} .e-file-container .e-file-type,
779
+ #{if(&, '&', '*')} .e-file-container .e-file-size,
780
+ #{if(&, '&', '*')} .e-file-container .e-file-status,
781
+ #{if(&, '&', '*')} .e-file-container .e-file-information {
782
+ color: $disabled-state;
783
+ }
784
+ }
785
+ }
786
+ }
787
+
788
+ .e-content-placeholder.e-upload.e-placeholder-upload {
789
+ background-size: 400px 65px;
790
+ min-height: 65px;
791
+ }
792
+
793
+ .e-bigger .e-content-placeholder.e-upload.e-placeholder-upload,
794
+ .e-bigger.e-content-placeholder.e-upload.e-placeholder-upload {
795
+ background-size: 400px 80px;
796
+ min-height: 80px;
797
+ }
798
+ }
799
+
800
+ .e-small {
801
+ .e-upload {
802
+ .e-file-select-wrap {
803
+ padding: $header-padding-small;
804
+
805
+ #{if(&, '&', '*')} .e-file-drop {
806
+ font-size: $drop-area-small-font-size;
807
+ margin-left: $drop-small-area-padding-left;
808
+ }
809
+ }
810
+
811
+ #{if(&, '&', '*')} .e-upload-files {
812
+ .e-upload-file-list {
813
+ min-height: $li-min-height-small;
814
+
815
+ .e-file-container .e-file-name {
816
+ font-size: $file-small-name-font-size;
817
+ padding-top: $file-small-name-padding-top;
818
+ }
819
+
820
+ .e-file-container .e-file-size {
821
+ font-size: $list-small-item-status-font-size;
822
+ padding: $file-small-size-padding;
823
+ }
824
+
825
+ .e-file-container .e-file-type {
826
+ font-size: $file-small-name-font-size;
827
+ padding-top: $file-small-name-padding-top;
828
+ }
829
+
830
+ .e-file-container .e-file-status,
831
+ .e-file-container .e-file-information {
832
+ padding-bottom: $file-small-name-padding-top;
833
+ }
834
+
835
+ .e-file-container .e-upload-progress-wrap {
836
+ padding-bottom: $progress-bar-bottom-paddding-small;
837
+ padding-top: $progress-bar-bottom-paddding-small;
838
+ }
839
+
840
+ .e-file-container {
841
+ @if $skin-name == 'FluentUI' {
842
+ margin-left: $list-item-margin-left-small;
843
+ }
844
+ }
845
+ }
846
+
847
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons,
848
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons,
849
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons,
850
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons,
851
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
852
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons {
853
+ font-size: $remove-small-icon-font-size;
854
+ height: $remove-small-icon-height;
855
+ padding: $delete-small-icon-padding;
856
+ width: $remove-small-icon-width;
857
+ @if $skin-name == 'FluentUI' {
858
+ margin: $remove-icon-margin-small;
859
+ }
860
+ }
861
+
862
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
863
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
864
+ color: $disabled-state;
865
+ cursor: not-allowed;
866
+ opacity: .4;
867
+ pointer-events: none;
868
+ }
869
+ }
870
+
871
+ #{if(&, '&', '*')} .e-upload-actions {
872
+ .e-file-upload-btn {
873
+ @if $skin-name == 'FluentUI' {
874
+ margin: $footer-upload-buttons-margin-small;
875
+ }
876
+ }
877
+
878
+ .e-file-clear-btn {
879
+ @if $skin-name == 'FluentUI' {
880
+ margin: $footer-clear-buttons-margin-samll;
881
+ }
882
+ }
883
+ }
884
+
885
+ #{if(&, '&', '*')}.e-rtl {
886
+ #{if(&, '&', '*')} .e-file-select-wrap {
887
+ padding: $header-padding-rtl-small;
888
+ }
889
+
890
+ #{if(&, '&', '*')} .e-upload-actions {
891
+ .e-file-upload-btn {
892
+ @if $skin-name == 'FluentUI' {
893
+ margin: $footer-upload-buttons-margin-rtl-small;
894
+ }
895
+ }
896
+
897
+ .e-file-clear-btn {
898
+ @if $skin-name == 'FluentUI' {
899
+ margin: $footer-clear-buttons-margin-rtl-small;
900
+ }
901
+ }
902
+ }
903
+
904
+ #{if(&, '&', '*')} .e-upload-files {
905
+ #{if(&, '&', '*')} .e-upload-file-list {
906
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons,
907
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons,
908
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons,
909
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons,
910
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
911
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons {
912
+ @if $skin-name == 'FluentUI' {
913
+ margin-left: $margin-icon-rtl-small;
914
+ margin-right: $margin-icon-rtl-small;
915
+ }
916
+ }
917
+ }
918
+ }
919
+ }
920
+
921
+ #{if(&, '&', '*')}.e-form-upload .e-upload-files {
922
+ #{if(&, '&', '*')} .e-upload-file-list {
923
+ min-height: $form-upload-small-file-list-height;
924
+ padding-bottom: $form-upload-small-file-list-padding-bottom;
925
+ padding-top: $form-upload-small-file-list-padding-top;
926
+
927
+ #{if(&, '&', '*')} .e-file-container {
928
+ top: 0;
929
+
930
+ #{if(&, '&', '*')} .e-hidden-input {
931
+ display: none;
932
+ }
933
+
934
+ #{if(&, '&', '*')} .e-file-name,
935
+ #{if(&, '&', '*')} .e-file-type {
936
+ line-height: $form-upload-small-file-name-line-height;
937
+ padding-top: $form-upload-small-file-name-padding;
938
+ }
939
+
940
+ #{if(&, '&', '*')} .e-file-name.e-error,
941
+ #{if(&, '&', '*')} .e-file-type.e-error,
942
+ #{if(&, '&', '*')} .e-file-status.e-error {
943
+ color: $upload-failure-color;
944
+ }
945
+
946
+ #{if(&, '&', '*')} .e-file-status,
947
+ #{if(&, '&', '*')} .e-file-information {
948
+ color: $file-size-color;
949
+ display: block;
950
+ font-size: $form-upload-small-file-status-font-size;
951
+ line-height: $form-upload-small-file-name-line-height;
952
+ padding-bottom: 0;
953
+ padding-top: $form-upload-small-file-name-padding;
954
+ position: relative;
955
+ }
956
+ }
957
+
958
+ #{if(&, '&', '*')}.e-file-invalid {
959
+ color: $upload-failure-color;
960
+
961
+ #{if(&, '&', '*')} .e-file-name,
962
+ #{if(&, '&', '*')} .e-file-type,
963
+ #{if(&, '&', '*')} .e-file-status {
964
+ color: $upload-failure-color;
965
+ }
966
+ }
967
+ }
968
+
969
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons,
970
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons,
971
+ #{if(&, '&', '*')} .e-file-abort-btn.e-icons,
972
+ #{if(&, '&', '*')} .e-file-reload-btn.e-icons,
973
+ #{if(&, '&', '*')} .e-file-play-btn.e-icons,
974
+ #{if(&, '&', '*')} .e-file-pause-btn.e-icons {
975
+ box-sizing: border-box;
976
+ top: $form-upload-small-remove-icon-top;
977
+ }
978
+
979
+ #{if(&, '&', '*')} .e-file-remove-btn.e-icons.e-disabled,
980
+ #{if(&, '&', '*')} .e-file-delete-btn.e-icons.e-disabled {
981
+ color: $disabled-state;
982
+ cursor: not-allowed;
983
+ opacity: .4;
984
+ pointer-events: none;
985
+ }
986
+ }
987
+ }
988
+ }
989
+ }