@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,4284 @@
1
+ @include export-module('input-theme') {
2
+
3
+ /*! input theme */
4
+
5
+ input.e-input#{$css},
6
+ .e-input-group input.e-input,
7
+ .e-input-group.e-control-wrapper input.e-input,
8
+ .e-input-group textarea.e-input,
9
+ .e-input-group.e-control-wrapper textarea.e-input,
10
+ textarea.e-input#{$css},
11
+ .e-float-input input,
12
+ .e-float-input.e-control-wrapper input,
13
+ .e-float-input textarea,
14
+ .e-float-input.e-control-wrapper textarea {
15
+ background: $input-bg-color;
16
+ border-color: $input-box-border-color;
17
+ color: $input-font-color;
18
+ }
19
+
20
+ .e-input-group,
21
+ .e-input-group.e-control-wrapper,
22
+ .e-float-input,
23
+ .e-float-input.e-input-group,
24
+ .e-float-input.e-control-wrapper,
25
+ .e-float-input.e-input-group.e-control-wrapper {
26
+ background: $input-bg-color;
27
+ color: $input-font-color;
28
+ }
29
+
30
+ .e-input-group .e-input-group-icon,
31
+ .e-input-group.e-control-wrapper .e-input-group-icon {
32
+ background: transparent;
33
+ border-color: $input-box-border-color;
34
+ color: $input-icon-font-color;
35
+ @if ($input-skin-name == 'FluentUI') {
36
+ border-color: $input-group-icon-border-color;
37
+ }
38
+ @if ($input-skin-name == 'Material3') {
39
+ margin: 0;
40
+ }
41
+ }
42
+
43
+ .e-input-group.e-disabled .e-input-group-icon,
44
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
45
+ color: $input-group-disabled-color;
46
+ }
47
+
48
+ /* stylelint-disable property-no-vendor-prefix */
49
+ /* stylelint-disable selector-no-vendor-prefix */
50
+ .e-input#{$css}[disabled],
51
+ .e-input-group .e-input[disabled],
52
+ .e-input-group.e-control-wrapper .e-input[disabled],
53
+ .e-input-group.e-disabled,
54
+ .e-input-group.e-control-wrapper.e-disabled,
55
+ .e-float-input input[disabled],
56
+ .e-float-input.e-control-wrapper input[disabled],
57
+ .e-float-input textarea[disabled],
58
+ .e-float-input.e-control-wrapper textarea[disabled],
59
+ .e-float-input.e-disabled,
60
+ .e-float-input.e-control-wrapper.e-disabled {
61
+ @if $input-skin-name != 'bootstrap5' {
62
+ -webkit-text-fill-color: $input-disable-font-color;
63
+ }
64
+ background: $input-disable-bg-color;
65
+ color: $input-disable-font-color;
66
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
67
+ background-image: linear-gradient(90deg, $input-disable-border-color 0, $input-disable-border-color 33%, transparent 0);
68
+ background-position: bottom -1px left 0;
69
+ background-repeat: repeat-x;
70
+ background-size: 4px 1px;
71
+ border-bottom-color: transparent;
72
+ }
73
+
74
+ @else {
75
+ border-color: $input-disable-border-color;
76
+ }
77
+ }
78
+
79
+ .e-input-group input.e-input,
80
+ .e-input-group.e-control-wrapper input.e-input,
81
+ .e-float-input input,
82
+ .e-float-input.e-control-wrapper input,
83
+ .e-input-group textarea.e-input,
84
+ .e-input-group.e-control-wrapper textarea.e-input,
85
+ .e-float-input textarea,
86
+ .e-float-input.e-control-wrapper textarea,
87
+ .e-input-group .e-input[disabled],
88
+ .e-input-group.e-control-wrapper .e-input[disabled],
89
+ .e-input-group.e-disabled input.e-input,
90
+ .e-input-group.e-control-wrapper.e-disabled input.e-input,
91
+ .e-input-group.e-disabled textarea.e-input,
92
+ .e-input-group.e-control-wrapper.e-disabled textarea.e-input {
93
+ background: none;
94
+ color: inherit;
95
+ }
96
+
97
+ .e-input-group .e-input[readonly],
98
+ .e-input-group.e-control-wrapper .e-input[readonly],
99
+ .e-float-input input[readonly],
100
+ .e-float-input.e-control-wrapper input[readonly],
101
+ .e-float-input textarea[readonly],
102
+ .e-float-input.e-control-wrapper textarea[readonly] {
103
+ background: $input-readonly-bg-color;
104
+ @if $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' {
105
+ color: $input-readonly-color;
106
+ }
107
+ @if $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5' {
108
+ color: inherit;
109
+ }
110
+ }
111
+
112
+ .e-input-group .e-input[readonly] ~ span.e-input-group-icon,
113
+ .e-input-group.e-control-wrapper .e-input[readonly] ~ span.e-input-group-icon,
114
+ .e-float-input input[readonly] ~ span.e-input-group-icon,
115
+ .e-float-input.e-control-wrapper input[readonly] ~ span.e-input-group-icon,
116
+ .e-float-input.e-control-wrapper input[readonly] ~ span.e-clear-icon {
117
+ @if $input-skin-name == 'bootstrap5' {
118
+ background: $input-readonly-bg-color;
119
+ color: $input-icon-font-color;
120
+ }
121
+ }
122
+
123
+ .e-float-input.e-disabled input,
124
+ .e-float-input.e-control-wrapper.e-disabled input,
125
+ .e-float-input.e-disabled textarea,
126
+ .e-float-input.e-control-wrapper.e-disabled textarea,
127
+ .e-float-input input[disabled],
128
+ .e-float-input.e-control-wrapper input[disabled],
129
+ .e-float-input textarea[disabled],
130
+ .e-float-input.e-control-wrapper textarea[disabled] {
131
+ color: inherit;
132
+ }
133
+
134
+ /*! Added color to textbox for disbaled state */
135
+ .e-float-input:not(.e-disabled) input[disabled],
136
+ .e-float-input.e-control-wrapper:not(.e-disabled) input[disabled],
137
+ .e-float-input:not(.e-disabled) textarea[disabled],
138
+ .e-float-input.e-control-wrapper:not(.e-disabled) textarea[disabled] {
139
+ -webkit-text-fill-color: $input-disable-font-color;
140
+ color: $input-disable-font-color;
141
+ }
142
+
143
+ .e-input-group.e-disabled .e-input-group-icon,
144
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
145
+ background: $input-disabled-group-bg-color;
146
+ border-color: $input-disable-border-color;
147
+ }
148
+
149
+ .e-input-group:not(.e-disabled) .e-input-group-icon:hover,
150
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
151
+ @if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'highcontrast' {
152
+ background: $input-hover-bg-color;
153
+ }
154
+ @if $input-skin-name == 'bootstrap4' {
155
+ border-color: $input-group-border-color-hover;
156
+ }
157
+ @if $input-skin-name == 'highcontrast' {
158
+ border-color: $input-group-border-color-hover;
159
+ }
160
+ @if $input-skin-name == 'Material3' {
161
+ border: $input-icon-hover-border;
162
+ background: $input-icon-hover-bg-color;
163
+ }
164
+ color: $input-group-hovered-color;
165
+ }
166
+
167
+ .e-input-group.e-disabled .e-input-group-icon:hover,
168
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon:hover {
169
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
170
+ background: transparent;
171
+ }
172
+ }
173
+
174
+ .e-input#{$css}.e-success,
175
+ .e-input#{$css}.e-success:focus,
176
+ .e-input-group.e-success input.e-input,
177
+ .e-input-group.e-control-wrapper.e-success input.e-input,
178
+ .e-input-group.e-success .e-input-group-icon,
179
+ .e-input-group.e-control-wrapper.e-success .e-input-group-icon,
180
+ .e-input-group.e-success textarea.e-input,
181
+ .e-input-group.e-control-wrapper.e-success textarea.e-input {
182
+ border-color: $input-success-color;
183
+ }
184
+
185
+ .e-input#{$css}.e-warning,
186
+ .e-input#{$css}.e-warning:focus,
187
+ .e-input-group.e-warning input.e-input,
188
+ .e-input-group.e-control-wrapper.e-warning input.e-input,
189
+ .e-input-group.e-warning .e-input-group-icon,
190
+ .e-input-group.e-control-wrapper.e-warning .e-input-group-icon,
191
+ .e-input-group.e-warning textarea.e-input,
192
+ .e-input-group.e-control-wrapper.e-warning textarea.e-input {
193
+ border-color: $input-warning-color;
194
+ }
195
+
196
+ .e-input + .e-input-group-icon:not(.e-input-group):not(.e-float-icon-left):last-child:hover,
197
+ .e-input-group.e-success .e-input + .e-input-group-icon:last-child:hover,
198
+ .e-input-group.e-success.e-control-wrapper .e-input + .e-input-group-icon:last-child:hover {
199
+ @if $input-skin-name == 'highcontrast' {
200
+ border-color: $input-success-color;
201
+ }
202
+ }
203
+
204
+ .e-input#{$css}.e-error,
205
+ .e-input#{$css}.e-error:focus,
206
+ .e-input-group.e-error input.e-input,
207
+ .e-input-group.e-control-wrapper.e-error input.e-input,
208
+ .e-input-group.e-control-wrapper.e-error .e-input-group-icon,
209
+ .e-input-group.e-error .e-input-group-icon,
210
+ .e-input-group.e-error textarea.e-input,
211
+ .e-input-group.e-control-wrapper.e-error textarea.e-input {
212
+ border-color: $input-error-color;
213
+ }
214
+
215
+ label.e-float-text,
216
+ .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
217
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
218
+ .e-float-input.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
219
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
220
+ .e-bigger .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
221
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
222
+ .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
223
+ .e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
224
+ .e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
225
+ .e-small .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
226
+ .e-float-input.e-small.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
227
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
228
+ .e-bigger .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
229
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
230
+ color: $input-header-font-color;
231
+ @if $input-skin-name == 'highcontrast' {
232
+ color: $input-placeholder;
233
+ }
234
+ }
235
+
236
+ .e-float-input.e-error label.e-float-text,
237
+ .e-float-input.e-control-wrapper.e-error label.e-float-text,
238
+ .e-float-input.e-error input:focus ~ label.e-float-text,
239
+ .e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
240
+ .e-float-input.e-error.e-input-focus input ~ label.e-float-text,
241
+ .e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
242
+ .e-float-input.e-error textarea:focus ~ label.e-float-text,
243
+ .e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text {
244
+ color: $input-error-color;
245
+ @if $input-skin-name == 'highcontrast' {
246
+ color: $content-font;
247
+ }
248
+ @if ($input-skin-name == 'FluentUI') {
249
+ color: $float-label-font-color;
250
+ }
251
+ }
252
+
253
+ .e-float-input input,
254
+ .e-float-input textarea,
255
+ .e-float-input.e-control-wrapper input,
256
+ .e-float-input.e-control-wrapper textarea {
257
+ border-bottom-color: $input-box-border-color;
258
+ }
259
+
260
+ .e-float-input.e-success input,
261
+ .e-float-input.e-success textarea,
262
+ .e-float-input.e-control-wrapper.e-success input,
263
+ .e-float-input.e-control-wrapper.e-success textarea {
264
+ @include input-state-color ($input-success-color);
265
+ }
266
+
267
+ .e-float-input.e-warning input,
268
+ .e-float-input.e-control-wrapper.e-warning input,
269
+ .e-float-input.e-warning textarea,
270
+ .e-float-input.e-control-wrapper.e-warning textarea {
271
+ @include input-state-color ($input-warning-color);
272
+ }
273
+
274
+ .e-float-input.e-error input,
275
+ .e-float-input.e-control-wrapper.e-error input,
276
+ .e-float-input.e-error textarea,
277
+ .e-float-input.e-control-wrapper.e-error textarea {
278
+ @include input-state-color ($input-error-color);
279
+ }
280
+
281
+ label.e-float-text,
282
+ .e-float-input label.e-float-text,
283
+ .e-float-input.e-control-wrapper label.e-float-text,
284
+ .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
285
+ .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
286
+ .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
287
+ .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
288
+ @if $input-skin-name == 'highcontrast' {
289
+ color: $content-font-alt;
290
+ }
291
+ }
292
+
293
+ .e-float-input:not(.e-input-group) .e-float-line::before,
294
+ .e-float-input:not(.e-input-group) .e-float-line::after,
295
+ .e-float-input:not(.e-input-group) .e-float-line::before,
296
+ .e-float-input:not(.e-input-group) .e-float-line::after,
297
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::before,
298
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::after,
299
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::before,
300
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::after {
301
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
302
+ background: $input-active-accent-color;
303
+ }
304
+ }
305
+
306
+ label.e-float-text,
307
+ .e-float-input label.e-float-text,
308
+ .e-float-input.e-control-wrapper label.e-float-text,
309
+ .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
310
+ .e-float-input.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
311
+ .e-bigger .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
312
+ .e-float-input.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
313
+ .e-small .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
314
+ .e-bigger .e-float-input.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
315
+ .e-small .e-float-input.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
316
+ .e-float-input.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
317
+ .e-bigger.e-small .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
318
+ .e-float-input.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
319
+ .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
320
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
321
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
322
+ .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
323
+ .e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
324
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
325
+ .e-small .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
326
+ .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
327
+ .e-bigger.e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
328
+ .e-float-input.e-control-wrapper.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
329
+ @if $input-skin-name == 'highcontrast' {
330
+ color: $content-font-alt;
331
+ }
332
+ }
333
+
334
+ .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
335
+ .e-float-input.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
336
+ .e-bigger .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
337
+ .e-float-input.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
338
+ .e-small .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
339
+ .e-bigger .e-float-input.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
340
+ .e-small .e-float-input.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
341
+ .e-float-input.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
342
+ .e-bigger.e-small .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
343
+ .e-float-input.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
344
+ .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
345
+ .e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
346
+ .e-bigger .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
347
+ .e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
348
+ .e-small .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
349
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
350
+ .e-small .e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
351
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
352
+ .e-bigger.e-small .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
353
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
354
+ @if $input-skin-name == 'highcontrast' {
355
+ color: $content-font-alt;
356
+ }
357
+ }
358
+
359
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::before,
360
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::after,
361
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::before,
362
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::after,
363
+ .e-float-input.e-control-wrapper.e-success:not(.e-input-group) .e-float-line::before,
364
+ .e-float-input.e-control-wrapper.e-success:not(.e-input-group) .e-float-line::after,
365
+ .e-float-input.e-control-wrapper.e-success:not(.e-input-group) .e-float-line::before,
366
+ .e-float-input.e-control-wrapper.e-success:not(.e-input-group) .e-float-line::after {
367
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
368
+ background: $input-success-color;
369
+ }
370
+ }
371
+
372
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::before,
373
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::after,
374
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::before,
375
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::after,
376
+ .e-float-input.e-control-wrapper.e-warning:not(.e-input-group) .e-float-line::before,
377
+ .e-float-input.e-control-wrapper.e-warning:not(.e-input-group) .e-float-line::after,
378
+ .e-float-input.e-control-wrapper.e-warning:not(.e-input-group) .e-float-line::before,
379
+ .e-float-input.e-control-wrapper.e-warning:not(.e-input-group) .e-float-line::after {
380
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
381
+ background: $input-warning-color;
382
+ }
383
+ }
384
+
385
+ .e-float-input:not(.e-error):not(.e-input-focus):not(.e-disabled) input:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
386
+ .e-float-input:not(.e-error):not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
387
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus):not(.e-disabled) input:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top) {
388
+ color: $input-placeholder;
389
+ }
390
+
391
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::before,
392
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::after,
393
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::before,
394
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::after,
395
+ .e-float-input.e-control-wrapper.e-error:not(.e-input-group) .e-float-line::before,
396
+ .e-float-input.e-control-wrapper.e-error:not(.e-input-group) .e-float-line::after,
397
+ .e-float-input.e-control-wrapper.e-error:not(.e-input-group) .e-float-line::before,
398
+ .e-float-input.e-control-wrapper.e-error:not(.e-input-group) .e-float-line::after {
399
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
400
+ background: $input-error-color;
401
+ }
402
+ }
403
+
404
+ .e-input-group:not(.e-disabled) .e-input-group-icon:active,
405
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:active {
406
+ background: $input-group-pressed-bg;
407
+ color: $input-group-pressed-color;
408
+ @if $input-skin-name == 'bootstrap' {
409
+ -webkit-box-shadow: $input-icon-shadow;
410
+ box-shadow: $input-icon-shadow;
411
+ }
412
+ @if $input-skin-name == 'bootstrap4' {
413
+ -webkit-box-shadow: $input-icon-shadow;
414
+ border-color: $pressed-border-color;
415
+ box-shadow: $input-icon-shadow;
416
+ }
417
+ @if $input-skin-name == 'highcontrast' {
418
+ border-left-color: transparent;
419
+ border-right-color: transparent;
420
+ }
421
+ }
422
+
423
+ .e-float-input.e-input-group.e-small.e-float-icon-left .e-input-group-icon:last-child:hover,
424
+ .e-float-input.e-input-group.e-float-icon-left .e-input-group-icon:last-child:hover,
425
+ .e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left .e-input-group-icon:last-child:hover,
426
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-group-icon:last-child:hover {
427
+ @if $input-skin-name == 'highcontrast' {
428
+ border-right-color: transparent;
429
+ }
430
+ }
431
+
432
+ .e-float-input.e-input-group.e-small.e-float-icon-left .e-input-group-icon:not(:last-child):hover,
433
+ .e-float-input.e-input-group.e-float-icon-left .e-input-group-icon:not(:last-child):hover,
434
+ .e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left .e-input-group-icon:not(:last-child):hover,
435
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-group-icon:not(:last-child):hover {
436
+ @if $input-skin-name == 'highcontrast' {
437
+ border-left-color: transparent;
438
+ }
439
+ }
440
+
441
+ .e-float-input.e-input-group.e-small:not(.e-float-icon-left):not(.e-input-group):not(.e-disabled) .e-input-group-icon:last-child:hover,
442
+ .e-float-input.e-control-wrapper.e-input-group.e-small:not(.e-float-icon-left):not(.e-input-group):not(.e-disabled) .e-input-group-icon:last-child:hover {
443
+ @if $input-skin-name == 'highcontrast' {
444
+ border-right-color: transparent;
445
+ }
446
+ }
447
+
448
+ .e-input-group.e-small.e-float-icon-left:not(.e-disabled) .e-input-group-icon:first-child:hover,
449
+ .e-input-group.e-control-wrapper.e-small.e-float-icon-left:not(.e-disabled) .e-input-group-icon:first-child:hover {
450
+ @if $input-skin-name == 'highcontrast' {
451
+ border-left-color: transparent;
452
+ }
453
+ }
454
+
455
+ .e-input-group.e-small:not(.e-disabled) .e-input-group-icon:first-child:hover,
456
+ .e-input-group.e-float-icon-left .e-input-group-icon:first-child:hover,
457
+ .e-input-group.e-control-wrapper.e-small:not(.e-disabled) .e-input-group-icon:first-child:hover,
458
+ .e-input-group.e-control-wrapper.e-float-icon-left .e-input-group-icon:first-child:hover {
459
+ @if $input-skin-name == 'highcontrast' {
460
+ border-left-color: transparent;
461
+ }
462
+ }
463
+
464
+ .e-input-group.e-small:not(.e-disabled):not(.e-float-input):not(.e-rtl) .e-input-group-icon:last-child:hover,
465
+ .e-input-group.e-float-icon-left .e-input-group-icon:last-child:hover,
466
+ .e-input-group.e-control-wrapper.e-small:not(.e-disabled):not(.e-float-input):not(.e-rtl) .e-input-group-icon:last-child:hover,
467
+ .e-input-group.e-control-wrapper.e-float-icon-left .e-input-group-icon:last-child:hover {
468
+ @if $input-skin-name == 'highcontrast' {
469
+ border-right-color: transparent;
470
+ }
471
+ }
472
+
473
+ .e-input-group.e-rtl:not(.e-disabled) .e-input-group-icon:last-child:hover,
474
+ .e-input-group.e-control-wrapper.e-rtl:not(.e-disabled) .e-input-group-icon:last-child:hover {
475
+ @if $input-skin-name == 'highcontrast' {
476
+ border-left-color: transparent;
477
+ }
478
+ }
479
+
480
+ .e-input-group:not(.e-rtl):not(.e-disabled) .e-input + .e-input-group-icon:last-child:hover,
481
+ .e-input-group.e-control-wrapper:not(.e-rtl):not(.e-disabled) .e-input + .e-input-group-icon:last-child:hover {
482
+ @if $input-skin-name == 'highcontrast' {
483
+ border-right-color: transparent;
484
+ }
485
+ }
486
+
487
+
488
+ .e-input-group:not(.e-disabled) .e-input-group-icon:first-child:hover,
489
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:first-child:hover {
490
+ @if $input-skin-name == 'highcontrast' {
491
+ border-left-color: transparent;
492
+ }
493
+ }
494
+
495
+
496
+ .e-input-group:not(.e-disabled) .e-input-group-icon:not(:last-child):hover + .e-input-group-icon:not(:last-child):hover,
497
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:not(:last-child):hover + .e-input-group-icon:not(:last-child):hover {
498
+ @if $input-skin-name == 'highcontrast' {
499
+ border-right-color: transparent;
500
+ }
501
+ }
502
+
503
+
504
+ .e-input-group:not(.e-rtl):not(.e-disabled) .e-input-group-icon:last-child:hover,
505
+ .e-input-group.e-control-wrapper:not(.e-rtl):not(.e-disabled) .e-input-group-icon:last-child:hover {
506
+ @if $input-skin-name == 'highcontrast' {
507
+ border-right-color: transparent;
508
+ }
509
+ }
510
+
511
+ input.e-input#{$css}::selection,
512
+ textarea.e-input#{$css}::selection,
513
+ .e-input-group input.e-input::selection,
514
+ .e-input-group.e-control-wrapper input.e-input::selection,
515
+ .e-float-input input::selection,
516
+ .e-float-input.e-control-wrapper input::selection,
517
+ .e-input-group textarea.e-input::selection,
518
+ .e-input-group.e-control-wrapper textarea.e-input::selection,
519
+ .e-float-input textarea::selection,
520
+ .e-float-input.e-control-wrapper textarea::selection {
521
+ @include input-selection;
522
+ }
523
+
524
+ .e-float-input.e-small textarea::selection,
525
+ .e-float-input textarea::selection {
526
+ @include input-selection;
527
+ }
528
+
529
+
530
+ input.e-input#{$css}:-moz-placeholder {
531
+ color: $input-placeholder;
532
+ }
533
+
534
+
535
+ .e-input-group input.e-input:-moz-placeholder {
536
+ color: $input-placeholder;
537
+ }
538
+
539
+
540
+ .e-input-group input.e-input:-moz-placeholder,
541
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder {
542
+ color: $input-placeholder;
543
+ }
544
+
545
+
546
+ input.e-input#{$css}:-moz-placeholder {
547
+ color: $input-placeholder;
548
+ }
549
+
550
+
551
+ .e-input-group input.e-input:-moz-placeholder {
552
+ color: $input-placeholder;
553
+ }
554
+
555
+
556
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder {
557
+ color: $input-placeholder;
558
+ }
559
+
560
+
561
+ textarea.e-input#{$css}:-moz-placeholder {
562
+ color: $input-placeholder;
563
+ }
564
+
565
+
566
+ .e-input-group textarea.e-input:-moz-placeholder {
567
+ color: $input-placeholder;
568
+ }
569
+
570
+
571
+ .e-input-group.e-control-wrapper textarea.e-input:-moz-placeholder {
572
+ color: $input-placeholder;
573
+ }
574
+
575
+
576
+ input.e-input#{$css}::-moz-placeholder {
577
+ color: $input-placeholder;
578
+ }
579
+
580
+
581
+ .e-input-group input.e-input::-moz-placeholder {
582
+ color: $input-placeholder;
583
+ }
584
+
585
+
586
+ .e-input-group.e-control-wrapper input.e-input::-moz-placeholder {
587
+ color: $input-placeholder;
588
+ }
589
+
590
+
591
+ textarea.e-input#{$css}::-moz-placeholder {
592
+ color: $input-placeholder;
593
+ }
594
+
595
+
596
+ .e-input-group textarea.e-input::-moz-placeholder {
597
+ color: $input-placeholder;
598
+ }
599
+
600
+
601
+ .e-input-group.e-control-wrapper textarea.e-input::-moz-placeholder {
602
+ color: $input-placeholder;
603
+ }
604
+
605
+
606
+ input.e-input#{$css}:-ms-input-placeholder {
607
+ color: $input-placeholder;
608
+ }
609
+
610
+
611
+ .e-input-group input.e-input:-ms-input-placeholder {
612
+ color: $input-placeholder;
613
+ }
614
+
615
+
616
+ .e-input-group.e-control-wrapper input.e-input:-ms-input-placeholder {
617
+ color: $input-placeholder;
618
+ }
619
+
620
+
621
+ textarea.e-input#{$css}:-ms-input-placeholder {
622
+ color: $input-placeholder;
623
+ }
624
+
625
+
626
+ .e-input-group.e-control-wrapper textarea.e-input:-ms-input-placeholder {
627
+ color: $input-placeholder;
628
+ }
629
+
630
+
631
+ .e-input-group textarea.e-input:-ms-input-placeholder {
632
+ color: $input-placeholder;
633
+ }
634
+
635
+
636
+ input.e-input#{$css}::-webkit-input-placeholder {
637
+ color: $input-placeholder;
638
+ }
639
+
640
+
641
+ .e-input-group.e-control-wrapper input.e-input::-webkit-input-placeholder {
642
+ color: $input-placeholder;
643
+ }
644
+
645
+
646
+ .e-input-group input.e-input::-webkit-input-placeholder {
647
+ color: $input-placeholder;
648
+ }
649
+
650
+
651
+ textarea.e-input#{$css}::-webkit-input-placeholder {
652
+ color: $input-placeholder;
653
+ }
654
+
655
+
656
+ .e-input-group textarea.e-input::-webkit-input-placeholder {
657
+ color: $input-placeholder;
658
+ }
659
+
660
+
661
+ .e-input-group.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
662
+ color: $input-placeholder;
663
+ }
664
+
665
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input)::before,
666
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input)::after,
667
+ .e-input-group.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::before,
668
+ .e-input-group.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after,
669
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::before,
670
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::after,
671
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::before,
672
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after {
673
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
674
+ @include input-group-animation-bg;
675
+ }
676
+ }
677
+
678
+ .e-float-input.e-input-group:not(.e-float-icon-left) .e-float-line::before,
679
+ .e-float-input.e-input-group:not(.e-float-icon-left) .e-float-line::after,
680
+ .e-float-input.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::before,
681
+ .e-float-input.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::after,
682
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::before,
683
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::after,
684
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::before,
685
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::after {
686
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
687
+ @include input-group-animation-bg;
688
+ }
689
+ }
690
+
691
+ .e-input-group::before,
692
+ .e-input-group::after,
693
+ .e-input-group.e-control-wrapper::before,
694
+ .e-input-group.e-control-wrapper::after {
695
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
696
+ @include input-group-animation-bg;
697
+ }
698
+ }
699
+
700
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input).e-success::before,
701
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input).e-success::after,
702
+ .e-input-group.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::before,
703
+ .e-input-group.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::after,
704
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input).e-success::before,
705
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input).e-success::after,
706
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::before,
707
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::after {
708
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
709
+ @include input-group-success-animation-bg;
710
+ }
711
+ }
712
+
713
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-success .e-float-line::before,
714
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-success .e-float-line::after,
715
+ .e-float-input.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::before,
716
+ .e-float-input.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::after,
717
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left).e-success .e-float-line::before,
718
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left).e-success .e-float-line::after,
719
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::before,
720
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::after,
721
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-success .e-float-line::before,
722
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-success .e-float-line::after,
723
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::before,
724
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::after {
725
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
726
+ @include input-group-success-animation-bg;
727
+ }
728
+ }
729
+
730
+ .e-input-group.e-success::before,
731
+ .e-input-group.e-success::after,
732
+ .e-input-group.e-control-wrapper.e-success::before,
733
+ .e-input-group.e-control-wrapper.e-success::after {
734
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
735
+ @include input-group-success-animation-bg;
736
+ }
737
+ }
738
+
739
+ .e-input-group:not(.e-float-icon-left).e-warning:not(.e-float-input)::before,
740
+ .e-input-group:not(.e-float-icon-left).e-warning:not(.e-float-input)::after,
741
+ .e-input-group.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::before,
742
+ .e-input-group.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::after,
743
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-warning:not(.e-float-input)::before,
744
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-warning:not(.e-float-input)::after,
745
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::before,
746
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::after {
747
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
748
+ @include input-group-warning-animation-bg;
749
+ }
750
+ }
751
+
752
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-warning .e-float-line::before,
753
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-warning .e-float-line::after,
754
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-input-in-wrap .e-float-line::before,
755
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-input-in-wrap .e-float-line::after {
756
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
757
+ @include input-group-warning-animation-bg;
758
+ }
759
+ }
760
+
761
+ .e-input-group.e-warning::before,
762
+ .e-input-group.e-warning::after,
763
+ .e-input-group.e-control-wrapper.e-warning::before,
764
+ .e-input-group.e-control-wrapper.e-warning::after {
765
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
766
+ @include input-group-warning-animation-bg;
767
+ }
768
+ }
769
+
770
+ .e-input-group:not(.e-float-icon-left).e-error:not(.e-float-input)::before,
771
+ .e-input-group:not(.e-float-icon-left).e-error:not(.e-float-input)::after,
772
+ .e-input-group.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::before,
773
+ .e-input-group.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::after,
774
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error:not(.e-float-input)::before,
775
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error:not(.e-float-input)::after,
776
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::before,
777
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::after {
778
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
779
+ @include input-group-error-animation-bg;
780
+ }
781
+ }
782
+
783
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-error .e-float-line::before,
784
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-error .e-float-line::after,
785
+ .e-float-input.e-input-group.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::before,
786
+ .e-float-input.e-input-group.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::after,
787
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error .e-float-line::before,
788
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error .e-float-line::after,
789
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::before,
790
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::after {
791
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
792
+ @include input-group-error-animation-bg;
793
+ }
794
+ }
795
+
796
+ .e-input-group.e-error::before,
797
+ .e-input-group.e-error::after,
798
+ .e-input-group.e-control-wrapper.e-error::before,
799
+ .e-input-group.e-control-wrapper.e-error::after {
800
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
801
+ @include input-group-error-animation-bg;
802
+ }
803
+ }
804
+
805
+ .e-input-group.e-success .e-input-group-icon,
806
+ .e-input-group.e-control-wrapper.e-success .e-input-group-icon {
807
+ color: $input-icon-font-color;
808
+ }
809
+
810
+ .e-input-group.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover,
811
+ .e-input-group.e-control-wrapper.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover {
812
+ color: $input-icon-font-color;
813
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'FluentUI' {
814
+ color: $input-group-hovered-color;
815
+ }
816
+ }
817
+
818
+ .e-input-group.e-warning .e-input-group-icon,
819
+ .e-input-group.e-control-wrapper.e-warning .e-input-group-icon {
820
+ color: $input-icon-font-color;
821
+ }
822
+
823
+ .e-input-group.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover,
824
+ .e-input-group.e-control-wrapper.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover {
825
+ color: $input-icon-font-color;
826
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'FluentUI' {
827
+ color: $input-group-hovered-color;
828
+ }
829
+ }
830
+
831
+ .e-input-group.e-error .e-input-group-icon,
832
+ .e-input-group.e-control-wrapper.e-error .e-input-group-icon {
833
+ color: $input-icon-font-color;
834
+ }
835
+
836
+ .e-input-group.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover,
837
+ .e-input-group.e-control-wrapper.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover {
838
+ color: $input-icon-font-color;
839
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'FluentUI' {
840
+ color: $input-group-hovered-color;
841
+ }
842
+ }
843
+
844
+ .e-input-group.e-success:not(.e-disabled) .e-input-group-icon:active,
845
+ .e-input-group.e-control-wrapper.e-success:not(.e-disabled) .e-input-group-icon:active {
846
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
847
+ color: $input-icon-font-color;
848
+ }
849
+ }
850
+
851
+ .e-input-group.e-warning:not(.e-disabled) .e-input-group-icon:active,
852
+ .e-input-group.e-control-wrapper.e-warning:not(.e-disabled) .e-input-group-icon:active {
853
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
854
+ color: $input-icon-font-color;
855
+ }
856
+ }
857
+
858
+ .e-input-group.e-error:not(.e-disabled) .e-input-group-icon:active,
859
+ .e-input-group.e-control-wrapper.e-error:not(.e-disabled) .e-input-group-icon:active {
860
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
861
+ color: $input-icon-font-color;
862
+ }
863
+ }
864
+
865
+ .e-input-group input.e-input,
866
+ .e-input-group.e-control-wrapper input.e-input,
867
+ .e-input-group textarea.e-input,
868
+ .e-input-group.e-control-wrapper textarea.e-input {
869
+ border-color: $input-box-border-color;
870
+ }
871
+
872
+
873
+ .e-input#{$css}:focus:not(.e-success):not(.e-warning):not(.e-error),
874
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
875
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
876
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
877
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
878
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input,
879
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input {
880
+ border-color: $input-active-border-color;
881
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
882
+ -webkit-box-shadow: $input-border-shadow;
883
+ box-shadow: $input-border-shadow;
884
+ }
885
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
886
+ border-radius: $input-groupo-focus-border-radius;
887
+ box-shadow: $input-group-focus-box-shadow;
888
+ }
889
+ @if $input-skin-name == 'bootstrap4' {
890
+ transition: $input-transition-shadow;
891
+ }
892
+ }
893
+
894
+
895
+ .e-input-group .e-input#{$css}:focus:not(.e-success):not(.e-warning):not(.e-error),
896
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
897
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
898
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
899
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
900
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input,
901
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input {
902
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
903
+ box-shadow: none;
904
+ }
905
+ }
906
+
907
+
908
+ .e-input#{$css}:focus:not(.e-success):not(.e-warning).e-error,
909
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
910
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
911
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
912
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
913
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input,
914
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input {
915
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
916
+ -webkit-box-shadow: $input-error-border-shadow;
917
+ box-shadow: $input-error-border-shadow;
918
+ }
919
+ }
920
+
921
+
922
+ .e-input#{$css}:focus:not(.e-error):not(.e-warning).e-success,
923
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
924
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
925
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
926
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
927
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input,
928
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input {
929
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
930
+ -webkit-box-shadow: $input-success-border-shadow;
931
+ box-shadow: $input-success-border-shadow;
932
+ }
933
+ }
934
+
935
+
936
+ .e-input#{$css}:focus:not(.e-success):not(.e-error).e-warning,
937
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
938
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
939
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
940
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
941
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input,
942
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input {
943
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
944
+ -webkit-box-shadow: $input-warning-border-shadow;
945
+ box-shadow: $input-warning-border-shadow;
946
+ }
947
+ }
948
+
949
+ .e-input-group:not(.e-float-input):not(.e-float-icon-left) .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
950
+ .e-input-group.e-float-icon-left:not(.e-float-input) .e-input-in-wrap .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
951
+ .e-input-group.e-control-wrapper:not(.e-float-input):not(.e-float-icon-left) .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
952
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
953
+ .e-input-group:not(.e-float-input):not(.e-float-icon-left).e-input-focus .e-input:not(.e-success):not(.e-warning):not(.e-error),
954
+ .e-input-group.e-float-icon-left:not(.e-float-input).e-input-focus .e-input-in-wrap .e-input:not(.e-success):not(.e-warning):not(.e-error),
955
+ .e-input-group.e-control-wrapper:not(.e-float-input):not(.e-float-icon-left).e-input-focus .e-input:not(.e-success):not(.e-warning):not(.e-error),
956
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input).e-input-focus .e-input-in-wrap .e-input:not(.e-success):not(.e-warning):not(.e-error) {
957
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
958
+ box-shadow: none;
959
+ }
960
+ }
961
+
962
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error) input.e-input:focus,
963
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) input.e-input:focus,
964
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error).e-input-focus input.e-input,
965
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error).e-input-focus input.e-input,
966
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error) textarea.e-input:focus,
967
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) textarea.e-input:focus {
968
+ border-color: $input-group-active-border-color;
969
+ }
970
+
971
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
972
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) {
973
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
974
+ border-color: $input-group-border-color-focus;
975
+ }
976
+ }
977
+
978
+
979
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
980
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
981
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
982
+ border-color: $input-group-border-color-focus;
983
+ }
984
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
985
+ -webkit-box-shadow: $input-border-shadow;
986
+ box-shadow: $input-border-shadow;
987
+ }
988
+ @if $input-skin-name == 'bootstrap4' {
989
+ transition: $input-transition-shadow;
990
+ }
991
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
992
+ border-color: $input-group-border-color-focus;
993
+ border-radius: $input-groupo-focus-border-radius;
994
+ box-shadow: $input-group-focus-box-shadow;
995
+ }
996
+ }
997
+
998
+
999
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning).e-error,
1000
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning).e-error {
1001
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1002
+ -webkit-box-shadow: $input-error-border-shadow;
1003
+ box-shadow: $input-error-border-shadow;
1004
+ }
1005
+ }
1006
+
1007
+
1008
+ .e-input-group.e-input-focus:not(.e-error):not(.e-warning).e-success,
1009
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-error):not(.e-warning).e-success {
1010
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1011
+ -webkit-box-shadow: $input-success-border-shadow;
1012
+ box-shadow: $input-success-border-shadow;
1013
+ }
1014
+ }
1015
+
1016
+
1017
+ .e-input-group.e-input-focus:not(.e-success):not(.e-error).e-warning,
1018
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-error).e-warning {
1019
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1020
+ -webkit-box-shadow: $input-warning-border-shadow;
1021
+ box-shadow: $input-warning-border-shadow;
1022
+ }
1023
+ }
1024
+
1025
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1026
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1027
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
1028
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
1029
+ border-color: $input-box-border-color;
1030
+ }
1031
+
1032
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1033
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:last-child.e-input-group-icon,
1034
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1035
+ .e-input-group.e-control-wrapper.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:last-child.e-input-group-icon {
1036
+ @if ($input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'FluentUI' and $input-skin-name != 'bootstrap5') {
1037
+ border-color: $input-group-border-right-focus;
1038
+ }
1039
+ }
1040
+
1041
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
1042
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1043
+ .e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1044
+ .e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
1045
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
1046
+ .e-input-group.e-control-wrapper.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
1047
+ .e-input-group.e-control-wrapper.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1048
+ .e-input-focus.e-control-wrapper.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1049
+ .e-input-focus.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
1050
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon {
1051
+ @if ($input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5' and $input-skin-name != 'FluentUI') {
1052
+ border-color: $input-group-border-left-focus;
1053
+ }
1054
+ }
1055
+
1056
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1057
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
1058
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1059
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1060
+ .e-input-group.e-control-wrapper.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
1061
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon {
1062
+ @if ($input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5') {
1063
+ border-color: transparent;
1064
+ }
1065
+ }
1066
+
1067
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
1068
+ .e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1069
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
1070
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1071
+ .e-float-input.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1072
+ .e-float-input.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap {
1073
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1074
+ border-color: $input-group-full-border-color;
1075
+ }
1076
+ }
1077
+
1078
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error),
1079
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) {
1080
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
1081
+ border-color: $input-group-full-border-color;
1082
+ }
1083
+ @if $input-skin-name == 'tailwind' {
1084
+ box-shadow: $input-group-border-shadow;
1085
+ }
1086
+ @if $input-skin-name == 'FluentUI' {
1087
+ box-shadow: none;
1088
+ }
1089
+ }
1090
+
1091
+
1092
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
1093
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
1094
+ @if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'highcontrast' {
1095
+ border-color: $input-active-border-color;
1096
+ }
1097
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
1098
+ -webkit-box-shadow: $input-border-shadow;
1099
+ box-shadow: $input-border-shadow;
1100
+ }
1101
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1102
+ box-shadow: $input-group-focus-box-shadow;
1103
+ }
1104
+ }
1105
+
1106
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error,
1107
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error {
1108
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1109
+ -webkit-box-shadow: $input-error-border-shadow;
1110
+ box-shadow: $input-error-border-shadow;
1111
+ }
1112
+ }
1113
+
1114
+ .e-input-group:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success,
1115
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success {
1116
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1117
+ -webkit-box-shadow: $input-success-border-shadow;
1118
+ box-shadow: $input-success-border-shadow;
1119
+ }
1120
+ }
1121
+
1122
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning,
1123
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning {
1124
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1125
+ -webkit-box-shadow: $input-warning-border-shadow;
1126
+ box-shadow: $input-warning-border-shadow;
1127
+ }
1128
+ }
1129
+
1130
+ .e-input-group.e-disabled:not(.e-success):not(.e-warning):not(.e-error),
1131
+ .e-input-group.e-control-wrapper.e-disabled:not(.e-success):not(.e-warning):not(.e-error) {
1132
+ @if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'highcontrast' {
1133
+ border-color: $input-disable-border-color;
1134
+ }
1135
+ }
1136
+
1137
+ .e-input-group,
1138
+ .e-input-group.e-control-wrapper {
1139
+ border-bottom-color: $input-box-border-color;
1140
+ }
1141
+
1142
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) .e-input:focus,
1143
+ .e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1144
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) .e-input:focus,
1145
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1146
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) .e-input,
1147
+ .e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
1148
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) .e-input,
1149
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
1150
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1151
+ border-bottom-color: transparent;
1152
+ border-top-color: transparent;
1153
+ }
1154
+ }
1155
+
1156
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1157
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1158
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
1159
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
1160
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
1161
+ border-bottom-color: transparent;
1162
+ border-top-color: transparent;
1163
+ }
1164
+ }
1165
+
1166
+ .e-input-group.e-success,
1167
+ .e-input-group.e-control-wrapper.e-success,
1168
+ .e-float-icon-left.e-input-group.e-success,
1169
+ .e-float-icon-left.e-control-wrapper.e-input-group.e-success,
1170
+ .e-input-group.e-warning,
1171
+ .e-input-group.e-control-wrapper.e-warning,
1172
+ .e-float-icon-left.e-input-group.e-warning,
1173
+ .e-float-icon-left.e-input-group.e-control-wrapper.e-warning,
1174
+ .e-input-group.e-error,
1175
+ .e-input-group.e-control-wrapper.e-error,
1176
+ .e-float-icon-left.e-input-group.e-error,
1177
+ .e-float-icon-left.e-input-group.e-control-wrapper.e-error,
1178
+ .e-input-group.e-float-icon-left,
1179
+ .e-input-group.e-control-wrapper.e-float-icon-left {
1180
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1181
+ border-color: transparent;
1182
+ }
1183
+ }
1184
+
1185
+ .e-input-group.e-success,
1186
+ .e-input-group.e-control-wrapper.e-success,
1187
+ .e-input-group.e-success:not(.e-float-icon-left),
1188
+ .e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left) {
1189
+ @include input-state-color ($input-group-success-color);
1190
+ }
1191
+
1192
+ .e-input-group.e-float-icon-left.e-success .e-input-in-wrap,
1193
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-input-in-wrap {
1194
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1195
+ @include input-state-color ($input-group-success-color);
1196
+ }
1197
+ }
1198
+
1199
+ .e-input-group.e-warning,
1200
+ .e-input-group.e-control-wrapper.e-warning,
1201
+ .e-input-group.e-warning:not(.e-float-icon-left),
1202
+ .e-input-group.e-control-wrapper.e-warning:not(.e-float-icon-left) {
1203
+ @include input-state-color ($input-group-warning-color);
1204
+ }
1205
+
1206
+ .e-input-group.e-float-icon-left.e-warning .e-input-in-wrap,
1207
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-warning .e-input-in-wrap {
1208
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1209
+ @include input-state-color ($input-group-warning-color);
1210
+ }
1211
+ }
1212
+
1213
+ .e-input-group.e-error,
1214
+ .e-input-group.e-control-wrapper.e-error,
1215
+ .e-input-group.e-error:not(.e-float-icon-left),
1216
+ .e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left) {
1217
+ @include input-state-color ($input-group-error-color);
1218
+ }
1219
+
1220
+ .e-input-group.e-float-icon-left.e-error .e-input-in-wrap,
1221
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-input-in-wrap {
1222
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1223
+ @include input-state-color ($input-group-error-color);
1224
+ }
1225
+ }
1226
+
1227
+ .e-float-input .e-clear-icon,
1228
+ .e-float-input.e-control-wrapper .e-clear-icon,
1229
+ .e-input-group .e-clear-icon,
1230
+ .e-input-group.e-control-wrapper .e-clear-icon {
1231
+ color: $input-clear-icon-color;
1232
+ }
1233
+
1234
+ .e-float-input .e-clear-icon:active,
1235
+ .e-float-input.e-control-wrapper .e-clear-icon:active,
1236
+ .e-input-group .e-clear-icon:active,
1237
+ .e-input-group.e-control-wrapper .e-clear-icon:active {
1238
+ @if ($input-skin-name == 'FluentUI') {
1239
+ color: $input-group-pressed-color;
1240
+ }
1241
+ }
1242
+
1243
+ .e-float-input .e-clear-icon:hover,
1244
+ .e-float-input.e-control-wrapper .e-clear-icon:hover,
1245
+ .e-input-group .e-clear-icon:hover,
1246
+ .e-input-group.e-control-wrapper .e-clear-icon:hover {
1247
+ color: $input-clear-icon-hover-color;
1248
+ @if ($input-skin-name == 'FluentUI') {
1249
+ background: $input-clear-icon-hover-bg-color;
1250
+ }
1251
+ @if $input-skin-name == 'Material3' {
1252
+ border: $input-clear-icon-hover-border;
1253
+ background: $input-clear-icon-hover-bg-color;
1254
+ }
1255
+ }
1256
+
1257
+ .e-float-input:not(.e-disabled) .e-clear-icon:hover,
1258
+ .e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover,
1259
+ .e-input-group:not(.e-disabled) .e-clear-icon:hover,
1260
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover {
1261
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
1262
+ color: $input-clear-icon-hover-color;
1263
+ }
1264
+ @if ($input-skin-name == 'FluentUI') {
1265
+ background: $input-clear-icon-hover-bg-color;
1266
+ }
1267
+ }
1268
+
1269
+ .e-float-input.e-disabled .e-clear-icon,
1270
+ .e-float-input.e-control-wrapper.e-disabled .e-clear-icon,
1271
+ .e-input-group.e-disabled .e-clear-icon,
1272
+ .e-input-group.e-control-wrapper.e-disabled .e-clear-icon {
1273
+ color: $input-group-disabled-color;
1274
+ }
1275
+
1276
+ // Double border issue while adding floating input with class .e-input
1277
+ .e-float-input.e-input-focus .e-input:focus,
1278
+ .e-float-input.e-control-wrapper.e-input-focus .e-input:focus {
1279
+ border-bottom-color: transparent;
1280
+ border-top-color: transparent;
1281
+ }
1282
+
1283
+ .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1284
+ .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
1285
+ .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
1286
+ .e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1287
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1288
+ .e-float-input:not(.e-error) input label.e-float-text.e-label-top,
1289
+ .e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1290
+ .e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1291
+ .e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1292
+ .e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1293
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1294
+ .e-bigger .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1295
+ .e-bigger .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
1296
+ .e-bigger .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
1297
+ .e-bigger .e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1298
+ .e-bigger .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1299
+ .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1300
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1301
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
1302
+ color: $float-label-font-color;
1303
+ }
1304
+
1305
+ .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1306
+ .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
1307
+ .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
1308
+ .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1309
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1310
+ .e-float-input .e-control-wrapper:not(.e-error) input label.e-float-text.e-label-top,
1311
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1312
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1313
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1314
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1315
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1316
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1317
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
1318
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
1319
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1320
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1321
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1322
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1323
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text {
1324
+ color: $float-label-font-color;
1325
+ }
1326
+
1327
+ .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1328
+ .e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
1329
+ .e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1330
+ .e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
1331
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1332
+ .e-small .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1333
+ .e-small .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
1334
+ .e-small .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
1335
+ .e-small .e-float-input:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
1336
+ .e-small .e-float-input:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1337
+ .e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1338
+ .e-float-input.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1339
+ .e-float-input.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1340
+ .e-float-input.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1341
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1342
+ .e-bigger .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1343
+ .e-bigger .e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
1344
+ .e-bigger .e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1345
+ .e-bigger .e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1346
+ .e-bigger .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1347
+ .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1348
+ .e-small .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1349
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1350
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
1351
+ color: $float-label-font-color;
1352
+ }
1353
+
1354
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1355
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
1356
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1357
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
1358
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1359
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1360
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
1361
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
1362
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
1363
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1364
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1365
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1366
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1367
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1368
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1369
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1370
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
1371
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1372
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1373
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1374
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1375
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1376
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1377
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
1378
+ color: $float-label-font-color;
1379
+ }
1380
+
1381
+ .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1382
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1383
+ .e-float-input.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1384
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1385
+ .e-bigger .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1386
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1387
+ .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1388
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1389
+ .e-small .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1390
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1391
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1392
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1393
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1394
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1395
+ color: $input-header-font-color;
1396
+ @if $input-skin-name == 'highcontrast' {
1397
+ color: $input-placeholder;
1398
+ }
1399
+ }
1400
+
1401
+ .e-float-input:not(.e-input-focus):not(.e-disabled) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
1402
+ .e-float-input:not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
1403
+ .e-float-input.e-control-wrapper:not(.e-input-focus):not(.e-disabled) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top) {
1404
+ color: $input-placeholder;
1405
+ }
1406
+
1407
+ .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1408
+ .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
1409
+ .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1410
+ .e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1411
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1412
+ .e-float-input:not(.e-error) textarea label.e-float-text.e-label-top,
1413
+ .e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1414
+ .e-float-input.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1415
+ .e-float-input.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1416
+ .e-float-input.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1417
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1418
+ .e-bigger .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1419
+ .e-bigger .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
1420
+ .e-bigger .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1421
+ .e-bigger .e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1422
+ .e-bigger .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1423
+ color: $float-label-font-color;
1424
+ }
1425
+
1426
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1427
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
1428
+ .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1429
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1430
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1431
+ .e-float-input.e-control-wrapper:not(.e-error) textarea label.e-float-text.e-label-top,
1432
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1433
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1434
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1435
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1436
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1437
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1438
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
1439
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1440
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1441
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1442
+ color: $float-label-font-color;
1443
+ }
1444
+
1445
+ .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1446
+ .e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1447
+ .e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1448
+ .e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
1449
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1450
+ .e-small .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1451
+ .e-small .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
1452
+ .e-small .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1453
+ .e-small .e-float-input:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
1454
+ .e-small .e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1455
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1456
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1457
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1458
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1459
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1460
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1461
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1462
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1463
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1464
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1465
+ color: $float-label-font-color;
1466
+ }
1467
+
1468
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1469
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1470
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1471
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
1472
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1473
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1474
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
1475
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1476
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
1477
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1478
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1479
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1480
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1481
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1482
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1483
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1484
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1485
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1486
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1487
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1488
+ color: $float-label-font-color;
1489
+ }
1490
+
1491
+ .e-float-input.e-input-group.e-disabled .e-float-text,
1492
+ .e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
1493
+ .e-float-input input[disabled] ~ label.e-float-text,
1494
+ .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
1495
+ .e-float-input.e-disabled label.e-float-text,
1496
+ .e-float-input.e-disabled label.e-float-text.e-label-top,
1497
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
1498
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1499
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1500
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1501
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1502
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1503
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1504
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
1505
+ color: $float-label-disbale-font-color;
1506
+ }
1507
+
1508
+ .e-float-input textarea[disabled] ~ label.e-float-text,
1509
+ .e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
1510
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
1511
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1512
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1513
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1514
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1515
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1516
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1517
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
1518
+ color: $float-label-disbale-font-color;
1519
+ }
1520
+
1521
+ .e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
1522
+ .e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
1523
+ .e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
1524
+ .e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
1525
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
1526
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
1527
+ .e-float-input.e-control-wrapper.e-disabled label.e-float-text,
1528
+ .e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
1529
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
1530
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1531
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1532
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1533
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1534
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1535
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1536
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1537
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
1538
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1539
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1540
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1541
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1542
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1543
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1544
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
1545
+ color: $float-label-disbale-font-color;
1546
+ }
1547
+
1548
+ .e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
1549
+ .e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
1550
+ .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
1551
+ .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
1552
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
1553
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1554
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1555
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1556
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1557
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1558
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1559
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1560
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
1561
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1562
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1563
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1564
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1565
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1566
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1567
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
1568
+ color: $float-label-disbale-font-color;
1569
+ }
1570
+
1571
+ .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1572
+ .e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1573
+ .e-bigger .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1574
+ .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1575
+ .e-small .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1576
+ .e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1577
+ .e-float-input.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1578
+ .e-bigger .e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1579
+ .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1580
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1581
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1582
+ .e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
1583
+ .e-small .e-float-input:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
1584
+ .e-float-input.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1585
+ .e-bigger .e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1586
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
1587
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
1588
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1589
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1590
+ .e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1591
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1592
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1593
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1594
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1595
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1596
+ .e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
1597
+ .e-small .e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
1598
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1599
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1600
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
1601
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
1602
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1603
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1604
+ .e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1605
+ .e-float-input.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1606
+ .e-bigger .e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1607
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1608
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1609
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1610
+ .e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
1611
+ .e-small .e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
1612
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1613
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
1614
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
1615
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1616
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1617
+ .e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1618
+ .e-float-input.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1619
+ .e-bigger .e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1620
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1621
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1622
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1623
+ .e-float-input.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
1624
+ .e-small .e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
1625
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1626
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
1627
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
1628
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1629
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1630
+ .e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1631
+ .e-bigger .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1632
+ .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1633
+ .e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1634
+ .e-bigger .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1635
+ .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1636
+ .e-small .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1637
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1638
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1639
+ .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1640
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1641
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1642
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1643
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1644
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1645
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1646
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1647
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1648
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1649
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1650
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1651
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1652
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1653
+ .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1654
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1655
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1656
+ .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1657
+ .e-small .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1658
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1659
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1660
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1661
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1662
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1663
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1664
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1665
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1666
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
1667
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1668
+ color: $input-active-accent-color;
1669
+ }
1670
+ }
1671
+
1672
+ input.e-input#{$css}:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]):not(:focus),
1673
+ textarea.e-input#{$css}:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]) {
1674
+ @if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' {
1675
+ border-color: $input-group-border-color-hover;
1676
+ }
1677
+ }
1678
+
1679
+ .e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1680
+ .e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1681
+ .e-float-input.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1682
+ .e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1683
+ .e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1684
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1685
+ .e-float-input.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1686
+ .e-float-input.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1687
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1688
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1689
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1690
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1691
+ .e-float-input.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover {
1692
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1693
+ border-color: $input-group-border-color-hover;
1694
+ }
1695
+ }
1696
+
1697
+ .e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1698
+ .e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1699
+ .e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1700
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1701
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1702
+ .e-float-input.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1703
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1704
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]) {
1705
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' and $input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5' and $input-skin-name != 'highcontrast' and $input-skin-name != 'tailwind' and $input-skin-name != 'FluentUI' {
1706
+ border-color: $input-group-border-color-hover;
1707
+ }
1708
+ }
1709
+
1710
+ .e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1711
+ .e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1712
+ .e-float-input.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1713
+ .e-float-input.e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1714
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]):not(:focus),
1715
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]):not(:focus),
1716
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]):not(:focus),
1717
+ .e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]):not(:focus) {
1718
+ @if $input-skin-name == 'highcontrast' {
1719
+ border-color: $input-group-border-color-hover;
1720
+ }
1721
+ }
1722
+
1723
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1724
+ .e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1725
+ .e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1726
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1727
+ .e-input-group.e-input-focus.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1728
+ .e-input-group.e-control-wrapper.e-input-focus.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1729
+ .e-float-input.e-input-focus.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1730
+ .e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1731
+ .e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1732
+ .e-float-input.e-control-wrapper.e-input-focus.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1733
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1734
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]) {
1735
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1736
+ border-color: $input-group-border-color-focus;
1737
+ }
1738
+ }
1739
+
1740
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1741
+ .e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1742
+ .e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1743
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1744
+ .e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1745
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1746
+ .e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1747
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]) {
1748
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
1749
+ border-color: $input-group-border-color-focus;
1750
+ }
1751
+ }
1752
+
1753
+ .e-input-group:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1754
+ .e-input-group.e-control-wrapper:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1755
+ .e-float-input:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1756
+ .e-float-input.e-control-wrapper:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1757
+ .e-float-input:active:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1758
+ .e-float-input.e-control-wrapper:active:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1759
+ .e-float-input:active:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1760
+ .e-float-input.e-control-wrapper:active:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]) {
1761
+ @if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'highcontrast' or $input-skin-name == 'FluentUI' {
1762
+ border-color: $input-active-border-color;
1763
+ }
1764
+ }
1765
+
1766
+ .e-input-group.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1767
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1768
+ .e-float-input.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1769
+ .e-float-input.e-control-wrapper.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1770
+ .e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1771
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap {
1772
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1773
+ border-color: $input-group-border-color-hover;
1774
+ }
1775
+ }
1776
+
1777
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1778
+ .e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1779
+ .e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1780
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1781
+ .e-input-group.e-input-focus.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1782
+ .e-input-group.e-control-wrapper.e-input-focus.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1783
+ .e-float-input.e-input-focus.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1784
+ .e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1785
+ .e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1786
+ .e-float-input.e-control-wrapper.e-input-focus.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1787
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1788
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]) {
1789
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1790
+ border-color: $input-group-border-color-hover;
1791
+ }
1792
+ }
1793
+
1794
+ .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1795
+ .e-bigger .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1796
+ .e-bigger.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1797
+ .e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1798
+ .e-small.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1799
+ .e-bigger .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1800
+ .e-bigger.e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1801
+ .e-float-input.e-bigger.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1802
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1803
+ .e-bigger .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1804
+ .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1805
+ .e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1806
+ .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1807
+ .e-bigger .e-float-input.e-small.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1808
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1809
+ .e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text {
1810
+ color: $float-label-font-color;
1811
+ }
1812
+
1813
+ .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1814
+ .e-bigger .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1815
+ .e-bigger.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1816
+ .e-small .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1817
+ .e-small.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1818
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1819
+ .e-bigger.e-small .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1820
+ .e-float-input.e-bigger.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1821
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1822
+ .e-bigger .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1823
+ .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1824
+ .e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1825
+ .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1826
+ .e-bigger .e-float-input.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1827
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1828
+ .e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text {
1829
+ color: $float-label-font-color;
1830
+ }
1831
+
1832
+ // Outline textbox
1833
+
1834
+ .e-outline.e-input-group,
1835
+ .e-outline.e-input-group.e-control-wrapper,
1836
+ .e-outline.e-float-input,
1837
+ .e-outline.e-float-input.e-input-group,
1838
+ .e-outline.e-float-input.e-control-wrapper,
1839
+ .e-outline.e-float-input.e-input-group.e-control-wrapper {
1840
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1841
+ color: $outline-input-font-color;
1842
+ }
1843
+ }
1844
+
1845
+ .e-outline.e-input-group.e-disabled,
1846
+ .e-outline.e-input-group.e-control-wrapper.e-disabled,
1847
+ .e-outline.e-float-input.e-disabled,
1848
+ .e-outline.e-float-input.e-input-group.e-disabled,
1849
+ .e-outline.e-float-input.e-control-wrapper.e-disabled,
1850
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-disabled {
1851
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1852
+ color: $outline-disabled-input-font-color;
1853
+ }
1854
+ }
1855
+
1856
+ .e-outline.e-input-group:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1857
+ .e-outline.e-input-group.e-control-wrapper:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1858
+ .e-outline.e-float-input.e-control-wrapper:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1859
+ .e-outline.e-input-group.e-float-icon-left:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1860
+ .e-outline.e-input-group.e-control-wrapper.e-float-icon-left:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1861
+ .e-outline.e-float-input.e-float-icon-left:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1862
+ .e-outline.e-float-input.e-control-wrapper.e-float-icon-left:not(.e-input-focus):hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1863
+ .e-outline.e-float-input:hover:not(.e-input-focus):not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) {
1864
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1865
+ border-color: $outline-hover-border-color;
1866
+ color: $outline-hover-font-color;
1867
+ }
1868
+ }
1869
+
1870
+ .e-outline.e-input-group.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::before,
1871
+ .e-outline.e-input-group.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::after,
1872
+ .e-outline.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::before,
1873
+ .e-outline.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::after,
1874
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::before,
1875
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::after,
1876
+ .e-outline.e-input-group.e-float-icon-left.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::before,
1877
+ .e-outline.e-input-group.e-float-icon-left.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::after,
1878
+ .e-outline.e-input-group.e-control-wrapper.e-float-icon-left.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::before,
1879
+ .e-outline.e-input-group.e-control-wrapper.e-float-icon-left.e-valid-input:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::after,
1880
+ .e-outline.e-float-input.e-float-icon-left:hover.e-valid-input:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::before,
1881
+ .e-outline.e-float-input.e-float-icon-left:hover.e-valid-input:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::after,
1882
+ .e-outline.e-float-input.e-control-wrapper.e-float-icon-left.e-valid-input:not(.e-input-focus):hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::before,
1883
+ .e-outline.e-float-input.e-control-wrapper.e-float-icon-left.e-valid-input:not(.e-input-focus):hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::after,
1884
+ .e-outline.e-float-input:hover.e-valid-input:not(.e-input-focus):not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::before,
1885
+ .e-outline.e-float-input:hover.e-valid-input:not(.e-input-focus):not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) label.e-float-text::after {
1886
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1887
+ border-color: $outline-hover-border-color;
1888
+ }
1889
+ }
1890
+
1891
+ .e-outline.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
1892
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
1893
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1894
+ border-color: $input-active-border-color;
1895
+ box-shadow: inset 1px 1px $input-active-border-color, inset -1px 0 $input-active-border-color, inset 0 -1px $input-active-border-color;
1896
+ }
1897
+ }
1898
+
1899
+ .e-outline.e-input-group:not(.e-input-focus),
1900
+ .e-outline.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus),
1901
+ .e-outline.e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus),
1902
+ .e-outline.e-input-group.e-float-icon-left:not(.e-input-focus),
1903
+ .e-outline.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-input-focus) {
1904
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1905
+ border-color: $outline-border-color;
1906
+ }
1907
+ }
1908
+
1909
+ .e-outline.e-input-group.e-error,
1910
+ .e-outline.e-input-group.e-control-wrapper.e-error,
1911
+ .e-outline.e-input-group.e-error:not(.e-float-icon-left),
1912
+ .e-outline.e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left),
1913
+ .e-outline.e-float-input.e-error,
1914
+ .e-outline.e-float-input.e-input-group.e-error,
1915
+ .e-outline.e-float-input.e-control-wrapper.e-error,
1916
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-error {
1917
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1918
+ border-color: $input-error-color;
1919
+ }
1920
+ }
1921
+
1922
+ .e-outline.e-float-input.e-success.e-input-focus,
1923
+ .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus,
1924
+ .e-outline.e-float-input.e-input-group.e-success.e-input-focus,
1925
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-success.e-input-focus,
1926
+ .e-outline.e-float-input.e-input-group.e-success.e-input-focus:not(.e-float-icon-left),
1927
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-success.e-input-focus:not(.e-float-icon-left),
1928
+ .e-outline.e-float-input.e-warning.e-input-focus,
1929
+ .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus,
1930
+ .e-outline.e-float-input.e-input-group.e-warning.e-input-focus,
1931
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-warning.e-input-focus,
1932
+ .e-outline.e-float-input.e-input-group.e-warning.e-input-focus:not(.e-float-icon-left),
1933
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-warning.e-input-focus:not(.e-float-icon-left),
1934
+ .e-outline.e-float-input.e-error.e-input-focus,
1935
+ .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus,
1936
+ .e-outline.e-float-input.e-input-group.e-error.e-input-focus,
1937
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-error.e-input-focus,
1938
+ .e-outline.e-float-input.e-input-group.e-error.e-input-focus:not(.e-float-icon-left),
1939
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-error.e-input-focus:not(.e-float-icon-left) {
1940
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1941
+ border-top-color: transparent;
1942
+ }
1943
+ }
1944
+
1945
+ .e-outline.e-input-group.e-success,
1946
+ .e-outline.e-input-group.e-control-wrapper.e-success,
1947
+ .e-outline.e-input-group.e-success:not(.e-float-icon-left),
1948
+ .e-outline.e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left),
1949
+ .e-outline.e-float-input.e-success,
1950
+ .e-outline.e-float-input.e-input-group.e-success,
1951
+ .e-outline.e-float-input.e-control-wrapper.e-success,
1952
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-success {
1953
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1954
+ border-color: $input-success-color;
1955
+ }
1956
+ }
1957
+
1958
+ .e-outline.e-input-group.e-warning,
1959
+ .e-outline.e-input-group.e-control-wrapper.e-warning,
1960
+ .e-outline.e-input-group.e-warning:not(.e-float-icon-left),
1961
+ .e-outline.e-input-group.e-control-wrapper.e-warning:not(.e-float-icon-left),
1962
+ .e-outline.e-float-input.e-warning,
1963
+ .e-outline.e-float-input.e-input-group.e-warning,
1964
+ .e-outline.e-float-input.e-control-wrapper.e-warning,
1965
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-warning {
1966
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1967
+ border-color: $input-warning-color;
1968
+ }
1969
+ }
1970
+
1971
+ .e-outline.e-input-group.e-input-focus.e-error:not(.e-success):not(.e-warning),
1972
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus.e-error:not(.e-success):not(.e-warning) {
1973
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1974
+ box-shadow: inset 1px 1px $input-error-color, inset -1px $zero-value $input-error-color, inset $zero-value -1px $input-error-color;
1975
+ }
1976
+ }
1977
+
1978
+ .e-outline.e-input-group.e-input-focus.e-success:not(.e-error):not(.e-warning),
1979
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus.e-success:not(.e-error):not(.e-warning) {
1980
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1981
+ box-shadow: inset 1px 1px $input-success-color, inset -1px $zero-value $input-success-color, inset $zero-value -1px $input-success-color;
1982
+ }
1983
+ }
1984
+
1985
+ .e-outline.e-input-group.e-input-focus.e-warning:not(.e-error):not(.e-success),
1986
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus.e-warning:not(.e-error):not(.e-success) {
1987
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1988
+ box-shadow: inset 1px 1px $input-warning-color, inset -1px $zero-value $input-warning-color, inset $zero-value -1px $input-warning-color;
1989
+ }
1990
+ }
1991
+
1992
+ .e-outline.e-float-input.e-input-focus.e-error:not(.e-success):not(.e-warning),
1993
+ .e-outline.e-float-input.e-control-wrapper.e-input-focus.e-error:not(.e-success):not(.e-warning),
1994
+ .e-outline.e-float-input.e-input-group.e-input-focus.e-error:not(.e-success):not(.e-warning),
1995
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-input-focus.e-error:not(.e-success):not(.e-warning) {
1996
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1997
+ box-shadow: inset 1px $zero-value $input-error-color, inset -1px $zero-value $input-error-color, inset $zero-value -1px $input-error-color;
1998
+ }
1999
+ }
2000
+
2001
+ .e-outline.e-float-input.e-input-focus.e-success:not(.e-error):not(.e-warning),
2002
+ .e-outline.e-float-input.e-control-wrapper.e-input-focus.e-success:not(.e-error):not(.e-warning),
2003
+ .e-outline.e-float-input.e-input-group.e-input-focus.e-success:not(.e-error):not(.e-warning),
2004
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-input-focus.e-success:not(.e-error):not(.e-warning) {
2005
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2006
+ box-shadow: inset 1px $zero-value $input-success-color, inset -1px $zero-value $input-success-color, inset $zero-value -1px $input-success-color;
2007
+ }
2008
+ }
2009
+
2010
+ .e-outline.e-float-input.e-input-focus.e-warning:not(.e-error):not(.e-success),
2011
+ .e-outline.e-float-input.e-control-wrapper.e-input-focus.e-warning:not(.e-error):not(.e-success),
2012
+ .e-outline.e-float-input.e-input-group.e-input-focus.e-warning:not(.e-error):not(.e-success),
2013
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-input-focus.e-warning:not(.e-error):not(.e-success) {
2014
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2015
+ box-shadow: inset 1px $zero-value $input-warning-color, inset -1px $zero-value $input-warning-color, inset $zero-value -1px $input-warning-color;
2016
+ }
2017
+ }
2018
+
2019
+ .e-outline.e-input-group.e-disabled:not(.e-input-focus),
2020
+ .e-outline.e-input-group.e-disabled:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus),
2021
+ .e-outline.e-input-group.e-control-wrapper.e-disabled:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus),
2022
+ .e-outline.e-input-group.e-disabled.e-float-icon-left:not(.e-input-focus),
2023
+ .e-outline.e-input-group.e-disabled.e-control-wrapper.e-float-icon-left:not(.e-input-focus) {
2024
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2025
+ border-color: $outline-disabled-border-color;
2026
+ }
2027
+ }
2028
+
2029
+ .e-outline.e-float-input.e-success.e-input-focus input:focus ~ label.e-float-text,
2030
+ .e-outline.e-float-input.e-input-group.e-success.e-valid-input label.e-float-text.e-label-top,
2031
+ .e-outline.e-float-input.e-bigger.e-success.e-input-focus input:focus ~ label.e-float-text,
2032
+ .e-bigger .e-outline.e-float-input.e-success.e-input-focus input:focus ~ label.e-float-text,
2033
+ .e-outline.e-float-input.e-small.e-success.e-input-focus input:focus ~ label.e-float-text,
2034
+ .e-small .e-outline.e-float-input.e-success input:focus ~ label.e-float-text,
2035
+ .e-outline.e-float-input.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
2036
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-success) input:focus ~ label.e-float-text,
2037
+ .e-outline.e-float-input.e-success textarea:focus ~ label.e-float-text,
2038
+ .e-outline.e-float-input.e-bigger.e-success textarea:focus ~ label.e-float-text,
2039
+ .e-bigger .e-outline.e-float-input.e-success textarea:focus ~ label.e-float-text,
2040
+ .e-outline.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
2041
+ .e-small .e-outline.e-float-input.e-success textarea:focus ~ label.e-float-text,
2042
+ .e-outline.e-float-input.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
2043
+ .e-bigger .e-outline.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
2044
+ .e-outline.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2045
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-success input:focus ~ label.e-float-text,
2046
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2047
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
2048
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2049
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
2050
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
2051
+ .e-outline.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2052
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-success textarea:focus ~ label.e-float-text,
2053
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2054
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
2055
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2056
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
2057
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
2058
+ .e-outline.e-float-input.e-success label.e-float-text.e-label-top,
2059
+ .e-outline.e-float-input.e-input-group.e-success label.e-float-text.e-label-top,
2060
+ .e-outline.e-float-input.e-control-wrapper.e-success label.e-float-text.e-label-top,
2061
+ .e-outline.e-float-input.e-valid-input.e-success:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
2062
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-success:not(.e-input-focus) input:focus ~ label.e-float-text.e-label-top,
2063
+ .e-outline.e-float-input.e-valid-input.e-success:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
2064
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-success:not(.e-input-focus) textarea:focus ~ label.e-float-text.e-label-top,
2065
+ .e-outline.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2066
+ .e-outline.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2067
+ .e-bigger .e-outline.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2068
+ .e-outline.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
2069
+ .e-small .e-outline.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2070
+ .e-outline.e-float-input.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2071
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-success).e-input-focus input ~ label.e-float-text,
2072
+ .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
2073
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2074
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
2075
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text,
2076
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
2077
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2078
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text {
2079
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2080
+ color: $input-success-color;
2081
+ }
2082
+ }
2083
+
2084
+ .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
2085
+ .e-outline.e-float-input.e-input-group.e-error.e-valid-input label.e-label-top.e-float-text,
2086
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input:focus ~ label.e-float-text,
2087
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
2088
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input:focus ~ label.e-float-text,
2089
+ .e-small .e-outline.e-float-input.e-error input:focus ~ label.e-float-text,
2090
+ .e-outline.e-float-input.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
2091
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2092
+ .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
2093
+ .e-outline.e-float-input.e-bigger.e-error textarea:focus ~ label.e-float-text,
2094
+ .e-bigger .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
2095
+ .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
2096
+ .e-small .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
2097
+ .e-outline.e-float-input.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
2098
+ .e-bigger .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
2099
+ .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2100
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error input:focus ~ label.e-float-text,
2101
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2102
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
2103
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2104
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
2105
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
2106
+ .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2107
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error textarea:focus ~ label.e-float-text,
2108
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2109
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
2110
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2111
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
2112
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
2113
+ .e-outline.e-float-input.e-error label.e-float-text.e-label-top,
2114
+ .e-outline.e-float-input.e-input-group.e-error label.e-float-text.e-label-top,
2115
+ .e-outline.e-float-input.e-control-wrapper.e-error label.e-float-text.e-label-top,
2116
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
2117
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-input-focus) input:focus ~ label.e-float-text.e-label-top,
2118
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
2119
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-error:not(.e-input-focus) textarea:focus ~ label.e-float-text.e-label-top,
2120
+ .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2121
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2122
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2123
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input ~ label.e-float-text,
2124
+ .e-small .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2125
+ .e-outline.e-float-input.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2126
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2127
+ .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
2128
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2129
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
2130
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text,
2131
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
2132
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2133
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text {
2134
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2135
+ color: $input-error-color;
2136
+ }
2137
+ }
2138
+
2139
+ .e-outline.e-float-input.e-warning.e-input-focus input:focus ~ label.e-float-text,
2140
+ .e-outline.e-float-input.e-input-group.e-warning.e-valid-input label.e-label-top.e-float-text,
2141
+ .e-outline.e-float-input.e-bigger.e-warning.e-input-focus input:focus ~ label.e-float-text,
2142
+ .e-bigger .e-outline.e-float-input.e-warning.e-input-focus input:focus ~ label.e-float-text,
2143
+ .e-outline.e-float-input.e-small.e-warning.e-input-focus input:focus ~ label.e-float-text,
2144
+ .e-small .e-outline.e-float-input.e-warning input:focus ~ label.e-float-text,
2145
+ .e-outline.e-float-input.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
2146
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-warning) input:focus ~ label.e-float-text,
2147
+ .e-outline.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2148
+ .e-outline.e-float-input.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2149
+ .e-bigger .e-outline.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2150
+ .e-outline.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
2151
+ .e-small .e-outline.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2152
+ .e-outline.e-float-input.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2153
+ .e-bigger .e-outline.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
2154
+ .e-outline.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2155
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-warning input:focus ~ label.e-float-text,
2156
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2157
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
2158
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2159
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
2160
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
2161
+ .e-outline.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2162
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2163
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2164
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
2165
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2166
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2167
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
2168
+ .e-outline.e-float-input.e-warning label.e-float-text.e-label-top,
2169
+ .e-outline.e-float-input.e-input-group.e-warning label.e-float-text.e-label-top,
2170
+ .e-outline.e-float-input.e-control-wrapper.e-warning label.e-float-text.e-label-top,
2171
+ .e-outline.e-float-input.e-valid-input.e-warning:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
2172
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-warning:not(.e-input-focus) input:focus ~ label.e-float-text.e-label-top,
2173
+ .e-outline.e-float-input.e-valid-input.e-warning:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
2174
+ .e-outline.e-float-input.e-control-wrapper.e-valid-input.e-warning:not(.e-input-focus) textarea:focus ~ label.e-float-text.e-label-top,
2175
+ .e-outline.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2176
+ .e-outline.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2177
+ .e-bigger .e-outline.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2178
+ .e-outline.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
2179
+ .e-small .e-outline.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2180
+ .e-outline.e-float-input.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2181
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-warning).e-input-focus input ~ label.e-float-text,
2182
+ .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
2183
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2184
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
2185
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text,
2186
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
2187
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2188
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text {
2189
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2190
+ color: $input-warning-color;
2191
+ }
2192
+ }
2193
+
2194
+ .e-outline.e-float-input.e-input-group.e-valid-input.e-input-focus label.e-label-top,
2195
+ .e-outline.e-float-input.e-input-group.e-input-focus label.e-label-top,
2196
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-valid-input.e-input-focus label.e-label-top,
2197
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-input-focus label.e-label-top {
2198
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2199
+ color: $input-active-border-color;
2200
+ }
2201
+ }
2202
+
2203
+ .e-outline.e-input[disabled],
2204
+ .e-outline.e-input-group .e-input[disabled],
2205
+ .e-outline.e-input-group.e-control-wrapper .e-input[disabled],
2206
+ .e-outline.e-input-group.e-disabled,
2207
+ .e-outline.e-input-group.e-control-wrapper.e-disabled,
2208
+ .e-outline.e-float-input input[disabled],
2209
+ .e-outline.e-float-input.e-control-wrapper input[disabled],
2210
+ .e-outline.e-float-input textarea[disabled],
2211
+ .e-outline.e-float-input.e-control-wrapper textarea[disabled],
2212
+ .e-outline.e-float-input.e-disabled,
2213
+ .e-outline.e-float-input.e-control-wrapper.e-disabled,
2214
+ .e-outline.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
2215
+ .e-outline.e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap,
2216
+ .e-outline.e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
2217
+ .e-outline.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap {
2218
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2219
+ background-image: none;
2220
+ border-bottom-color: $outline-disabled-border-color;
2221
+ border-color: $outline-disabled-border-color;
2222
+ }
2223
+ }
2224
+
2225
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-input-focus),
2226
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus),
2227
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-disabled.e-valid-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus) {
2228
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2229
+ border-top-color: transparent;
2230
+ }
2231
+ }
2232
+
2233
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2234
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::after,
2235
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus) label.e-float-text::before,
2236
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus) label.e-float-text::after,
2237
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-disabled.e-valid-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus) label.e-float-text::before,
2238
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-disabled.e-valid-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus) label.e-float-text::after,
2239
+ .e-outline.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2240
+ .e-outline.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::after,
2241
+ .e-outline.e-disabled.e-float-input.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2242
+ .e-outline.e-disabled.e-float-input.e-valid-input:not(.e-input-focus) label.e-float-text::after,
2243
+ .e-outline.e-disabled.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2244
+ .e-outline.e-disabled.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) label.e-float-text::after {
2245
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2246
+ border-color: $outline-disabled-border-color;
2247
+ }
2248
+ }
2249
+
2250
+ .e-outline.e-float-input.e-input-group.e-disabled .e-float-text,
2251
+ .e-outline.e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
2252
+ .e-outline.e-float-input input[disabled] ~ label.e-float-text,
2253
+ .e-outline.e-float-input input[disabled] ~ label.e-label-top.e-float-text,
2254
+ .e-outline.e-float-input.e-disabled label.e-float-text,
2255
+ .e-outline.e-float-input.e-disabled label.e-float-text.e-label-top,
2256
+ .e-outline.e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
2257
+ .e-outline.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2258
+ .e-outline.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2259
+ .e-outline.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2260
+ .e-outline.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2261
+ .e-outline.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2262
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2263
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
2264
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2265
+ color: $outline-float-label-disbale-font-color;
2266
+ }
2267
+ }
2268
+
2269
+ .e-outline.e-float-input textarea[disabled] ~ label.e-float-text,
2270
+ .e-outline.e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
2271
+ .e-outline.e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
2272
+ .e-outline.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2273
+ .e-outline.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2274
+ .e-outline.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2275
+ .e-outline.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2276
+ .e-outline.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2277
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2278
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
2279
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2280
+ color: $outline-float-label-disbale-font-color;
2281
+ }
2282
+ }
2283
+
2284
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
2285
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
2286
+ .e-outline.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
2287
+ .e-outline.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
2288
+ .e-outline.e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
2289
+ .e-outline.e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
2290
+ .e-outline.e-float-input.e-control-wrapper.e-disabled label.e-float-text,
2291
+ .e-outline.e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
2292
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
2293
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2294
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2295
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2296
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2297
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2298
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2299
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2300
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
2301
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2302
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2303
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2304
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2305
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2306
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2307
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
2308
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2309
+ color: $outline-float-label-disbale-font-color;
2310
+ }
2311
+ }
2312
+
2313
+ .e-outline.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
2314
+ .e-outline.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
2315
+ .e-outline.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
2316
+ .e-outline.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
2317
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
2318
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2319
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2320
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2321
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2322
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2323
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2324
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2325
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
2326
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2327
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2328
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2329
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2330
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2331
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2332
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
2333
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2334
+ color: $outline-float-label-disbale-font-color;
2335
+ }
2336
+ }
2337
+
2338
+ .e-outline.e-input-group.e-disabled .e-input-group-icon,
2339
+ .e-outline.e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
2340
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2341
+ color: $outline-input-group-disabled-color;
2342
+ }
2343
+ }
2344
+
2345
+ // Outline input clear icon
2346
+
2347
+ .e-outline.e-float-input:not(.e-disabled) .e-clear-icon:hover,
2348
+ .e-outline.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover,
2349
+ .e-outline.e-input-group:not(.e-disabled) .e-clear-icon:hover,
2350
+ .e-outline.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover {
2351
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2352
+ color: $outline-input-clear-icon-hover-color;
2353
+ }
2354
+ }
2355
+
2356
+ .e-outline.e-float-input:not(.e-disabled) .e-clear-icon:active,
2357
+ .e-outline.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:active,
2358
+ .e-outline.e-input-group:not(.e-disabled) .e-clear-icon:active,
2359
+ .e-outline.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:active {
2360
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2361
+ color: $outline-input-clear-icon-active-color;
2362
+ }
2363
+ }
2364
+
2365
+ // Filled input background color changes
2366
+
2367
+ .e-filled.e-input-group,
2368
+ .e-filled.e-input-group.e-control-wrapper,
2369
+ .e-filled.e-float-input,
2370
+ .e-filled.e-float-input.e-input-group,
2371
+ .e-filled.e-float-input.e-control-wrapper,
2372
+ .e-filled.e-float-input.e-input-group.e-control-wrapper {
2373
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2374
+ background: $filled-input-bg-color;
2375
+ transition: $background-color-transition;
2376
+ }
2377
+ }
2378
+
2379
+ .e-filled.e-input-group:hover,
2380
+ .e-filled.e-input-group.e-control-wrapper:hover,
2381
+ .e-filled.e-float-input:hover,
2382
+ .e-filled.e-float-input.e-input-group:hover,
2383
+ .e-filled.e-float-input.e-control-wrapper:hover,
2384
+ .e-filled.e-float-input.e-input-group.e-control-wrapper:hover {
2385
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2386
+ background: $filled-input-overlay-focused-bg-color;
2387
+ transition: $background-color-transition;
2388
+ }
2389
+ }
2390
+
2391
+ .e-filled.e-input-group.e-input-focus,
2392
+ .e-filled.e-input-group.e-control-wrapper.e-input-focus,
2393
+ .e-filled.e-float-input.e-input-focus,
2394
+ .e-filled.e-float-input.e-input-group.e-input-focus,
2395
+ .e-filled.e-float-input.e-control-wrapper.e-input-focus,
2396
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-input-focus,
2397
+ .e-filled.e-input-group:hover.e-input-focus,
2398
+ .e-filled.e-input-group:hover.e-control-wrapper.e-input-focus,
2399
+ .e-filled.e-float-input:hover.e-input-focus,
2400
+ .e-filled.e-float-input:hover.e-input-group.e-input-focus,
2401
+ .e-filled.e-float-input:hover.e-control-wrapper.e-input-focus,
2402
+ .e-filled.e-float-input:hover.e-input-group.e-control-wrapper.e-input-focus {
2403
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2404
+ background: $filled-input-overlay-activated-bg-color;
2405
+ transition: $background-color-transition;
2406
+ }
2407
+ }
2408
+
2409
+ // Filled input border color changes
2410
+
2411
+ .e-filled.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2412
+ .e-filled.e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2413
+ .e-filled.e-float-input.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2414
+ .e-filled.e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2415
+ .e-filled.e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
2416
+ .e-filled.e-float-input.e-control-wrapper:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) {
2417
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2418
+ border-color: $filled-input-hover-border-color;
2419
+ }
2420
+ }
2421
+
2422
+ .e-filled.e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2423
+ .e-filled.e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2424
+ .e-filled.e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2425
+ .e-filled.e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2426
+ .e-filled.e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
2427
+ .e-filled.e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) {
2428
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2429
+ border-color: $filled-input-hover-border-color;
2430
+ }
2431
+ }
2432
+
2433
+ .e-filled.e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2434
+ .e-filled.e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2435
+ .e-filled.e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2436
+ .e-filled.e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2437
+ .e-filled.e-float-input.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
2438
+ .e-filled.e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) {
2439
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2440
+ border-color: $filled-input-hover-border-color;
2441
+ }
2442
+ }
2443
+
2444
+ .e-filled.e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error),
2445
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) {
2446
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2447
+ border-color: $input-group-full-border-color;
2448
+ }
2449
+ }
2450
+
2451
+ .e-filled.e-float-input:not(.e-success):not(.e-warning):not(.e-error),
2452
+ .e-filled.e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) {
2453
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2454
+ border-color: $input-group-full-border-color;
2455
+ }
2456
+ }
2457
+
2458
+ .e-filled.e-float-input.e-success,
2459
+ .e-filled.e-float-input.e-control-wrapper.e-success,
2460
+ .e-filled.e-input-group.e-float-icon-left.e-success,
2461
+ .e-filled.e-input-group.e-float-icon-left.e-control-wrapper.e-success {
2462
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2463
+ @include input-state-color ($input-success-color);
2464
+ }
2465
+ }
2466
+
2467
+ .e-filled.e-float-input.e-warning,
2468
+ .e-filled.e-float-input.e-control-wrapper.e-warning,
2469
+ .e-filled.e-input-group.e-float-icon-left.e-warning,
2470
+ .e-filled.e-input-group.e-float-icon-left.e-control-wrapper.e-warning {
2471
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2472
+ @include input-state-color ($input-warning-color);
2473
+ }
2474
+ }
2475
+
2476
+ .e-filled.e-float-input.e-error,
2477
+ .e-filled.e-float-input.e-control-wrapper.e-error,
2478
+ .e-filled.e-input-group.e-float-icon-left.e-error,
2479
+ .e-filled.e-input-group.e-float-icon-left.e-control-wrapper.e-error {
2480
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2481
+ @include input-state-color ($input-error-color);
2482
+ }
2483
+ }
2484
+
2485
+ // Filled input floating label color configuration
2486
+
2487
+ .e-filled label.e-float-text,
2488
+ .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2489
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2490
+ .e-filled.e-float-input.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2491
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2492
+ .e-bigger .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2493
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2494
+ .e-filled.e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2495
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2496
+ .e-small .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2497
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2498
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2499
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2500
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2501
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom {
2502
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2503
+ color: $filled-input-float-label-color;
2504
+ }
2505
+ }
2506
+
2507
+ .e-filled.e-float-input.e-error label.e-float-text,
2508
+ .e-filled.e-float-input.e-control-wrapper.e-error label.e-float-text,
2509
+ .e-filled.e-float-input.e-error input:focus ~ label.e-float-text,
2510
+ .e-filled.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2511
+ .e-filled.e-float-input.e-error textarea:focus ~ label.e-float-text,
2512
+ .e-filled.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2513
+ .e-filled.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2514
+ .e-filled.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text {
2515
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2516
+ color: $input-error-color;
2517
+ }
2518
+ }
2519
+
2520
+ .e-filled.e-float-input.e-success label.e-float-text,
2521
+ .e-filled.e-float-input.e-control-wrapper.e-success label.e-float-text,
2522
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
2523
+ .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2524
+ .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
2525
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2526
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2527
+ .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text {
2528
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2529
+ color: $input-success-color;
2530
+ }
2531
+ }
2532
+
2533
+ .e-filled.e-float-input.e-warning label.e-float-text,
2534
+ .e-filled.e-float-input.e-control-wrapper.e-warning label.e-float-text,
2535
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
2536
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2537
+ .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2538
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2539
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2540
+ .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text {
2541
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2542
+ color: $input-warning-color;
2543
+ }
2544
+ }
2545
+
2546
+ .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2547
+ .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2548
+ .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2549
+ .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2550
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2551
+ .e-filled.e-float-input:not(.e-error) input label.e-float-text.e-label-top,
2552
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2553
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2554
+ .e-filled.e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2555
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2556
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2557
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2558
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2559
+ .e-bigger .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2560
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2561
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2562
+ .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2563
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2564
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
2565
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2566
+ color: $filled-input-float-label-color;
2567
+ }
2568
+ }
2569
+
2570
+ .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2571
+ .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2572
+ .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2573
+ .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2574
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2575
+ .e-filled.e-float-input:not(.e-error) input label.e-float-text.e-label-top,
2576
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2577
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2578
+ .e-filled.e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2579
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2580
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2581
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2582
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2583
+ .e-bigger .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2584
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2585
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2586
+ .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2587
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2588
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
2589
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2590
+ color: $filled-input-float-label-color;
2591
+ }
2592
+ }
2593
+
2594
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2595
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
2596
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
2597
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2598
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2599
+ .e-filled.e-float-input .e-control-wrapper:not(.e-error) input label.e-float-text.e-label-top,
2600
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2601
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2602
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2603
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2604
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2605
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2606
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
2607
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
2608
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2609
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2610
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2611
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2612
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text {
2613
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2614
+ color: $filled-input-float-label-color;
2615
+ }
2616
+ }
2617
+
2618
+ .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2619
+ .e-filled.e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
2620
+ .e-filled.e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2621
+ .e-filled.e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
2622
+ .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2623
+ .e-small .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2624
+ .e-small .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2625
+ .e-small .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2626
+ .e-small .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
2627
+ .e-small .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2628
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2629
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2630
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2631
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2632
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2633
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2634
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
2635
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2636
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2637
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2638
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2639
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2640
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2641
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
2642
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2643
+ color: $filled-input-float-label-color;
2644
+ }
2645
+ }
2646
+
2647
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2648
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
2649
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2650
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
2651
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2652
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2653
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
2654
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
2655
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
2656
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2657
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2658
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2659
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2660
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2661
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2662
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2663
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
2664
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2665
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2666
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2667
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2668
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2669
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2670
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
2671
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2672
+ color: $filled-input-float-label-color;
2673
+ }
2674
+ }
2675
+
2676
+ .e-filled.e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2677
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2678
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2679
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2680
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2681
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2682
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2683
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2684
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2685
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2686
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2687
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2688
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2689
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
2690
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2691
+ color: $filled-input-float-label-color;
2692
+ }
2693
+ }
2694
+
2695
+ .e-filled.e-float-input:not(.e-input-focus):not(.e-disabled) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
2696
+ .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
2697
+ .e-filled.e-float-input.e-control-wrapper:not(.e-input-focus):not(.e-disabled) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top) {
2698
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2699
+ color: $filled-input-float-label-color;
2700
+ }
2701
+ }
2702
+
2703
+ .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2704
+ .e-filled.e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
2705
+ .e-filled.e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2706
+ .e-filled.e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2707
+ .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2708
+ .e-filled.e-float-input:not(.e-error) textarea label.e-float-text.e-label-top,
2709
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2710
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2711
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2712
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2713
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2714
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2715
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
2716
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2717
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2718
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2719
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2720
+ color: $filled-input-float-label-color;
2721
+ }
2722
+ }
2723
+
2724
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2725
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
2726
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2727
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2728
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2729
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea label.e-float-text.e-label-top,
2730
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2731
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2732
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2733
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2734
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2735
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2736
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
2737
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2738
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2739
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2740
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2741
+ color: $filled-input-float-label-color;
2742
+ }
2743
+ }
2744
+
2745
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2746
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2747
+ .e-filled.e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2748
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
2749
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2750
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2751
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
2752
+ .e-small .e-filled.e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2753
+ .e-small .e-filled.e-float-input:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
2754
+ .e-small .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2755
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2756
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2757
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2758
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2759
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2760
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2761
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2762
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2763
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2764
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2765
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2766
+ color: $filled-input-float-label-color;
2767
+ }
2768
+ }
2769
+
2770
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2771
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2772
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2773
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
2774
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2775
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2776
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
2777
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2778
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
2779
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2780
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2781
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2782
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2783
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2784
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2785
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2786
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2787
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2788
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2789
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2790
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2791
+ color: $filled-input-float-label-color;
2792
+ }
2793
+ }
2794
+
2795
+ .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2796
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2797
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2798
+ .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2799
+ .e-small .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2800
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2801
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2802
+ .e-filled.e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2803
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2804
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2805
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2806
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2807
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2808
+ .e-filled.e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
2809
+ .e-small .e-filled.e-float-input:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
2810
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2811
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2812
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
2813
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
2814
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2815
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2816
+ .e-filled.e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2817
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2818
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2819
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2820
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2821
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2822
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
2823
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
2824
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2825
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2826
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
2827
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
2828
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2829
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2830
+ .e-filled.e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2831
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2832
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2833
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2834
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2835
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2836
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
2837
+ .e-small .e-filled.e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
2838
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2839
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
2840
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
2841
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2842
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2843
+ .e-filled.e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2844
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2845
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2846
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2847
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2848
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2849
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
2850
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
2851
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2852
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
2853
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
2854
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2855
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2856
+ .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2857
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2858
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2859
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2860
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2861
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2862
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2863
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2864
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2865
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2866
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2867
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2868
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2869
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2870
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2871
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2872
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2873
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2874
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2875
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2876
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2877
+ .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2878
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2879
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2880
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2881
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2882
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2883
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2884
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2885
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2886
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2887
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2888
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2889
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2890
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
2891
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2892
+ color: $input-active-accent-color;
2893
+ }
2894
+ }
2895
+
2896
+ .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2897
+ .e-bigger .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2898
+ .e-bigger.e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2899
+ .e-small .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2900
+ .e-small.e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2901
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2902
+ .e-bigger.e-small .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2903
+ .e-filled.e-float-input.e-bigger.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2904
+ .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2905
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2906
+ .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2907
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2908
+ .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2909
+ .e-bigger .e-filled.e-float-input.e-small.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2910
+ .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2911
+ .e-filled.e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text {
2912
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2913
+ color: $filled-input-float-label-color;
2914
+ }
2915
+ }
2916
+
2917
+ .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2918
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2919
+ .e-bigger.e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2920
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2921
+ .e-small.e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2922
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2923
+ .e-bigger.e-small .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2924
+ .e-filled.e-float-input.e-bigger.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2925
+ .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2926
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2927
+ .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2928
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2929
+ .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2930
+ .e-bigger .e-filled.e-float-input.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2931
+ .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2932
+ .e-filled.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text {
2933
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2934
+ color: $filled-input-float-label-color;
2935
+ }
2936
+ }
2937
+
2938
+
2939
+ input.e-filled.e-input#{$css}:-moz-placeholder {
2940
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2941
+ color: $filled-input-float-label-color;
2942
+ }
2943
+ }
2944
+
2945
+
2946
+ .e-input-group.e-filled input.e-input:-moz-placeholder {
2947
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2948
+ color: $filled-input-float-label-color;
2949
+ }
2950
+ }
2951
+
2952
+
2953
+ .e-input-group.e-filled input.e-input:-moz-placeholder,
2954
+ .e-input-group.e-filled.e-control-wrapper input.e-input:-moz-placeholder {
2955
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2956
+ color: $filled-input-float-label-color;
2957
+ }
2958
+ }
2959
+
2960
+
2961
+ input.e-filled.e-input#{$css}:-moz-placeholder {
2962
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2963
+ color: $filled-input-float-label-color;
2964
+ }
2965
+ }
2966
+
2967
+
2968
+ .e-input-group.e-filled input.e-input:-moz-placeholder {
2969
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2970
+ color: $filled-input-float-label-color;
2971
+ }
2972
+ }
2973
+
2974
+
2975
+ .e-input-group.e-filled.e-control-wrapper input.e-input:-moz-placeholder {
2976
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2977
+ color: $filled-input-float-label-color;
2978
+ }
2979
+ }
2980
+
2981
+
2982
+ textarea.e-filled.e-input#{$css}:-moz-placeholder {
2983
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2984
+ color: $filled-input-float-label-color;
2985
+ }
2986
+ }
2987
+
2988
+
2989
+ .e-input-group.e-filled textarea.e-input:-moz-placeholder {
2990
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2991
+ color: $filled-input-float-label-color;
2992
+ }
2993
+ }
2994
+
2995
+
2996
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input:-moz-placeholder {
2997
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2998
+ color: $filled-input-float-label-color;
2999
+ }
3000
+ }
3001
+
3002
+
3003
+ input.e-filled.e-input#{$css}::-moz-placeholder {
3004
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3005
+ color: $filled-input-float-label-color;
3006
+ }
3007
+ }
3008
+
3009
+
3010
+ .e-input-group.e-filled input.e-input::-moz-placeholder {
3011
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3012
+ color: $filled-input-float-label-color;
3013
+ }
3014
+ }
3015
+
3016
+
3017
+ .e-input-group.e-filled.e-control-wrapper input.e-input::-moz-placeholder {
3018
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3019
+ color: $filled-input-float-label-color;
3020
+ }
3021
+ }
3022
+
3023
+
3024
+ textarea.e-filled.e-input#{$css}::-moz-placeholder {
3025
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3026
+ color: $filled-input-float-label-color;
3027
+ }
3028
+ }
3029
+
3030
+
3031
+ .e-input-group.e-filled textarea.e-input::-moz-placeholder {
3032
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3033
+ color: $filled-input-float-label-color;
3034
+ }
3035
+ }
3036
+
3037
+
3038
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input::-moz-placeholder {
3039
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3040
+ color: $filled-input-float-label-color;
3041
+ }
3042
+ }
3043
+
3044
+
3045
+ input.e-filled.e-input#{$css}:-ms-input-placeholder {
3046
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3047
+ color: $filled-input-float-label-color;
3048
+ }
3049
+ }
3050
+
3051
+
3052
+ .e-input-group.e-filled input.e-input:-ms-input-placeholder {
3053
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3054
+ color: $filled-input-float-label-color;
3055
+ }
3056
+ }
3057
+
3058
+
3059
+ .e-input-group.e-filled.e-control-wrapper input.e-input:-ms-input-placeholder {
3060
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3061
+ color: $filled-input-float-label-color;
3062
+ }
3063
+ }
3064
+
3065
+
3066
+ textarea.e-filled.e-input#{$css}:-ms-input-placeholder {
3067
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3068
+ color: $filled-input-float-label-color;
3069
+ }
3070
+ }
3071
+
3072
+
3073
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input:-ms-input-placeholder {
3074
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3075
+ color: $filled-input-float-label-color;
3076
+ }
3077
+ }
3078
+
3079
+
3080
+ .e-input-group textarea.e-input:-ms-input-placeholder {
3081
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3082
+ color: $input-placeholder-color;
3083
+ }
3084
+ }
3085
+
3086
+
3087
+ .e-input-group textarea.e-input:-moz-placeholder {
3088
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3089
+ color: $input-placeholder-color;
3090
+ }
3091
+ }
3092
+
3093
+
3094
+ .e-input-group .e-input:-ms-input-placeholder {
3095
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3096
+ color: $input-placeholder-color;
3097
+ }
3098
+ }
3099
+
3100
+
3101
+ input.e-input#{$css}::-webkit-input-placeholder {
3102
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3103
+ color: $input-placeholder-color;
3104
+ }
3105
+ }
3106
+
3107
+
3108
+ .e-input-group.e-filled textarea.e-input:-ms-input-placeholder {
3109
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3110
+ color: $filled-input-float-label-color;
3111
+ }
3112
+ }
3113
+
3114
+
3115
+ input.e-filled.e-input#{$css}::-webkit-input-placeholder {
3116
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3117
+ color: $filled-input-float-label-color;
3118
+ }
3119
+ }
3120
+
3121
+
3122
+ .e-input-group.e-filled.e-control-wrapper input.e-input::-webkit-input-placeholder {
3123
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3124
+ color: $filled-input-float-label-color;
3125
+ }
3126
+ }
3127
+
3128
+
3129
+ .e-input-group.e-filled input.e-input::-webkit-input-placeholder {
3130
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3131
+ color: $filled-input-float-label-color;
3132
+ }
3133
+ }
3134
+
3135
+
3136
+ textarea.e-filled.e-input#{$css}::-webkit-input-placeholder {
3137
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3138
+ color: $filled-input-float-label-color;
3139
+ }
3140
+ }
3141
+
3142
+
3143
+ .e-input-group.e-filled textarea.e-input::-webkit-input-placeholder {
3144
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3145
+ color: $filled-input-float-label-color;
3146
+ }
3147
+ }
3148
+
3149
+
3150
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
3151
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3152
+ color: $filled-input-float-label-color;
3153
+ }
3154
+ }
3155
+
3156
+ // Filled input clear icon states
3157
+
3158
+ .e-filled.e-float-input:not(.e-disabled) .e-clear-icon:hover,
3159
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover,
3160
+ .e-filled.e-input-group:not(.e-disabled) .e-clear-icon:hover,
3161
+ .e-filled.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover {
3162
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3163
+ color: $filled-input-clear-icon-hover-color;
3164
+ }
3165
+ }
3166
+
3167
+ .e-filled.e-float-input:not(.e-disabled) .e-clear-icon:active,
3168
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:active,
3169
+ .e-filled.e-input-group:not(.e-disabled) .e-clear-icon:active,
3170
+ .e-filled.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:active {
3171
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3172
+ color: $filled-input-clear-icon-active-color;
3173
+ }
3174
+ }
3175
+
3176
+ // Filled input disabled configuration
3177
+
3178
+ .e-filled.e-float-input.e-disabled .e-clear-icon,
3179
+ .e-filled.e-float-input.e-control-wrapper.e-disabled .e-clear-icon,
3180
+ .e-input-group.e-filled.e-disabled .e-clear-icon,
3181
+ .e-input-group.e-filled.e-control-wrapper.e-disabled .e-clear-icon,
3182
+ .e-input-group.e-filled.e-disabled .e-input-group-icon,
3183
+ .e-input-group.e-filled.e-control-wrapper.e-disabled .e-input-group-icon {
3184
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3185
+ color: $filled-input-disabled-font-color;
3186
+ }
3187
+ }
3188
+
3189
+ .e-filled.e-input#{$css}[disabled],
3190
+ .e-input-group.e-filled .e-input[disabled],
3191
+ .e-input-group.e-filled.e-control-wrapper .e-input[disabled],
3192
+ .e-input-group.e-filled.e-disabled,
3193
+ .e-input-group.e-filled.e-control-wrapper.e-disabled,
3194
+ .e-filled.e-float-input input[disabled],
3195
+ .e-filled.e-float-input.e-control-wrapper input[disabled],
3196
+ .e-filled.e-float-input textarea[disabled],
3197
+ .e-filled.e-float-input.e-control-wrapper textarea[disabled],
3198
+ .e-filled.e-float-input.e-disabled,
3199
+ .e-filled.e-float-input.e-control-wrapper.e-disabled {
3200
+ @if $input-skin-name == 'material' {
3201
+ background: $filled-input-disabled-bg-color;
3202
+ background-image: none;
3203
+ background-position: initial;
3204
+ background-repeat: no-repeat;
3205
+ background-size: $zero-value;
3206
+ border-color: $filled-input-disabled-border-color;
3207
+ color: $filled-input-disabled-font-color;
3208
+ }
3209
+ @if $input-skin-name == 'Material3' {
3210
+ //background: $filled-input-disabled-bg-color;
3211
+ background-image: none;
3212
+ background-position: initial;
3213
+ background-repeat: no-repeat;
3214
+ background-size: $zero-value;
3215
+ border-color: $filled-input-disabled-border-color;
3216
+ color: $filled-input-disabled-font-color;
3217
+ }
3218
+ }
3219
+
3220
+ .e-filled.e-float-input.e-disabled:not(.e-success):not(.e-warning):not(.e-error),
3221
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-success):not(.e-warning):not(.e-error) {
3222
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3223
+ border-color: $filled-input-disabled-border-color;
3224
+ }
3225
+ }
3226
+
3227
+ .e-filled.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
3228
+ .e-filled.e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap,
3229
+ .e-filled.e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
3230
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap {
3231
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3232
+ background: $filled-input-disabled-bg-color;
3233
+ background-image: none;
3234
+ background-position: initial;
3235
+ background-repeat: no-repeat;
3236
+ background-size: $zero-value;
3237
+ border-color: $filled-input-disabled-border-color;
3238
+ color: $filled-input-disabled-font-color;
3239
+ }
3240
+ }
3241
+
3242
+ .e-filled.e-float-input:not(.e-disabled) input[disabled],
3243
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) input[disabled],
3244
+ .e-filled.e-float-input:not(.e-disabled) textarea[disabled],
3245
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) textarea[disabled] {
3246
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3247
+ color: $filled-input-disabled-font-color;
3248
+ }
3249
+ }
3250
+
3251
+ .e-filled.e-float-input.e-input-group.e-disabled .e-float-text,
3252
+ .e-filled.e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
3253
+ .e-filled.e-float-input input[disabled] ~ label.e-float-text,
3254
+ .e-filled.e-float-input input[disabled] ~ label.e-label-top.e-float-text,
3255
+ .e-filled.e-float-input.e-disabled label.e-float-text,
3256
+ .e-filled.e-float-input.e-disabled label.e-float-text.e-label-top,
3257
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
3258
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
3259
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3260
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3261
+ .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
3262
+ .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3263
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3264
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
3265
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3266
+ color: $filled-input-disabled-font-color;
3267
+ }
3268
+ }
3269
+
3270
+ .e-filled.e-float-input textarea[disabled] ~ label.e-float-text,
3271
+ .e-filled.e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
3272
+ .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
3273
+ .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
3274
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3275
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3276
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
3277
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3278
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3279
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
3280
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3281
+ color: $filled-input-disabled-font-color;
3282
+ }
3283
+ }
3284
+
3285
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
3286
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
3287
+ .e-filled.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
3288
+ .e-filled.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
3289
+ .e-filled.e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
3290
+ .e-filled.e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
3291
+ .e-filled.e-float-input.e-control-wrapper.e-disabled label.e-float-text,
3292
+ .e-filled.e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
3293
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
3294
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
3295
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3296
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3297
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
3298
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3299
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3300
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3301
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
3302
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
3303
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3304
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3305
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
3306
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3307
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3308
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
3309
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3310
+ color: $filled-input-disabled-font-color;
3311
+ }
3312
+ }
3313
+
3314
+ .e-filled.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
3315
+ .e-filled.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
3316
+ .e-filled.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
3317
+ .e-filled.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
3318
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
3319
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
3320
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3321
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3322
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
3323
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3324
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3325
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3326
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
3327
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
3328
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3329
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3330
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
3331
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3332
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3333
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
3334
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3335
+ color: $filled-input-disabled-font-color;
3336
+ }
3337
+ }
3338
+
3339
+
3340
+ input.e-filled.e-disabled.e-input#{$css}:-moz-placeholder {
3341
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3342
+ color: $filled-input-disabled-font-color;
3343
+ }
3344
+ }
3345
+
3346
+
3347
+ .e-input-group.e-filled.e-disabled input.e-input:-moz-placeholder {
3348
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3349
+ color: $filled-input-disabled-font-color;
3350
+ }
3351
+ }
3352
+
3353
+
3354
+ .e-input-group.e-filled.e-disabled input.e-input:-moz-placeholder,
3355
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input:-moz-placeholder {
3356
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3357
+ color: $filled-input-disabled-font-color;
3358
+ }
3359
+ }
3360
+
3361
+
3362
+ input.e-filled.e-disabled.e-input#{$css}:-moz-placeholder {
3363
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3364
+ color: $filled-input-disabled-font-color;
3365
+ }
3366
+ }
3367
+
3368
+
3369
+ .e-input-group.e-filled.e-disabled input.e-input:-moz-placeholder {
3370
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3371
+ color: $filled-input-disabled-font-color;
3372
+ }
3373
+ }
3374
+
3375
+
3376
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input:-moz-placeholder {
3377
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3378
+ color: $filled-input-disabled-font-color;
3379
+ }
3380
+ }
3381
+
3382
+
3383
+ textarea.e-filled.e-disabled.e-input#{$css}:-moz-placeholder {
3384
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3385
+ color: $filled-input-disabled-font-color;
3386
+ }
3387
+ }
3388
+
3389
+
3390
+ .e-input-group.e-filled.e-disabled textarea.e-input:-moz-placeholder {
3391
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3392
+ color: $filled-input-disabled-font-color;
3393
+ }
3394
+ }
3395
+
3396
+
3397
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input:-moz-placeholder {
3398
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3399
+ color: $filled-input-disabled-font-color;
3400
+ }
3401
+ }
3402
+
3403
+
3404
+ input.e-filled.e-disabled.e-input#{$css}::-moz-placeholder {
3405
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3406
+ color: $filled-input-disabled-font-color;
3407
+ }
3408
+ }
3409
+
3410
+
3411
+ .e-input-group.e-filled.e-disabled input.e-input::-moz-placeholder {
3412
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3413
+ color: $filled-input-disabled-font-color;
3414
+ }
3415
+ }
3416
+
3417
+
3418
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input::-moz-placeholder {
3419
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3420
+ color: $filled-input-disabled-font-color;
3421
+ }
3422
+ }
3423
+
3424
+
3425
+ textarea.e-filled.e-disabled.e-input#{$css}::-moz-placeholder {
3426
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3427
+ color: $filled-input-disabled-font-color;
3428
+ }
3429
+ }
3430
+
3431
+
3432
+ .e-input-group.e-filled.e-disabled textarea.e-input::-moz-placeholder {
3433
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3434
+ color: $filled-input-disabled-font-color;
3435
+ }
3436
+ }
3437
+
3438
+
3439
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input::-moz-placeholder {
3440
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3441
+ color: $filled-input-disabled-font-color;
3442
+ }
3443
+ }
3444
+
3445
+
3446
+ input.e-filled.e-disabled.e-input#{$css}:-ms-input-placeholder {
3447
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3448
+ color: $filled-input-disabled-font-color;
3449
+ }
3450
+ }
3451
+
3452
+
3453
+ .e-input-group.e-filled.e-disabled input.e-input:-ms-input-placeholder {
3454
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3455
+ color: $filled-input-disabled-font-color;
3456
+ }
3457
+ }
3458
+
3459
+
3460
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input:-ms-input-placeholder {
3461
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3462
+ color: $filled-input-disabled-font-color;
3463
+ }
3464
+ }
3465
+
3466
+
3467
+ textarea.e-filled.e-disabled.e-input#{$css}:-ms-input-placeholder {
3468
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3469
+ color: $filled-input-disabled-font-color;
3470
+ }
3471
+ }
3472
+
3473
+
3474
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input:-ms-input-placeholder {
3475
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3476
+ color: $filled-input-disabled-font-color;
3477
+ }
3478
+ }
3479
+
3480
+
3481
+ .e-input-group.e-filled.e-disabled textarea.e-input:-ms-input-placeholder {
3482
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3483
+ color: $filled-input-disabled-font-color;
3484
+ }
3485
+ }
3486
+
3487
+
3488
+ input.e-filled.e-disabled.e-input#{$css}::-webkit-input-placeholder {
3489
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3490
+ color: $filled-input-disabled-font-color;
3491
+ }
3492
+ }
3493
+
3494
+
3495
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input::-webkit-input-placeholder {
3496
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3497
+ color: $filled-input-disabled-font-color;
3498
+ }
3499
+ }
3500
+
3501
+
3502
+ .e-input-group.e-filled.e-disabled input.e-input::-webkit-input-placeholder {
3503
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3504
+ color: $filled-input-disabled-font-color;
3505
+ }
3506
+ }
3507
+
3508
+
3509
+ textarea.e-filled.e-disabled.e-input#{$css}::-webkit-input-placeholder {
3510
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3511
+ color: $filled-input-disabled-font-color;
3512
+ }
3513
+ }
3514
+
3515
+
3516
+ .e-input-group.e-filled.e-disabled textarea.e-input::-webkit-input-placeholder {
3517
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3518
+ color: $filled-input-disabled-font-color;
3519
+ }
3520
+ }
3521
+
3522
+
3523
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
3524
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3525
+ color: $filled-input-disabled-font-color;
3526
+ }
3527
+ }
3528
+
3529
+ // Filled input ripple action
3530
+
3531
+ .e-filled.e-input-group.e-float-icon-left:not(.e-float-input)::before,
3532
+ .e-filled.e-input-group.e-float-icon-left:not(.e-float-input)::after,
3533
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::before,
3534
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::after {
3535
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3536
+ @include input-group-animation-bg;
3537
+ }
3538
+ }
3539
+
3540
+ .e-filled.e-float-input.e-input-group.e-float-icon-left .e-float-line::before,
3541
+ .e-filled.e-float-input.e-input-group.e-float-icon-left .e-float-line::after,
3542
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::before,
3543
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::after {
3544
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3545
+ @include input-group-animation-bg;
3546
+ }
3547
+ }
3548
+
3549
+ .e-filled.e-input-group.e-float-icon-left.e-success:not(.e-float-input)::before,
3550
+ .e-filled.e-input-group.e-float-icon-left.e-success:not(.e-float-input)::after,
3551
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input)::before,
3552
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input)::after {
3553
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3554
+ @include input-group-success-animation-bg;
3555
+ }
3556
+ }
3557
+
3558
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-success .e-float-line::before,
3559
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-success .e-float-line::after,
3560
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-float-line::before,
3561
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-float-line::after,
3562
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-float-line::before,
3563
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-float-line::after {
3564
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3565
+ @include input-group-success-animation-bg;
3566
+ }
3567
+ }
3568
+
3569
+ .e-filled.e-input-group.e-float-icon-left.e-warning:not(.e-float-input)::before,
3570
+ .e-filled.e-input-group.e-float-icon-left.e-warning:not(.e-float-input)::after,
3571
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input)::before,
3572
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input)::after,
3573
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-float-line::before,
3574
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-float-line::after {
3575
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3576
+ @include input-group-warning-animation-bg;
3577
+ }
3578
+ }
3579
+
3580
+ .e-filled.e-input-group.e-float-icon-left.e-error:not(.e-float-input)::before,
3581
+ .e-filled.e-input-group.e-float-icon-left.e-error:not(.e-float-input)::after,
3582
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input)::before,
3583
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input)::after {
3584
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3585
+ @include input-group-error-animation-bg;
3586
+ }
3587
+ }
3588
+
3589
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-error .e-float-line::before,
3590
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-error .e-float-line::after,
3591
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-float-line::before,
3592
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-float-line::after {
3593
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3594
+ @include input-group-error-animation-bg;
3595
+ }
3596
+ }
3597
+
3598
+ .e-filled.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3599
+ .e-filled.e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3600
+ .e-filled.e-float-input.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3601
+ .e-filled.e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left {
3602
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3603
+ border-color: $filled-input-hover-border-color;
3604
+ }
3605
+ }
3606
+
3607
+ .e-filled.e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3608
+ .e-filled.e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3609
+ .e-filled.e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3610
+ .e-filled.e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left {
3611
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3612
+ border-color: $filled-input-hover-border-color;
3613
+ }
3614
+ }
3615
+
3616
+ .e-filled.e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3617
+ .e-filled.e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3618
+ .e-filled.e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3619
+ .e-filled.e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left {
3620
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3621
+ border-color: $filled-input-hover-border-color;
3622
+ }
3623
+ }
3624
+
3625
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3626
+ .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3627
+ .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3628
+ .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3629
+ .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3630
+ .e-filled.e-float-input.e-success input label.e-float-text.e-label-top,
3631
+ .e-filled.e-float-input.e-bigger.e-success input:focus ~ label.e-float-text,
3632
+ .e-filled.e-float-input.e-bigger.e-success input:valid ~ label.e-float-text,
3633
+ .e-filled.e-float-input.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3634
+ .e-filled.e-float-input.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3635
+ .e-filled.e-float-input.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3636
+ .e-bigger .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3637
+ .e-bigger .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3638
+ .e-bigger .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3639
+ .e-bigger .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3640
+ .e-bigger .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3641
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3642
+ .e-filled.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3643
+ .e-bigger .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text {
3644
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3645
+ color: $input-success-color;
3646
+ }
3647
+ }
3648
+
3649
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3650
+ .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3651
+ .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3652
+ .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3653
+ .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3654
+ .e-filled.e-float-input.e-warning input label.e-float-text.e-label-top,
3655
+ .e-filled.e-float-input.e-bigger.e-warning input:focus ~ label.e-float-text,
3656
+ .e-filled.e-float-input.e-bigger.e-warning input:valid ~ label.e-float-text,
3657
+ .e-filled.e-float-input.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
3658
+ .e-filled.e-float-input.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3659
+ .e-filled.e-float-input.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3660
+ .e-bigger .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3661
+ .e-bigger .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3662
+ .e-bigger .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3663
+ .e-bigger .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3664
+ .e-bigger .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3665
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
3666
+ .e-filled.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
3667
+ .e-bigger .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text {
3668
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3669
+ color: $input-warning-color;
3670
+ }
3671
+ }
3672
+
3673
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3674
+ .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3675
+ .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3676
+ .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3677
+ .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3678
+ .e-filled.e-float-input.e-success input label.e-float-text.e-label-top,
3679
+ .e-filled.e-float-input.e-bigger.e-success input:focus ~ label.e-float-text,
3680
+ .e-filled.e-float-input.e-bigger.e-success input:valid ~ label.e-float-text,
3681
+ .e-filled.e-float-input.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3682
+ .e-filled.e-float-input.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3683
+ .e-filled.e-float-input.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3684
+ .e-bigger .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3685
+ .e-bigger .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3686
+ .e-bigger .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3687
+ .e-bigger .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3688
+ .e-bigger .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3689
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3690
+ .e-filled.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3691
+ .e-bigger .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text {
3692
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3693
+ color: $input-success-color;
3694
+ }
3695
+ }
3696
+
3697
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3698
+ .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3699
+ .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3700
+ .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3701
+ .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3702
+ .e-filled.e-float-input.e-warning input label.e-float-text.e-label-top,
3703
+ .e-filled.e-float-input.e-bigger.e-warning input:focus ~ label.e-float-text,
3704
+ .e-filled.e-float-input.e-bigger.e-warning input:valid ~ label.e-float-text,
3705
+ .e-filled.e-float-input.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
3706
+ .e-filled.e-float-input.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3707
+ .e-filled.e-float-input.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3708
+ .e-bigger .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3709
+ .e-bigger .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3710
+ .e-bigger .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3711
+ .e-bigger .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3712
+ .e-bigger .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3713
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
3714
+ .e-filled.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
3715
+ .e-bigger .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text {
3716
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3717
+ color: $input-warning-color;
3718
+ }
3719
+ }
3720
+
3721
+ .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3722
+ .e-filled.e-float-input.e-control-wrapper.e-success input:valid ~ label.e-float-text,
3723
+ .e-filled.e-float-input.e-control-wrapper.e-success input ~ label.e-label-top.e-float-text,
3724
+ .e-filled.e-float-input.e-control-wrapper.e-success input[readonly] ~ label.e-label-top.e-float-text,
3725
+ .e-filled.e-float-input.e-control-wrapper.e-success input[disabled] ~ label.e-label-top.e-float-text,
3726
+ .e-filled.e-float-input .e-control-wrapper.e-success input label.e-float-text.e-label-top,
3727
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input:focus ~ label.e-float-text,
3728
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input:valid ~ label.e-float-text,
3729
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3730
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3731
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3732
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3733
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input:valid ~ label.e-float-text,
3734
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input ~ label.e-label-top.e-float-text,
3735
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input[readonly] ~ label.e-label-top.e-float-text,
3736
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input[disabled] ~ label.e-label-top.e-float-text,
3737
+ .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3738
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3739
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text {
3740
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3741
+ color: $input-success-color;
3742
+ }
3743
+ }
3744
+
3745
+ .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3746
+ .e-filled.e-float-input.e-small.e-success input:valid ~ label.e-float-text,
3747
+ .e-filled.e-float-input.e-small.e-success input ~ label.e-label-top.e-float-text,
3748
+ .e-filled.e-float-input.e-small.e-success input[readonly] ~ label.e-float-text,
3749
+ .e-filled.e-float-input.e-small.e-success input[disabled] ~ label.e-float-text,
3750
+ .e-small .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3751
+ .e-small .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3752
+ .e-small .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3753
+ .e-small .e-filled.e-float-input.e-success input[readonly] ~ label.e-float-text.e-label-top,
3754
+ .e-small .e-filled.e-float-input.e-success input[disabled] ~ label.e-float-text.e-label-top,
3755
+ .e-filled.e-float-input.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3756
+ .e-filled.e-float-input.e-small.e-bigger.e-success input:valid ~ label.e-float-text,
3757
+ .e-filled.e-float-input.e-small.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3758
+ .e-filled.e-float-input.e-small.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3759
+ .e-filled.e-float-input.e-small.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3760
+ .e-bigger .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3761
+ .e-bigger .e-filled.e-float-input.e-small.e-success input:valid ~ label.e-float-text,
3762
+ .e-bigger .e-filled.e-float-input.e-small.e-success input ~ label.e-label-top.e-float-text,
3763
+ .e-bigger .e-filled.e-float-input.e-small.e-success input[readonly] ~ label.e-label-top.e-float-text,
3764
+ .e-bigger .e-filled.e-float-input.e-small.e-success input[disabled] ~ label.e-label-top.e-float-text,
3765
+ .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
3766
+ .e-small .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3767
+ .e-filled.e-float-input.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3768
+ .e-bigger .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text {
3769
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3770
+ color: $input-success-color;
3771
+ }
3772
+ }
3773
+
3774
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3775
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:valid ~ label.e-float-text,
3776
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input ~ label.e-label-top.e-float-text,
3777
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[readonly] ~ label.e-float-text,
3778
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[disabled] ~ label.e-float-text,
3779
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3780
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input:valid ~ label.e-float-text,
3781
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input ~ label.e-label-top.e-float-text,
3782
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input[readonly] ~ label.e-float-text.e-label-top,
3783
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input[disabled] ~ label.e-float-text.e-label-top,
3784
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3785
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:valid ~ label.e-float-text,
3786
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3787
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3788
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3789
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3790
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:valid ~ label.e-float-text,
3791
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input ~ label.e-label-top.e-float-text,
3792
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[readonly] ~ label.e-label-top.e-float-text,
3793
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[disabled] ~ label.e-label-top.e-float-text,
3794
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text,
3795
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3796
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3797
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text {
3798
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3799
+ color: $input-success-color;
3800
+ }
3801
+ }
3802
+
3803
+ .e-filled.e-float-input.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3804
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3805
+ .e-filled.e-float-input.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3806
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3807
+ .e-bigger .e-filled.e-float-input.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3808
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3809
+ .e-filled.e-float-input.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3810
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3811
+ .e-small .e-filled.e-float-input.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3812
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3813
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3814
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3815
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3816
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
3817
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3818
+ color: $input-success-color;
3819
+ }
3820
+ }
3821
+
3822
+ .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3823
+ .e-filled.e-float-input.e-success textarea:valid ~ label.e-float-text,
3824
+ .e-filled.e-float-input.e-success textarea ~ label.e-label-top.e-float-text,
3825
+ .e-filled.e-float-input.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3826
+ .e-filled.e-float-input.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3827
+ .e-filled.e-float-input.e-success textarea label.e-float-text.e-label-top,
3828
+ .e-filled.e-float-input.e-bigger.e-success textarea:focus ~ label.e-float-text,
3829
+ .e-filled.e-float-input.e-bigger.e-success textarea:valid ~ label.e-float-text,
3830
+ .e-filled.e-float-input.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3831
+ .e-filled.e-float-input.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3832
+ .e-filled.e-float-input.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3833
+ .e-bigger .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3834
+ .e-bigger .e-filled.e-float-input.e-success textarea:valid ~ label.e-float-text,
3835
+ .e-bigger .e-filled.e-float-input.e-success textarea ~ label.e-label-top.e-float-text,
3836
+ .e-bigger .e-filled.e-float-input.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3837
+ .e-bigger .e-filled.e-float-input.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3838
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3839
+ color: $input-success-color;
3840
+ }
3841
+ }
3842
+
3843
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3844
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:valid ~ label.e-float-text,
3845
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea ~ label.e-label-top.e-float-text,
3846
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3847
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3848
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea label.e-float-text.e-label-top,
3849
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:focus ~ label.e-float-text,
3850
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:valid ~ label.e-float-text,
3851
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3852
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3853
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3854
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3855
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:valid ~ label.e-float-text,
3856
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea ~ label.e-label-top.e-float-text,
3857
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3858
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3859
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3860
+ color: $input-success-color;
3861
+ }
3862
+ }
3863
+
3864
+ .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3865
+ .e-filled.e-float-input.e-small.e-success textarea:valid ~ label.e-float-text,
3866
+ .e-filled.e-float-input.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3867
+ .e-filled.e-float-input.e-small.e-success textarea[readonly] ~ label.e-float-text,
3868
+ .e-filled.e-float-input.e-small.e-success textarea[disabled] ~ label.e-float-text,
3869
+ .e-small .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3870
+ .e-small .e-filled.e-float-input.e-success textarea:valid ~ label.e-float-text,
3871
+ .e-small .e-filled.e-float-input.e-success textarea ~ label.e-label-top.e-float-text,
3872
+ .e-small .e-filled.e-float-input.e-success textarea[readonly] ~ label.e-float-text.e-label-top,
3873
+ .e-small .e-filled.e-float-input.e-success textarea[disabled] ~ label.e-float-text.e-label-top,
3874
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3875
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:valid ~ label.e-float-text,
3876
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3877
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3878
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3879
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3880
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:valid ~ label.e-float-text,
3881
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3882
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3883
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3884
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3885
+ color: $input-success-color;
3886
+ }
3887
+ }
3888
+
3889
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3890
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:valid ~ label.e-float-text,
3891
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3892
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[readonly] ~ label.e-float-text,
3893
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[disabled] ~ label.e-float-text,
3894
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3895
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:valid ~ label.e-float-text,
3896
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea ~ label.e-label-top.e-float-text,
3897
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea[readonly] ~ label.e-float-text.e-label-top,
3898
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea[disabled] ~ label.e-float-text.e-label-top,
3899
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3900
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:valid ~ label.e-float-text,
3901
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3902
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3903
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3904
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3905
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:valid ~ label.e-float-text,
3906
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3907
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3908
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3909
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3910
+ color: $input-success-color;
3911
+ }
3912
+ }
3913
+
3914
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3915
+ .e-filled.e-float-input.e-bigger.e-success input:focus ~ label.e-float-text,
3916
+ .e-bigger .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3917
+ .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3918
+ .e-small .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3919
+ .e-filled.e-float-input.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3920
+ .e-bigger .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3921
+ .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3922
+ .e-filled.e-float-input.e-bigger.e-success textarea:focus ~ label.e-float-text,
3923
+ .e-bigger .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3924
+ .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3925
+ .e-small .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3926
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3927
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3928
+ .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3929
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input:focus ~ label.e-float-text,
3930
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3931
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3932
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3933
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3934
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3935
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3936
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:focus ~ label.e-float-text,
3937
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3938
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3939
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3940
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3941
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3942
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3943
+ .e-filled.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3944
+ .e-bigger .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3945
+ .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
3946
+ .e-small .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3947
+ .e-filled.e-float-input.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3948
+ .e-bigger .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
3949
+ .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3950
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3951
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3952
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text,
3953
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3954
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3955
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text {
3956
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3957
+ color: $input-success-color;
3958
+ }
3959
+ }
3960
+
3961
+ .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3962
+ .e-bigger .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3963
+ .e-bigger.e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3964
+ .e-small .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3965
+ .e-small.e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3966
+ .e-bigger .e-filled.e-float-input.e-small.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3967
+ .e-bigger.e-small .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3968
+ .e-filled.e-float-input.e-bigger.e-small.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3969
+ .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3970
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3971
+ .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3972
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3973
+ .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3974
+ .e-bigger .e-filled.e-float-input.e-small.e-control-wrapper.e-autofill.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3975
+ .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3976
+ .e-filled.e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text {
3977
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3978
+ color: $input-success-color;
3979
+ }
3980
+ }
3981
+
3982
+ .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3983
+ .e-bigger .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3984
+ .e-bigger.e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3985
+ .e-small .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3986
+ .e-small.e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3987
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3988
+ .e-bigger.e-small .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3989
+ .e-filled.e-float-input.e-bigger.e-small.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3990
+ .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3991
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3992
+ .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3993
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3994
+ .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3995
+ .e-bigger .e-filled.e-float-input.e-small.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3996
+ .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3997
+ .e-filled.e-bigger.e-small.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text {
3998
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3999
+ color: $input-success-color;
4000
+ }
4001
+ }
4002
+
4003
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4004
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:valid ~ label.e-float-text,
4005
+ .e-filled.e-float-input.e-control-wrapper.e-warning input ~ label.e-label-top.e-float-text,
4006
+ .e-filled.e-float-input.e-control-wrapper.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4007
+ .e-filled.e-float-input.e-control-wrapper.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4008
+ .e-filled.e-float-input .e-control-wrapper.e-warning input label.e-float-text.e-label-top,
4009
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input:focus ~ label.e-float-text,
4010
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input:valid ~ label.e-float-text,
4011
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
4012
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4013
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4014
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4015
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input:valid ~ label.e-float-text,
4016
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input ~ label.e-label-top.e-float-text,
4017
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4018
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4019
+ .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4020
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4021
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text {
4022
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4023
+ color: $input-warning-color;
4024
+ }
4025
+ }
4026
+
4027
+ .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4028
+ .e-filled.e-float-input.e-small.e-warning input:valid ~ label.e-float-text,
4029
+ .e-filled.e-float-input.e-small.e-warning input ~ label.e-label-top.e-float-text,
4030
+ .e-filled.e-float-input.e-small.e-warning input[readonly] ~ label.e-float-text,
4031
+ .e-filled.e-float-input.e-small.e-warning input[disabled] ~ label.e-float-text,
4032
+ .e-small .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4033
+ .e-small .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
4034
+ .e-small .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
4035
+ .e-small .e-filled.e-float-input.e-warning input[readonly] ~ label.e-float-text.e-label-top,
4036
+ .e-small .e-filled.e-float-input.e-warning input[disabled] ~ label.e-float-text.e-label-top,
4037
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4038
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input:valid ~ label.e-float-text,
4039
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
4040
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4041
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4042
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4043
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input:valid ~ label.e-float-text,
4044
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input ~ label.e-label-top.e-float-text,
4045
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4046
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4047
+ .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4048
+ .e-small .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4049
+ .e-filled.e-float-input.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4050
+ .e-bigger .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text {
4051
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4052
+ color: $input-warning-color;
4053
+ }
4054
+ }
4055
+
4056
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4057
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:valid ~ label.e-float-text,
4058
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input ~ label.e-label-top.e-float-text,
4059
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[readonly] ~ label.e-float-text,
4060
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[disabled] ~ label.e-float-text,
4061
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4062
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input:valid ~ label.e-float-text,
4063
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input ~ label.e-label-top.e-float-text,
4064
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input[readonly] ~ label.e-float-text.e-label-top,
4065
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input[disabled] ~ label.e-float-text.e-label-top,
4066
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4067
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:valid ~ label.e-float-text,
4068
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
4069
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4070
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4071
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4072
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:valid ~ label.e-float-text,
4073
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input ~ label.e-label-top.e-float-text,
4074
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4075
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4076
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4077
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4078
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4079
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text {
4080
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4081
+ color: $input-warning-color;
4082
+ }
4083
+ }
4084
+
4085
+ .e-filled.e-float-input.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4086
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4087
+ .e-filled.e-float-input.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4088
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4089
+ .e-bigger .e-filled.e-float-input.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4090
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4091
+ .e-filled.e-float-input.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4092
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4093
+ .e-small .e-filled.e-float-input.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4094
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4095
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4096
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4097
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4098
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
4099
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4100
+ color: $input-warning-color;
4101
+ }
4102
+ }
4103
+
4104
+ .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4105
+ .e-filled.e-float-input.e-warning textarea:valid ~ label.e-float-text,
4106
+ .e-filled.e-float-input.e-warning textarea ~ label.e-label-top.e-float-text,
4107
+ .e-filled.e-float-input.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4108
+ .e-filled.e-float-input.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4109
+ .e-filled.e-float-input.e-warning textarea label.e-float-text.e-label-top,
4110
+ .e-filled.e-float-input.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4111
+ .e-filled.e-float-input.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4112
+ .e-filled.e-float-input.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4113
+ .e-filled.e-float-input.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4114
+ .e-filled.e-float-input.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4115
+ .e-bigger .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4116
+ .e-bigger .e-filled.e-float-input.e-warning textarea:valid ~ label.e-float-text,
4117
+ .e-bigger .e-filled.e-float-input.e-warning textarea ~ label.e-label-top.e-float-text,
4118
+ .e-bigger .e-filled.e-float-input.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4119
+ .e-bigger .e-filled.e-float-input.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4120
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4121
+ color: $input-warning-color;
4122
+ }
4123
+ }
4124
+
4125
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4126
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:valid ~ label.e-float-text,
4127
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea ~ label.e-label-top.e-float-text,
4128
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4129
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4130
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea label.e-float-text.e-label-top,
4131
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4132
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4133
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4134
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4135
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4136
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4137
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:valid ~ label.e-float-text,
4138
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea ~ label.e-label-top.e-float-text,
4139
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4140
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4141
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4142
+ color: $input-warning-color;
4143
+ }
4144
+ }
4145
+
4146
+ .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4147
+ .e-filled.e-float-input.e-small.e-warning textarea:valid ~ label.e-float-text,
4148
+ .e-filled.e-float-input.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4149
+ .e-filled.e-float-input.e-small.e-warning textarea[readonly] ~ label.e-float-text,
4150
+ .e-filled.e-float-input.e-small.e-warning textarea[disabled] ~ label.e-float-text,
4151
+ .e-small .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4152
+ .e-small .e-filled.e-float-input.e-warning textarea:valid ~ label.e-float-text,
4153
+ .e-small .e-filled.e-float-input.e-warning textarea ~ label.e-label-top.e-float-text,
4154
+ .e-small .e-filled.e-float-input.e-warning textarea[readonly] ~ label.e-float-text.e-label-top,
4155
+ .e-small .e-filled.e-float-input.e-warning textarea[disabled] ~ label.e-float-text.e-label-top,
4156
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4157
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4158
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4159
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4160
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4161
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4162
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:valid ~ label.e-float-text,
4163
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4164
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4165
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4166
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4167
+ color: $input-warning-color;
4168
+ }
4169
+ }
4170
+
4171
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4172
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:valid ~ label.e-float-text,
4173
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4174
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[readonly] ~ label.e-float-text,
4175
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[disabled] ~ label.e-float-text,
4176
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4177
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:valid ~ label.e-float-text,
4178
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea ~ label.e-label-top.e-float-text,
4179
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea[readonly] ~ label.e-float-text.e-label-top,
4180
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea[disabled] ~ label.e-float-text.e-label-top,
4181
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4182
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4183
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4184
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4185
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4186
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4187
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:valid ~ label.e-float-text,
4188
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4189
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4190
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4191
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4192
+ color: $input-warning-color;
4193
+ }
4194
+ }
4195
+
4196
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4197
+ .e-filled.e-float-input.e-bigger.e-warning input:focus ~ label.e-float-text,
4198
+ .e-bigger .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4199
+ .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4200
+ .e-small .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4201
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4202
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4203
+ .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4204
+ .e-filled.e-float-input.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4205
+ .e-bigger .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4206
+ .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4207
+ .e-small .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4208
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4209
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4210
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4211
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input:focus ~ label.e-float-text,
4212
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4213
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4214
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4215
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4216
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4217
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4218
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4219
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4220
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4221
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4222
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4223
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4224
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4225
+ .e-filled.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4226
+ .e-bigger .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4227
+ .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4228
+ .e-small .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4229
+ .e-filled.e-float-input.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4230
+ .e-bigger .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4231
+ .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus inputs ~ label.e-float-text,
4232
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4233
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4234
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4235
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4236
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4237
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text {
4238
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4239
+ color: $input-warning-color;
4240
+ }
4241
+ }
4242
+
4243
+ .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4244
+ .e-bigger .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4245
+ .e-bigger.e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4246
+ .e-small .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4247
+ .e-small.e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4248
+ .e-bigger .e-filled.e-float-input.e-small.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4249
+ .e-bigger.e-small .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4250
+ .e-filled.e-float-input.e-bigger.e-small.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4251
+ .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4252
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4253
+ .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4254
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4255
+ .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4256
+ .e-bigger .e-filled.e-float-input.e-small.e-control-wrapper.e-autofill.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4257
+ .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4258
+ .e-filled.e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text {
4259
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4260
+ color: $input-warning-color;
4261
+ }
4262
+ }
4263
+
4264
+ .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4265
+ .e-bigger .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4266
+ .e-bigger.e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4267
+ .e-small .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4268
+ .e-small.e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4269
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4270
+ .e-bigger.e-small .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4271
+ .e-filled.e-float-input.e-bigger.e-small.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4272
+ .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4273
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4274
+ .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4275
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4276
+ .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4277
+ .e-bigger .e-filled.e-float-input.e-small.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4278
+ .e-bigger.e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4279
+ .e-filled.e-bigger.e-small.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text {
4280
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4281
+ color: $input-warning-color;
4282
+ }
4283
+ }
4284
+ }