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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (451) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
  3. package/esm2020/src/color-picker/colorpicker.component.mjs +83 -0
  4. package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
  5. package/esm2020/src/form-validator/form-validator.mjs +193 -0
  6. package/esm2020/src/index.mjs +28 -0
  7. package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
  8. package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +84 -0
  9. package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
  10. package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
  11. package/esm2020/src/numerictextbox/numerictextbox.component.mjs +84 -0
  12. package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
  13. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  14. package/esm2020/src/rating/rating.component.mjs +108 -0
  15. package/esm2020/src/rating/rating.module.mjs +25 -0
  16. package/esm2020/src/signature/signature-all.module.mjs +23 -0
  17. package/esm2020/src/signature/signature.component.mjs +83 -0
  18. package/esm2020/src/signature/signature.module.mjs +25 -0
  19. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  20. package/esm2020/src/slider/slider.component.mjs +83 -0
  21. package/esm2020/src/slider/slider.module.mjs +25 -0
  22. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  23. package/esm2020/src/textbox/textbox.component.mjs +84 -0
  24. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  25. package/esm2020/src/uploader/files.directive.mjs +58 -0
  26. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  27. package/esm2020/src/uploader/uploader.component.mjs +95 -0
  28. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  29. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  30. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1237 -0
  31. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  32. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1237 -0
  33. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  34. package/package.json +27 -13
  35. package/schematics/utils/lib-details.d.ts +2 -2
  36. package/src/color-picker/colorpicker-all.module.d.ts +6 -0
  37. package/src/color-picker/colorpicker.component.d.ts +3 -0
  38. package/src/color-picker/colorpicker.module.d.ts +6 -0
  39. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
  40. package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
  41. package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
  42. package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
  43. package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
  44. package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
  45. package/src/rating/rating-all.module.d.ts +6 -0
  46. package/src/rating/rating.component.d.ts +3 -0
  47. package/src/rating/rating.module.d.ts +6 -0
  48. package/src/signature/signature-all.module.d.ts +6 -0
  49. package/src/signature/signature.component.d.ts +3 -0
  50. package/src/signature/signature.module.d.ts +6 -0
  51. package/src/slider/slider-all.module.d.ts +6 -0
  52. package/src/slider/slider.component.d.ts +3 -0
  53. package/src/slider/slider.module.d.ts +6 -0
  54. package/src/textbox/textbox-all.module.d.ts +6 -0
  55. package/src/textbox/textbox.component.d.ts +3 -0
  56. package/src/textbox/textbox.module.d.ts +6 -0
  57. package/src/uploader/files.directive.d.ts +5 -0
  58. package/src/uploader/uploader-all.module.d.ts +6 -0
  59. package/src/uploader/uploader.component.d.ts +3 -0
  60. package/src/uploader/uploader.module.d.ts +7 -0
  61. package/styles/color-picker/_all.scss +2 -0
  62. package/styles/color-picker/_bootstrap-dark-definition.scss +131 -0
  63. package/styles/color-picker/_bootstrap-definition.scss +128 -0
  64. package/styles/color-picker/_bootstrap4-definition.scss +127 -0
  65. package/styles/color-picker/_bootstrap5-dark-definition.scss +1 -0
  66. package/styles/color-picker/_bootstrap5-definition.scss +133 -0
  67. package/styles/color-picker/_fabric-dark-definition.scss +131 -0
  68. package/styles/color-picker/_fabric-definition.scss +127 -0
  69. package/styles/color-picker/_fluent-dark-definition.scss +1 -0
  70. package/styles/color-picker/_fluent-definition.scss +133 -0
  71. package/styles/color-picker/_fusionnew-definition.scss +133 -0
  72. package/styles/color-picker/_highcontrast-definition.scss +127 -0
  73. package/styles/color-picker/_highcontrast-light-definition.scss +130 -0
  74. package/styles/color-picker/_layout.scss +1260 -0
  75. package/styles/color-picker/_material-dark-definition.scss +135 -0
  76. package/styles/color-picker/_material-definition.scss +130 -0
  77. package/styles/color-picker/_tailwind-dark-definition.scss +1 -0
  78. package/styles/color-picker/_tailwind-definition.scss +132 -0
  79. package/styles/color-picker/_theme.scss +186 -0
  80. package/styles/color-picker/bootstrap-dark.scss +11 -1
  81. package/styles/color-picker/bootstrap.scss +11 -1
  82. package/styles/color-picker/bootstrap4.scss +11 -1
  83. package/styles/color-picker/bootstrap5-dark.scss +11 -1
  84. package/styles/color-picker/bootstrap5.scss +11 -1
  85. package/styles/color-picker/fabric-dark.scss +11 -1
  86. package/styles/color-picker/fabric.scss +11 -1
  87. package/styles/color-picker/fluent-dark.scss +11 -1
  88. package/styles/color-picker/fluent.scss +11 -1
  89. package/styles/color-picker/highcontrast-light.scss +11 -1
  90. package/styles/color-picker/highcontrast.scss +11 -1
  91. package/styles/color-picker/icons/_bootstrap-dark.scss +9 -0
  92. package/styles/color-picker/icons/_bootstrap.scss +9 -0
  93. package/styles/color-picker/icons/_bootstrap4.scss +9 -0
  94. package/styles/color-picker/icons/_bootstrap5-dark.scss +1 -0
  95. package/styles/color-picker/icons/_bootstrap5.scss +9 -0
  96. package/styles/color-picker/icons/_fabric-dark.scss +9 -0
  97. package/styles/color-picker/icons/_fabric.scss +9 -0
  98. package/styles/color-picker/icons/_fluent-dark.scss +1 -0
  99. package/styles/color-picker/icons/_fluent.scss +9 -0
  100. package/styles/color-picker/icons/_fusionnew.scss +9 -0
  101. package/styles/color-picker/icons/_highcontrast-light.scss +9 -0
  102. package/styles/color-picker/icons/_highcontrast.scss +9 -0
  103. package/styles/color-picker/icons/_material-dark.scss +9 -0
  104. package/styles/color-picker/icons/_material.scss +9 -0
  105. package/styles/color-picker/icons/_material3.scss +9 -0
  106. package/styles/color-picker/icons/_tailwind-dark.scss +9 -0
  107. package/styles/color-picker/icons/_tailwind.scss +9 -0
  108. package/styles/color-picker/material-dark.scss +11 -1
  109. package/styles/color-picker/material.scss +11 -1
  110. package/styles/color-picker/tailwind-dark.scss +11 -1
  111. package/styles/color-picker/tailwind.scss +11 -1
  112. package/styles/input/_all.scss +3 -0
  113. package/styles/input/_bootstrap-dark-definition.scss +329 -0
  114. package/styles/input/_bootstrap-definition.scss +320 -0
  115. package/styles/input/_bootstrap4-definition.scss +325 -0
  116. package/styles/input/_bootstrap5-dark-definition.scss +1 -0
  117. package/styles/input/_bootstrap5-definition.scss +336 -0
  118. package/styles/input/_definition.scss +232 -0
  119. package/styles/input/_fabric-dark-definition.scss +319 -0
  120. package/styles/input/_fabric-definition.scss +311 -0
  121. package/styles/input/_fluent-dark-definition.scss +1 -0
  122. package/styles/input/_fluent-definition.scss +338 -0
  123. package/styles/input/_fusionnew-definition.scss +336 -0
  124. package/styles/input/_highcontrast-definition.scss +312 -0
  125. package/styles/input/_highcontrast-light-definition.scss +320 -0
  126. package/styles/input/_layout.scss +11010 -0
  127. package/styles/input/_material-dark-definition.scss +573 -0
  128. package/styles/input/_material-definition.scss +573 -0
  129. package/styles/input/_responsive.scss +1 -0
  130. package/styles/input/_tailwind-dark-definition.scss +1 -0
  131. package/styles/input/_tailwind-definition.scss +335 -0
  132. package/styles/input/_theme.scss +4283 -0
  133. package/styles/input/bootstrap-dark.scss +4 -1
  134. package/styles/input/bootstrap.scss +4 -1
  135. package/styles/input/bootstrap4.scss +4 -1
  136. package/styles/input/bootstrap5-dark.scss +4 -1
  137. package/styles/input/bootstrap5.scss +4 -1
  138. package/styles/input/fabric-dark.scss +4 -1
  139. package/styles/input/fabric.scss +4 -1
  140. package/styles/input/fluent-dark.scss +4 -1
  141. package/styles/input/fluent.scss +4 -1
  142. package/styles/input/highcontrast-light.scss +4 -1
  143. package/styles/input/highcontrast.scss +4 -1
  144. package/styles/input/icons/_bootstrap-dark.scss +17 -0
  145. package/styles/input/icons/_bootstrap.scss +17 -0
  146. package/styles/input/icons/_bootstrap4.scss +17 -0
  147. package/styles/input/icons/_bootstrap5-dark.scss +1 -0
  148. package/styles/input/icons/_bootstrap5.scss +17 -0
  149. package/styles/input/icons/_fabric-dark.scss +17 -0
  150. package/styles/input/icons/_fabric.scss +17 -0
  151. package/styles/input/icons/_fluent-dark.scss +1 -0
  152. package/styles/input/icons/_fluent.scss +17 -0
  153. package/styles/input/icons/_fusionnew.scss +17 -0
  154. package/styles/input/icons/_highcontrast-light.scss +17 -0
  155. package/styles/input/icons/_highcontrast.scss +17 -0
  156. package/styles/input/icons/_material-dark.scss +49 -0
  157. package/styles/input/icons/_material.scss +49 -0
  158. package/styles/input/icons/_material3.scss +17 -0
  159. package/styles/input/icons/_tailwind-dark.scss +1 -0
  160. package/styles/input/icons/_tailwind.scss +17 -0
  161. package/styles/input/material-dark.scss +4 -1
  162. package/styles/input/material.scss +4 -1
  163. package/styles/input/tailwind-dark.scss +4 -1
  164. package/styles/input/tailwind.scss +4 -1
  165. package/styles/maskedtextbox/_all.scss +2 -0
  166. package/styles/maskedtextbox/_bootstrap-dark-definition.scss +7 -0
  167. package/styles/maskedtextbox/_bootstrap-definition.scss +4 -0
  168. package/styles/maskedtextbox/_bootstrap4-definition.scss +4 -0
  169. package/styles/maskedtextbox/_bootstrap5-dark-definition.scss +1 -0
  170. package/styles/maskedtextbox/_bootstrap5-definition.scss +7 -0
  171. package/styles/maskedtextbox/_fabric-dark-definition.scss +7 -0
  172. package/styles/maskedtextbox/_fabric-definition.scss +4 -0
  173. package/styles/maskedtextbox/_fluent-dark-definition.scss +1 -0
  174. package/styles/maskedtextbox/_fluent-definition.scss +7 -0
  175. package/styles/maskedtextbox/_fusionnew-definition.scss +7 -0
  176. package/styles/maskedtextbox/_highcontrast-definition.scss +4 -0
  177. package/styles/maskedtextbox/_highcontrast-light-definition.scss +7 -0
  178. package/styles/maskedtextbox/_layout.scss +33 -0
  179. package/styles/maskedtextbox/_material-dark-definition.scss +7 -0
  180. package/styles/maskedtextbox/_material-definition.scss +4 -0
  181. package/styles/maskedtextbox/_tailwind-dark-definition.scss +1 -0
  182. package/styles/maskedtextbox/_tailwind-definition.scss +7 -0
  183. package/styles/maskedtextbox/_theme.scss +15 -0
  184. package/styles/maskedtextbox/bootstrap-dark.scss +4 -1
  185. package/styles/maskedtextbox/bootstrap.scss +4 -1
  186. package/styles/maskedtextbox/bootstrap4.scss +4 -1
  187. package/styles/maskedtextbox/bootstrap5-dark.scss +4 -1
  188. package/styles/maskedtextbox/bootstrap5.scss +4 -1
  189. package/styles/maskedtextbox/fabric-dark.scss +4 -1
  190. package/styles/maskedtextbox/fabric.scss +4 -1
  191. package/styles/maskedtextbox/fluent-dark.scss +4 -1
  192. package/styles/maskedtextbox/fluent.scss +4 -1
  193. package/styles/maskedtextbox/highcontrast-light.scss +4 -1
  194. package/styles/maskedtextbox/highcontrast.scss +4 -1
  195. package/styles/maskedtextbox/material-dark.scss +4 -1
  196. package/styles/maskedtextbox/material.scss +4 -1
  197. package/styles/maskedtextbox/tailwind-dark.scss +4 -1
  198. package/styles/maskedtextbox/tailwind.scss +4 -1
  199. package/styles/numerictextbox/_all.scss +2 -0
  200. package/styles/numerictextbox/_bootstrap-dark-definition.scss +6 -0
  201. package/styles/numerictextbox/_bootstrap-definition.scss +3 -0
  202. package/styles/numerictextbox/_bootstrap4-definition.scss +3 -0
  203. package/styles/numerictextbox/_bootstrap5-dark-definition.scss +1 -0
  204. package/styles/numerictextbox/_bootstrap5-definition.scss +3 -0
  205. package/styles/numerictextbox/_fabric-dark-definition.scss +6 -0
  206. package/styles/numerictextbox/_fabric-definition.scss +3 -0
  207. package/styles/numerictextbox/_fluent-dark-definition.scss +1 -0
  208. package/styles/numerictextbox/_fluent-definition.scss +5 -0
  209. package/styles/numerictextbox/_fusionnew-definition.scss +3 -0
  210. package/styles/numerictextbox/_highcontrast-definition.scss +3 -0
  211. package/styles/numerictextbox/_highcontrast-light-definition.scss +6 -0
  212. package/styles/numerictextbox/_layout.scss +30 -0
  213. package/styles/numerictextbox/_material-dark-definition.scss +6 -0
  214. package/styles/numerictextbox/_material-definition.scss +3 -0
  215. package/styles/numerictextbox/_tailwind-dark-definition.scss +1 -0
  216. package/styles/numerictextbox/_tailwind-definition.scss +3 -0
  217. package/styles/numerictextbox/_theme.scss +39 -0
  218. package/styles/numerictextbox/bootstrap-dark.scss +5 -1
  219. package/styles/numerictextbox/bootstrap.scss +5 -1
  220. package/styles/numerictextbox/bootstrap4.scss +5 -1
  221. package/styles/numerictextbox/bootstrap5-dark.scss +5 -1
  222. package/styles/numerictextbox/bootstrap5.scss +5 -1
  223. package/styles/numerictextbox/fabric-dark.scss +5 -1
  224. package/styles/numerictextbox/fabric.scss +5 -1
  225. package/styles/numerictextbox/fluent-dark.scss +5 -1
  226. package/styles/numerictextbox/fluent.scss +5 -1
  227. package/styles/numerictextbox/highcontrast-light.scss +5 -1
  228. package/styles/numerictextbox/highcontrast.scss +5 -1
  229. package/styles/numerictextbox/icons/_bootstrap-dark.scss +11 -0
  230. package/styles/numerictextbox/icons/_bootstrap.scss +11 -0
  231. package/styles/numerictextbox/icons/_bootstrap4.scss +11 -0
  232. package/styles/numerictextbox/icons/_bootstrap5-dark.scss +1 -0
  233. package/styles/numerictextbox/icons/_bootstrap5.scss +11 -0
  234. package/styles/numerictextbox/icons/_fabric-dark.scss +11 -0
  235. package/styles/numerictextbox/icons/_fabric.scss +11 -0
  236. package/styles/numerictextbox/icons/_fluent-dark.scss +1 -0
  237. package/styles/numerictextbox/icons/_fluent.scss +11 -0
  238. package/styles/numerictextbox/icons/_fusionnew.scss +11 -0
  239. package/styles/numerictextbox/icons/_highcontrast-light.scss +11 -0
  240. package/styles/numerictextbox/icons/_highcontrast.scss +11 -0
  241. package/styles/numerictextbox/icons/_material-dark.scss +11 -0
  242. package/styles/numerictextbox/icons/_material.scss +11 -0
  243. package/styles/numerictextbox/icons/_material3.scss +11 -0
  244. package/styles/numerictextbox/icons/_tailwind-dark.scss +1 -0
  245. package/styles/numerictextbox/icons/_tailwind.scss +11 -0
  246. package/styles/numerictextbox/material-dark.scss +5 -1
  247. package/styles/numerictextbox/material.scss +5 -1
  248. package/styles/numerictextbox/tailwind-dark.scss +5 -1
  249. package/styles/numerictextbox/tailwind.scss +5 -1
  250. package/styles/rating/_all.scss +2 -0
  251. package/styles/rating/_bootstrap-dark-definition.scss +46 -0
  252. package/styles/rating/_bootstrap-definition.scss +46 -0
  253. package/styles/rating/_bootstrap4-definition.scss +46 -0
  254. package/styles/rating/_bootstrap5-dark-definition.scss +1 -0
  255. package/styles/rating/_bootstrap5-definition.scss +43 -0
  256. package/styles/rating/_fabric-dark-definition.scss +46 -0
  257. package/styles/rating/_fabric-definition.scss +46 -0
  258. package/styles/rating/_fluent-dark-definition.scss +1 -0
  259. package/styles/rating/_fluent-definition.scss +43 -0
  260. package/styles/rating/_fusionnew-definition.scss +46 -0
  261. package/styles/rating/_highcontrast-definition.scss +46 -0
  262. package/styles/rating/_highcontrast-light-definition.scss +46 -0
  263. package/styles/rating/_layout.scss +209 -0
  264. package/styles/rating/_material-dark-definition.scss +46 -0
  265. package/styles/rating/_material-definition.scss +46 -0
  266. package/styles/rating/_tailwind-dark-definition.scss +1 -0
  267. package/styles/rating/_tailwind-definition.scss +43 -0
  268. package/styles/rating/_theme.scss +170 -0
  269. package/styles/rating/bootstrap-dark.scss +4 -1
  270. package/styles/rating/bootstrap.scss +4 -1
  271. package/styles/rating/bootstrap4.scss +4 -1
  272. package/styles/rating/bootstrap5-dark.scss +4 -1
  273. package/styles/rating/bootstrap5.scss +4 -1
  274. package/styles/rating/fabric-dark.scss +4 -1
  275. package/styles/rating/fabric.scss +4 -1
  276. package/styles/rating/fluent-dark.scss +4 -1
  277. package/styles/rating/fluent.scss +4 -1
  278. package/styles/rating/highcontrast-light.scss +4 -1
  279. package/styles/rating/highcontrast.scss +4 -1
  280. package/styles/rating/material-dark.scss +4 -1
  281. package/styles/rating/material.scss +4 -1
  282. package/styles/rating/tailwind-dark.scss +4 -1
  283. package/styles/rating/tailwind.scss +4 -1
  284. package/styles/signature/_all.scss +2 -0
  285. package/styles/signature/_bootstrap-dark-definition.scss +3 -0
  286. package/styles/signature/_bootstrap-definition.scss +3 -0
  287. package/styles/signature/_bootstrap4-definition.scss +3 -0
  288. package/styles/signature/_bootstrap5-dark-definition.scss +1 -0
  289. package/styles/signature/_bootstrap5-definition.scss +3 -0
  290. package/styles/signature/_fabric-dark-definition.scss +3 -0
  291. package/styles/signature/_fabric-definition.scss +3 -0
  292. package/styles/signature/_fluent-dark-definition.scss +1 -0
  293. package/styles/signature/_fluent-definition.scss +3 -0
  294. package/styles/signature/_fusionnew-definition.scss +3 -0
  295. package/styles/signature/_highcontrast-definition.scss +3 -0
  296. package/styles/signature/_highcontrast-light-definition.scss +3 -0
  297. package/styles/signature/_layout.scss +5 -0
  298. package/styles/signature/_material-dark-definition.scss +3 -0
  299. package/styles/signature/_material-definition.scss +3 -0
  300. package/styles/signature/_tailwind-dark-definition.scss +1 -0
  301. package/styles/signature/_tailwind-definition.scss +3 -0
  302. package/styles/signature/_theme.scss +7 -0
  303. package/styles/signature/bootstrap-dark.scss +3 -1
  304. package/styles/signature/bootstrap.scss +3 -1
  305. package/styles/signature/bootstrap4.scss +3 -1
  306. package/styles/signature/bootstrap5-dark.scss +3 -1
  307. package/styles/signature/bootstrap5.scss +3 -1
  308. package/styles/signature/fabric-dark.scss +3 -1
  309. package/styles/signature/fabric.scss +3 -1
  310. package/styles/signature/fluent-dark.scss +3 -1
  311. package/styles/signature/fluent.scss +3 -1
  312. package/styles/signature/highcontrast-light.scss +3 -1
  313. package/styles/signature/highcontrast.scss +3 -1
  314. package/styles/signature/material-dark.scss +3 -1
  315. package/styles/signature/material.scss +3 -1
  316. package/styles/signature/tailwind-dark.scss +3 -1
  317. package/styles/signature/tailwind.scss +3 -1
  318. package/styles/slider/_all.scss +3 -0
  319. package/styles/slider/_bootstrap-dark-definition.scss +156 -0
  320. package/styles/slider/_bootstrap-definition.scss +152 -0
  321. package/styles/slider/_bootstrap4-definition.scss +147 -0
  322. package/styles/slider/_bootstrap5-dark-definition.scss +1 -0
  323. package/styles/slider/_bootstrap5-definition.scss +90 -0
  324. package/styles/slider/_fabric-dark-definition.scss +162 -0
  325. package/styles/slider/_fabric-definition.scss +156 -0
  326. package/styles/slider/_fluent-dark-definition.scss +1 -0
  327. package/styles/slider/_fluent-definition.scss +74 -0
  328. package/styles/slider/_fusionnew-definition.scss +90 -0
  329. package/styles/slider/_highcontrast-definition.scss +145 -0
  330. package/styles/slider/_highcontrast-light-definition.scss +149 -0
  331. package/styles/slider/_icons.scss +1 -0
  332. package/styles/slider/_layout.scss +2440 -0
  333. package/styles/slider/_material-dark-definition.scss +159 -0
  334. package/styles/slider/_material-definition.scss +154 -0
  335. package/styles/slider/_tailwind-dark-definition.scss +1 -0
  336. package/styles/slider/_tailwind-definition.scss +84 -0
  337. package/styles/slider/_theme.scss +240 -0
  338. package/styles/slider/bootstrap-dark.scss +5 -1
  339. package/styles/slider/bootstrap.scss +5 -1
  340. package/styles/slider/bootstrap4.scss +5 -1
  341. package/styles/slider/bootstrap5-dark.scss +5 -1
  342. package/styles/slider/bootstrap5.scss +5 -1
  343. package/styles/slider/fabric-dark.scss +5 -1
  344. package/styles/slider/fabric.scss +5 -1
  345. package/styles/slider/fluent-dark.scss +5 -1
  346. package/styles/slider/fluent.scss +5 -1
  347. package/styles/slider/highcontrast-light.scss +5 -1
  348. package/styles/slider/highcontrast.scss +5 -1
  349. package/styles/slider/material-dark.scss +5 -1
  350. package/styles/slider/material.scss +5 -1
  351. package/styles/slider/tailwind-dark.scss +5 -1
  352. package/styles/slider/tailwind.scss +5 -1
  353. package/styles/textbox/_all.scss +1 -0
  354. package/styles/textbox/_bootstrap-dark-definition.scss +1 -0
  355. package/styles/textbox/_bootstrap-definition.scss +1 -0
  356. package/styles/textbox/_bootstrap4-definition.scss +1 -0
  357. package/styles/textbox/_bootstrap5-dark-definition.scss +1 -0
  358. package/styles/textbox/_bootstrap5-definition.scss +1 -0
  359. package/styles/textbox/_fabric-dark-definition.scss +1 -0
  360. package/styles/textbox/_fabric-definition.scss +1 -0
  361. package/styles/textbox/_fluent-dark-definition.scss +1 -0
  362. package/styles/textbox/_fluent-definition.scss +1 -0
  363. package/styles/textbox/_fusionnew-definition.scss +1 -0
  364. package/styles/textbox/_highcontrast-definition.scss +1 -0
  365. package/styles/textbox/_highcontrast-light-definition.scss +1 -0
  366. package/styles/textbox/_layout.scss +10 -0
  367. package/styles/textbox/_material-dark-definition.scss +1 -0
  368. package/styles/textbox/_material-definition.scss +1 -0
  369. package/styles/textbox/_tailwind-dark-definition.scss +1 -0
  370. package/styles/textbox/_tailwind-definition.scss +1 -0
  371. package/styles/textbox/_theme.scss +1 -0
  372. package/styles/textbox/bootstrap-dark.scss +4 -1
  373. package/styles/textbox/bootstrap.scss +4 -1
  374. package/styles/textbox/bootstrap4.scss +4 -1
  375. package/styles/textbox/bootstrap5-dark.scss +4 -1
  376. package/styles/textbox/bootstrap5.scss +4 -1
  377. package/styles/textbox/fabric-dark.scss +4 -1
  378. package/styles/textbox/fabric.scss +4 -1
  379. package/styles/textbox/fluent-dark.scss +4 -1
  380. package/styles/textbox/fluent.scss +4 -1
  381. package/styles/textbox/highcontrast-light.scss +4 -1
  382. package/styles/textbox/highcontrast.scss +4 -1
  383. package/styles/textbox/material-dark.scss +4 -1
  384. package/styles/textbox/material.scss +4 -1
  385. package/styles/textbox/tailwind-dark.scss +4 -1
  386. package/styles/textbox/tailwind.scss +4 -1
  387. package/styles/uploader/_all.scss +2 -0
  388. package/styles/uploader/_bootstrap-dark-definition.scss +213 -0
  389. package/styles/uploader/_bootstrap-definition.scss +208 -0
  390. package/styles/uploader/_bootstrap4-definition.scss +211 -0
  391. package/styles/uploader/_bootstrap5-dark-definition.scss +1 -0
  392. package/styles/uploader/_bootstrap5-definition.scss +216 -0
  393. package/styles/uploader/_definition.scss +142 -0
  394. package/styles/uploader/_fabric-dark-definition.scss +216 -0
  395. package/styles/uploader/_fabric-definition.scss +210 -0
  396. package/styles/uploader/_fluent-dark-definition.scss +1 -0
  397. package/styles/uploader/_fluent-definition.scss +234 -0
  398. package/styles/uploader/_fusionnew-definition.scss +216 -0
  399. package/styles/uploader/_highcontrast-definition.scss +211 -0
  400. package/styles/uploader/_highcontrast-light-definition.scss +219 -0
  401. package/styles/uploader/_layout.scss +989 -0
  402. package/styles/uploader/_material-dark-definition.scss +217 -0
  403. package/styles/uploader/_material-definition.scss +214 -0
  404. package/styles/uploader/_tailwind-dark-definition.scss +1 -0
  405. package/styles/uploader/_tailwind-definition.scss +232 -0
  406. package/styles/uploader/_theme.scss +146 -0
  407. package/styles/uploader/bootstrap-dark.scss +6 -1
  408. package/styles/uploader/bootstrap.scss +6 -1
  409. package/styles/uploader/bootstrap4.scss +6 -1
  410. package/styles/uploader/bootstrap5-dark.scss +6 -1
  411. package/styles/uploader/bootstrap5.scss +6 -1
  412. package/styles/uploader/fabric-dark.scss +6 -1
  413. package/styles/uploader/fabric.scss +6 -1
  414. package/styles/uploader/fluent-dark.scss +6 -1
  415. package/styles/uploader/fluent.scss +6 -1
  416. package/styles/uploader/highcontrast-light.scss +6 -1
  417. package/styles/uploader/highcontrast.scss +6 -1
  418. package/styles/uploader/icons/_bootstrap-dark.scss +34 -0
  419. package/styles/uploader/icons/_bootstrap.scss +34 -0
  420. package/styles/uploader/icons/_bootstrap4.scss +34 -0
  421. package/styles/uploader/icons/_bootstrap5-dark.scss +1 -0
  422. package/styles/uploader/icons/_bootstrap5.scss +34 -0
  423. package/styles/uploader/icons/_fabric-dark.scss +34 -0
  424. package/styles/uploader/icons/_fabric.scss +34 -0
  425. package/styles/uploader/icons/_fluent-dark.scss +1 -0
  426. package/styles/uploader/icons/_fluent.scss +34 -0
  427. package/styles/uploader/icons/_fusionnew.scss +34 -0
  428. package/styles/uploader/icons/_highcontrast-light.scss +34 -0
  429. package/styles/uploader/icons/_highcontrast.scss +34 -0
  430. package/styles/uploader/icons/_material-dark.scss +34 -0
  431. package/styles/uploader/icons/_material.scss +34 -0
  432. package/styles/uploader/icons/_material3.scss +34 -0
  433. package/styles/uploader/icons/_tailwind-dark.scss +1 -0
  434. package/styles/uploader/icons/_tailwind.scss +34 -0
  435. package/styles/uploader/material-dark.scss +6 -1
  436. package/styles/uploader/material.scss +6 -1
  437. package/styles/uploader/tailwind-dark.scss +6 -1
  438. package/styles/uploader/tailwind.scss +6 -1
  439. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  440. package/@syncfusion/ej2-angular-inputs.es5.js +0 -1759
  441. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  442. package/@syncfusion/ej2-angular-inputs.js +0 -1657
  443. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  444. package/CHANGELOG.md +0 -1464
  445. package/dist/ej2-angular-inputs.umd.js +0 -1848
  446. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  447. package/dist/ej2-angular-inputs.umd.min.js +0 -11
  448. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  449. package/ej2-angular-inputs.d.ts +0 -12
  450. package/ej2-angular-inputs.metadata.json +0 -1
  451. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,4283 @@
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
+ }
39
+
40
+ .e-input-group.e-disabled .e-input-group-icon,
41
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
42
+ color: $input-group-disabled-color;
43
+ }
44
+
45
+ /* stylelint-disable property-no-vendor-prefix */
46
+ /* stylelint-disable selector-no-vendor-prefix */
47
+ .e-input#{$css}[disabled],
48
+ .e-input-group .e-input[disabled],
49
+ .e-input-group.e-control-wrapper .e-input[disabled],
50
+ .e-input-group.e-disabled,
51
+ .e-input-group.e-control-wrapper.e-disabled,
52
+ .e-float-input input[disabled],
53
+ .e-float-input.e-control-wrapper input[disabled],
54
+ .e-float-input textarea[disabled],
55
+ .e-float-input.e-control-wrapper textarea[disabled],
56
+ .e-float-input.e-disabled,
57
+ .e-float-input.e-control-wrapper.e-disabled {
58
+ @if $input-skin-name != 'bootstrap5' {
59
+ -webkit-text-fill-color: $input-disable-font-color;
60
+ }
61
+ background: $input-disable-bg-color;
62
+ color: $input-disable-font-color;
63
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
64
+ background-image: linear-gradient(90deg, $input-disable-border-color 0, $input-disable-border-color 33%, transparent 0);
65
+ background-position: bottom -1px left 0;
66
+ background-repeat: repeat-x;
67
+ background-size: 4px 1px;
68
+ border-bottom-color: transparent;
69
+ }
70
+
71
+ @else {
72
+ border-color: $input-disable-border-color;
73
+ }
74
+ }
75
+
76
+ .e-input-group input.e-input,
77
+ .e-input-group.e-control-wrapper input.e-input,
78
+ .e-float-input input,
79
+ .e-float-input.e-control-wrapper input,
80
+ .e-input-group textarea.e-input,
81
+ .e-input-group.e-control-wrapper textarea.e-input,
82
+ .e-float-input textarea,
83
+ .e-float-input.e-control-wrapper textarea,
84
+ .e-input-group .e-input[disabled],
85
+ .e-input-group.e-control-wrapper .e-input[disabled],
86
+ .e-input-group.e-disabled input.e-input,
87
+ .e-input-group.e-control-wrapper.e-disabled input.e-input,
88
+ .e-input-group.e-disabled textarea.e-input,
89
+ .e-input-group.e-control-wrapper.e-disabled textarea.e-input {
90
+ background: none;
91
+ color: inherit;
92
+ }
93
+
94
+ .e-input-group .e-input[readonly],
95
+ .e-input-group.e-control-wrapper .e-input[readonly],
96
+ .e-float-input input[readonly],
97
+ .e-float-input.e-control-wrapper input[readonly],
98
+ .e-float-input textarea[readonly],
99
+ .e-float-input.e-control-wrapper textarea[readonly] {
100
+ background: $input-readonly-bg-color;
101
+ @if $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' {
102
+ color: $input-readonly-color;
103
+ }
104
+ @if $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5' {
105
+ color: inherit;
106
+ }
107
+ }
108
+
109
+ .e-input-group .e-input[readonly] ~ span.e-input-group-icon,
110
+ .e-input-group.e-control-wrapper .e-input[readonly] ~ span.e-input-group-icon,
111
+ .e-float-input input[readonly] ~ span.e-input-group-icon,
112
+ .e-float-input.e-control-wrapper input[readonly] ~ span.e-input-group-icon,
113
+ .e-float-input.e-control-wrapper input[readonly] ~ span.e-clear-icon {
114
+ @if $input-skin-name == 'bootstrap5' {
115
+ background: $input-readonly-bg-color;
116
+ color: $input-icon-font-color;
117
+ }
118
+ }
119
+
120
+ .e-float-input.e-disabled input,
121
+ .e-float-input.e-control-wrapper.e-disabled input,
122
+ .e-float-input.e-disabled textarea,
123
+ .e-float-input.e-control-wrapper.e-disabled textarea,
124
+ .e-float-input input[disabled],
125
+ .e-float-input.e-control-wrapper input[disabled],
126
+ .e-float-input textarea[disabled],
127
+ .e-float-input.e-control-wrapper textarea[disabled] {
128
+ color: inherit;
129
+ }
130
+
131
+ /*! Added color to textbox for disbaled state */
132
+ .e-float-input:not(.e-disabled) input[disabled],
133
+ .e-float-input.e-control-wrapper:not(.e-disabled) input[disabled],
134
+ .e-float-input:not(.e-disabled) textarea[disabled],
135
+ .e-float-input.e-control-wrapper:not(.e-disabled) textarea[disabled] {
136
+ -webkit-text-fill-color: $input-disable-font-color;
137
+ color: $input-disable-font-color;
138
+ }
139
+
140
+ .e-input-group.e-disabled .e-input-group-icon,
141
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
142
+ background: $input-disabled-group-bg-color;
143
+ border-color: $input-disable-border-color;
144
+ }
145
+
146
+ .e-input-group:not(.e-disabled) .e-input-group-icon:hover,
147
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
148
+ @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' {
149
+ background: $input-hover-bg-color;
150
+ }
151
+ @if $input-skin-name == 'bootstrap4' {
152
+ border-color: $input-group-border-color-hover;
153
+ }
154
+ @if $input-skin-name == 'highcontrast' {
155
+ border-color: $input-group-border-color-hover;
156
+ }
157
+ @if $input-skin-name == 'Material3' {
158
+ border: $input-icon-hover-border;
159
+ border-radius: $input-icon-hover-border-radius;
160
+ background: $input-icon-hover-bg-color;
161
+ }
162
+ color: $input-group-hovered-color;
163
+ }
164
+
165
+ .e-input-group.e-disabled .e-input-group-icon:hover,
166
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon:hover {
167
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
168
+ background: transparent;
169
+ }
170
+ }
171
+
172
+ .e-input#{$css}.e-success,
173
+ .e-input#{$css}.e-success:focus,
174
+ .e-input-group.e-success input.e-input,
175
+ .e-input-group.e-control-wrapper.e-success input.e-input,
176
+ .e-input-group.e-success .e-input-group-icon,
177
+ .e-input-group.e-control-wrapper.e-success .e-input-group-icon,
178
+ .e-input-group.e-success textarea.e-input,
179
+ .e-input-group.e-control-wrapper.e-success textarea.e-input {
180
+ border-color: $input-success-color;
181
+ }
182
+
183
+ .e-input#{$css}.e-warning,
184
+ .e-input#{$css}.e-warning:focus,
185
+ .e-input-group.e-warning input.e-input,
186
+ .e-input-group.e-control-wrapper.e-warning input.e-input,
187
+ .e-input-group.e-warning .e-input-group-icon,
188
+ .e-input-group.e-control-wrapper.e-warning .e-input-group-icon,
189
+ .e-input-group.e-warning textarea.e-input,
190
+ .e-input-group.e-control-wrapper.e-warning textarea.e-input {
191
+ border-color: $input-warning-color;
192
+ }
193
+
194
+ .e-input + .e-input-group-icon:not(.e-input-group):not(.e-float-icon-left):last-child:hover,
195
+ .e-input-group.e-success .e-input + .e-input-group-icon:last-child:hover,
196
+ .e-input-group.e-success.e-control-wrapper .e-input + .e-input-group-icon:last-child:hover {
197
+ @if $input-skin-name == 'highcontrast' {
198
+ border-color: $input-success-color;
199
+ }
200
+ }
201
+
202
+ .e-input#{$css}.e-error,
203
+ .e-input#{$css}.e-error:focus,
204
+ .e-input-group.e-error input.e-input,
205
+ .e-input-group.e-control-wrapper.e-error input.e-input,
206
+ .e-input-group.e-control-wrapper.e-error .e-input-group-icon,
207
+ .e-input-group.e-error .e-input-group-icon,
208
+ .e-input-group.e-error textarea.e-input,
209
+ .e-input-group.e-control-wrapper.e-error textarea.e-input {
210
+ border-color: $input-error-color;
211
+ }
212
+
213
+ label.e-float-text,
214
+ .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
215
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
216
+ .e-float-input.e-bigger: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.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
218
+ .e-bigger .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
219
+ .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,
220
+ .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
221
+ .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,
222
+ .e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
223
+ .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,
224
+ .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,
225
+ .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,
226
+ .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,
227
+ .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 {
228
+ color: $input-header-font-color;
229
+ @if $input-skin-name == 'highcontrast' {
230
+ color: $input-placeholder;
231
+ }
232
+ }
233
+
234
+ .e-float-input.e-error label.e-float-text,
235
+ .e-float-input.e-control-wrapper.e-error label.e-float-text,
236
+ .e-float-input.e-error input:focus ~ label.e-float-text,
237
+ .e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
238
+ .e-float-input.e-error.e-input-focus input ~ label.e-float-text,
239
+ .e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
240
+ .e-float-input.e-error textarea:focus ~ label.e-float-text,
241
+ .e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text {
242
+ color: $input-error-color;
243
+ @if $input-skin-name == 'highcontrast' {
244
+ color: $content-font;
245
+ }
246
+ @if ($input-skin-name == 'FluentUI') {
247
+ color: $float-label-font-color;
248
+ }
249
+ }
250
+
251
+ .e-float-input input,
252
+ .e-float-input textarea,
253
+ .e-float-input.e-control-wrapper input,
254
+ .e-float-input.e-control-wrapper textarea {
255
+ border-bottom-color: $input-box-border-color;
256
+ }
257
+
258
+ .e-float-input.e-success input,
259
+ .e-float-input.e-success textarea,
260
+ .e-float-input.e-control-wrapper.e-success input,
261
+ .e-float-input.e-control-wrapper.e-success textarea {
262
+ @include input-state-color ($input-success-color);
263
+ }
264
+
265
+ .e-float-input.e-warning input,
266
+ .e-float-input.e-control-wrapper.e-warning input,
267
+ .e-float-input.e-warning textarea,
268
+ .e-float-input.e-control-wrapper.e-warning textarea {
269
+ @include input-state-color ($input-warning-color);
270
+ }
271
+
272
+ .e-float-input.e-error input,
273
+ .e-float-input.e-control-wrapper.e-error input,
274
+ .e-float-input.e-error textarea,
275
+ .e-float-input.e-control-wrapper.e-error textarea {
276
+ @include input-state-color ($input-error-color);
277
+ }
278
+
279
+ label.e-float-text,
280
+ .e-float-input label.e-float-text,
281
+ .e-float-input.e-control-wrapper label.e-float-text,
282
+ .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
283
+ .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
284
+ .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
285
+ .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
286
+ @if $input-skin-name == 'highcontrast' {
287
+ color: $content-font-alt;
288
+ }
289
+ }
290
+
291
+ .e-float-input:not(.e-input-group) .e-float-line::before,
292
+ .e-float-input:not(.e-input-group) .e-float-line::after,
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.e-control-wrapper:not(.e-input-group) .e-float-line::before,
296
+ .e-float-input.e-control-wrapper: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
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
300
+ background: $input-active-accent-color;
301
+ }
302
+ }
303
+
304
+ label.e-float-text,
305
+ .e-float-input label.e-float-text,
306
+ .e-float-input.e-control-wrapper label.e-float-text,
307
+ .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
308
+ .e-float-input.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
309
+ .e-bigger .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
310
+ .e-float-input.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
311
+ .e-small .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
312
+ .e-bigger .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.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
314
+ .e-float-input.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
315
+ .e-bigger.e-small .e-float-input: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-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
318
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
319
+ .e-bigger .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-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
321
+ .e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
322
+ .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,
323
+ .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,
324
+ .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,
325
+ .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,
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
+ @if $input-skin-name == 'highcontrast' {
328
+ color: $content-font-alt;
329
+ }
330
+ }
331
+
332
+ .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
333
+ .e-float-input.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
334
+ .e-bigger .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
335
+ .e-float-input.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
336
+ .e-small .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
337
+ .e-bigger .e-float-input.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
338
+ .e-small .e-float-input.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
339
+ .e-float-input.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
340
+ .e-bigger.e-small .e-float-input 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-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
343
+ .e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
344
+ .e-bigger .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-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
346
+ .e-small .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
347
+ .e-bigger .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.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
349
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
350
+ .e-bigger.e-small .e-float-input.e-control-wrapper 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
+ @if $input-skin-name == 'highcontrast' {
353
+ color: $content-font-alt;
354
+ }
355
+ }
356
+
357
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::before,
358
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::after,
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-control-wrapper.e-success:not(.e-input-group) .e-float-line::before,
362
+ .e-float-input.e-control-wrapper.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
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
366
+ background: $input-success-color;
367
+ }
368
+ }
369
+
370
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::before,
371
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::after,
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-control-wrapper.e-warning:not(.e-input-group) .e-float-line::before,
375
+ .e-float-input.e-control-wrapper.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
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
379
+ background: $input-warning-color;
380
+ }
381
+ }
382
+
383
+ .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),
384
+ .e-float-input:not(.e-error):not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
385
+ .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) {
386
+ color: $input-placeholder;
387
+ }
388
+
389
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::before,
390
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::after,
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-control-wrapper.e-error:not(.e-input-group) .e-float-line::before,
394
+ .e-float-input.e-control-wrapper.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
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
398
+ background: $input-error-color;
399
+ }
400
+ }
401
+
402
+ .e-input-group:not(.e-disabled) .e-input-group-icon:active,
403
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:active {
404
+ background: $input-group-pressed-bg;
405
+ color: $input-group-pressed-color;
406
+ @if $input-skin-name == 'bootstrap' {
407
+ -webkit-box-shadow: $input-icon-shadow;
408
+ box-shadow: $input-icon-shadow;
409
+ }
410
+ @if $input-skin-name == 'bootstrap4' {
411
+ -webkit-box-shadow: $input-icon-shadow;
412
+ border-color: $pressed-border-color;
413
+ box-shadow: $input-icon-shadow;
414
+ }
415
+ @if $input-skin-name == 'highcontrast' {
416
+ border-left-color: transparent;
417
+ border-right-color: transparent;
418
+ }
419
+ }
420
+
421
+ .e-float-input.e-input-group.e-small.e-float-icon-left .e-input-group-icon:last-child:hover,
422
+ .e-float-input.e-input-group.e-float-icon-left .e-input-group-icon:last-child:hover,
423
+ .e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left .e-input-group-icon:last-child:hover,
424
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-group-icon:last-child:hover {
425
+ @if $input-skin-name == 'highcontrast' {
426
+ border-right-color: transparent;
427
+ }
428
+ }
429
+
430
+ .e-float-input.e-input-group.e-small.e-float-icon-left .e-input-group-icon:not(:last-child):hover,
431
+ .e-float-input.e-input-group.e-float-icon-left .e-input-group-icon:not(:last-child):hover,
432
+ .e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left .e-input-group-icon:not(:last-child):hover,
433
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-group-icon:not(:last-child):hover {
434
+ @if $input-skin-name == 'highcontrast' {
435
+ border-left-color: transparent;
436
+ }
437
+ }
438
+
439
+ .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,
440
+ .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 {
441
+ @if $input-skin-name == 'highcontrast' {
442
+ border-right-color: transparent;
443
+ }
444
+ }
445
+
446
+ .e-input-group.e-small.e-float-icon-left:not(.e-disabled) .e-input-group-icon:first-child:hover,
447
+ .e-input-group.e-control-wrapper.e-small.e-float-icon-left:not(.e-disabled) .e-input-group-icon:first-child:hover {
448
+ @if $input-skin-name == 'highcontrast' {
449
+ border-left-color: transparent;
450
+ }
451
+ }
452
+
453
+ .e-input-group.e-small:not(.e-disabled) .e-input-group-icon:first-child:hover,
454
+ .e-input-group.e-float-icon-left .e-input-group-icon:first-child:hover,
455
+ .e-input-group.e-control-wrapper.e-small:not(.e-disabled) .e-input-group-icon:first-child:hover,
456
+ .e-input-group.e-control-wrapper.e-float-icon-left .e-input-group-icon:first-child:hover {
457
+ @if $input-skin-name == 'highcontrast' {
458
+ border-left-color: transparent;
459
+ }
460
+ }
461
+
462
+ .e-input-group.e-small:not(.e-disabled):not(.e-float-input):not(.e-rtl) .e-input-group-icon:last-child:hover,
463
+ .e-input-group.e-float-icon-left .e-input-group-icon:last-child:hover,
464
+ .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,
465
+ .e-input-group.e-control-wrapper.e-float-icon-left .e-input-group-icon:last-child:hover {
466
+ @if $input-skin-name == 'highcontrast' {
467
+ border-right-color: transparent;
468
+ }
469
+ }
470
+
471
+ .e-input-group.e-rtl:not(.e-disabled) .e-input-group-icon:last-child:hover,
472
+ .e-input-group.e-control-wrapper.e-rtl:not(.e-disabled) .e-input-group-icon:last-child:hover {
473
+ @if $input-skin-name == 'highcontrast' {
474
+ border-left-color: transparent;
475
+ }
476
+ }
477
+
478
+ .e-input-group:not(.e-rtl):not(.e-disabled) .e-input + .e-input-group-icon:last-child:hover,
479
+ .e-input-group.e-control-wrapper:not(.e-rtl):not(.e-disabled) .e-input + .e-input-group-icon:last-child:hover {
480
+ @if $input-skin-name == 'highcontrast' {
481
+ border-right-color: transparent;
482
+ }
483
+ }
484
+
485
+
486
+ .e-input-group:not(.e-disabled) .e-input-group-icon:first-child:hover,
487
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:first-child:hover {
488
+ @if $input-skin-name == 'highcontrast' {
489
+ border-left-color: transparent;
490
+ }
491
+ }
492
+
493
+
494
+ .e-input-group:not(.e-disabled) .e-input-group-icon:not(:last-child):hover + .e-input-group-icon:not(:last-child):hover,
495
+ .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 {
496
+ @if $input-skin-name == 'highcontrast' {
497
+ border-right-color: transparent;
498
+ }
499
+ }
500
+
501
+
502
+ .e-input-group:not(.e-rtl):not(.e-disabled) .e-input-group-icon:last-child:hover,
503
+ .e-input-group.e-control-wrapper:not(.e-rtl):not(.e-disabled) .e-input-group-icon:last-child:hover {
504
+ @if $input-skin-name == 'highcontrast' {
505
+ border-right-color: transparent;
506
+ }
507
+ }
508
+
509
+ input.e-input#{$css}::selection,
510
+ textarea.e-input#{$css}::selection,
511
+ .e-input-group input.e-input::selection,
512
+ .e-input-group.e-control-wrapper input.e-input::selection,
513
+ .e-float-input input::selection,
514
+ .e-float-input.e-control-wrapper input::selection,
515
+ .e-input-group textarea.e-input::selection,
516
+ .e-input-group.e-control-wrapper textarea.e-input::selection,
517
+ .e-float-input textarea::selection,
518
+ .e-float-input.e-control-wrapper textarea::selection {
519
+ @include input-selection;
520
+ }
521
+
522
+ .e-float-input.e-small textarea::selection,
523
+ .e-float-input textarea::selection {
524
+ @include input-selection;
525
+ }
526
+
527
+
528
+ input.e-input#{$css}:-moz-placeholder {
529
+ color: $input-placeholder;
530
+ }
531
+
532
+
533
+ .e-input-group input.e-input:-moz-placeholder {
534
+ color: $input-placeholder;
535
+ }
536
+
537
+
538
+ .e-input-group input.e-input:-moz-placeholder,
539
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder {
540
+ color: $input-placeholder;
541
+ }
542
+
543
+
544
+ input.e-input#{$css}:-moz-placeholder {
545
+ color: $input-placeholder;
546
+ }
547
+
548
+
549
+ .e-input-group input.e-input:-moz-placeholder {
550
+ color: $input-placeholder;
551
+ }
552
+
553
+
554
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder {
555
+ color: $input-placeholder;
556
+ }
557
+
558
+
559
+ textarea.e-input#{$css}:-moz-placeholder {
560
+ color: $input-placeholder;
561
+ }
562
+
563
+
564
+ .e-input-group textarea.e-input:-moz-placeholder {
565
+ color: $input-placeholder;
566
+ }
567
+
568
+
569
+ .e-input-group.e-control-wrapper textarea.e-input:-moz-placeholder {
570
+ color: $input-placeholder;
571
+ }
572
+
573
+
574
+ input.e-input#{$css}::-moz-placeholder {
575
+ color: $input-placeholder;
576
+ }
577
+
578
+
579
+ .e-input-group input.e-input::-moz-placeholder {
580
+ color: $input-placeholder;
581
+ }
582
+
583
+
584
+ .e-input-group.e-control-wrapper input.e-input::-moz-placeholder {
585
+ color: $input-placeholder;
586
+ }
587
+
588
+
589
+ textarea.e-input#{$css}::-moz-placeholder {
590
+ color: $input-placeholder;
591
+ }
592
+
593
+
594
+ .e-input-group textarea.e-input::-moz-placeholder {
595
+ color: $input-placeholder;
596
+ }
597
+
598
+
599
+ .e-input-group.e-control-wrapper textarea.e-input::-moz-placeholder {
600
+ color: $input-placeholder;
601
+ }
602
+
603
+
604
+ input.e-input#{$css}:-ms-input-placeholder {
605
+ color: $input-placeholder;
606
+ }
607
+
608
+
609
+ .e-input-group input.e-input:-ms-input-placeholder {
610
+ color: $input-placeholder;
611
+ }
612
+
613
+
614
+ .e-input-group.e-control-wrapper input.e-input:-ms-input-placeholder {
615
+ color: $input-placeholder;
616
+ }
617
+
618
+
619
+ textarea.e-input#{$css}:-ms-input-placeholder {
620
+ color: $input-placeholder;
621
+ }
622
+
623
+
624
+ .e-input-group.e-control-wrapper textarea.e-input:-ms-input-placeholder {
625
+ color: $input-placeholder;
626
+ }
627
+
628
+
629
+ .e-input-group textarea.e-input:-ms-input-placeholder {
630
+ color: $input-placeholder;
631
+ }
632
+
633
+
634
+ input.e-input#{$css}::-webkit-input-placeholder {
635
+ color: $input-placeholder;
636
+ }
637
+
638
+
639
+ .e-input-group.e-control-wrapper input.e-input::-webkit-input-placeholder {
640
+ color: $input-placeholder;
641
+ }
642
+
643
+
644
+ .e-input-group input.e-input::-webkit-input-placeholder {
645
+ color: $input-placeholder;
646
+ }
647
+
648
+
649
+ textarea.e-input#{$css}::-webkit-input-placeholder {
650
+ color: $input-placeholder;
651
+ }
652
+
653
+
654
+ .e-input-group textarea.e-input::-webkit-input-placeholder {
655
+ color: $input-placeholder;
656
+ }
657
+
658
+
659
+ .e-input-group.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
660
+ color: $input-placeholder;
661
+ }
662
+
663
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input)::before,
664
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input)::after,
665
+ .e-input-group.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::before,
666
+ .e-input-group.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after,
667
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::before,
668
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::after,
669
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::before,
670
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after {
671
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
672
+ @include input-group-animation-bg;
673
+ }
674
+ }
675
+
676
+ .e-float-input.e-input-group:not(.e-float-icon-left) .e-float-line::before,
677
+ .e-float-input.e-input-group:not(.e-float-icon-left) .e-float-line::after,
678
+ .e-float-input.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::before,
679
+ .e-float-input.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::after,
680
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::before,
681
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::after,
682
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::before,
683
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::after {
684
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
685
+ @include input-group-animation-bg;
686
+ }
687
+ }
688
+
689
+ .e-input-group::before,
690
+ .e-input-group::after,
691
+ .e-input-group.e-control-wrapper::before,
692
+ .e-input-group.e-control-wrapper::after {
693
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
694
+ @include input-group-animation-bg;
695
+ }
696
+ }
697
+
698
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input).e-success::before,
699
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input).e-success::after,
700
+ .e-input-group.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::before,
701
+ .e-input-group.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::after,
702
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input).e-success::before,
703
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input).e-success::after,
704
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::before,
705
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::after {
706
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
707
+ @include input-group-success-animation-bg;
708
+ }
709
+ }
710
+
711
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-success .e-float-line::before,
712
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-success .e-float-line::after,
713
+ .e-float-input.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::before,
714
+ .e-float-input.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::after,
715
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left).e-success .e-float-line::before,
716
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left).e-success .e-float-line::after,
717
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::before,
718
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::after,
719
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-success .e-float-line::before,
720
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-success .e-float-line::after,
721
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::before,
722
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::after {
723
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
724
+ @include input-group-success-animation-bg;
725
+ }
726
+ }
727
+
728
+ .e-input-group.e-success::before,
729
+ .e-input-group.e-success::after,
730
+ .e-input-group.e-control-wrapper.e-success::before,
731
+ .e-input-group.e-control-wrapper.e-success::after {
732
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
733
+ @include input-group-success-animation-bg;
734
+ }
735
+ }
736
+
737
+ .e-input-group:not(.e-float-icon-left).e-warning:not(.e-float-input)::before,
738
+ .e-input-group:not(.e-float-icon-left).e-warning:not(.e-float-input)::after,
739
+ .e-input-group.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::before,
740
+ .e-input-group.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::after,
741
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-warning:not(.e-float-input)::before,
742
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-warning:not(.e-float-input)::after,
743
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::before,
744
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::after {
745
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
746
+ @include input-group-warning-animation-bg;
747
+ }
748
+ }
749
+
750
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-warning .e-float-line::before,
751
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-warning .e-float-line::after,
752
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-input-in-wrap .e-float-line::before,
753
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-input-in-wrap .e-float-line::after {
754
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
755
+ @include input-group-warning-animation-bg;
756
+ }
757
+ }
758
+
759
+ .e-input-group.e-warning::before,
760
+ .e-input-group.e-warning::after,
761
+ .e-input-group.e-control-wrapper.e-warning::before,
762
+ .e-input-group.e-control-wrapper.e-warning::after {
763
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
764
+ @include input-group-warning-animation-bg;
765
+ }
766
+ }
767
+
768
+ .e-input-group:not(.e-float-icon-left).e-error:not(.e-float-input)::before,
769
+ .e-input-group:not(.e-float-icon-left).e-error:not(.e-float-input)::after,
770
+ .e-input-group.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::before,
771
+ .e-input-group.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::after,
772
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error:not(.e-float-input)::before,
773
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error:not(.e-float-input)::after,
774
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::before,
775
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::after {
776
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
777
+ @include input-group-error-animation-bg;
778
+ }
779
+ }
780
+
781
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-error .e-float-line::before,
782
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-error .e-float-line::after,
783
+ .e-float-input.e-input-group.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::before,
784
+ .e-float-input.e-input-group.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::after,
785
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error .e-float-line::before,
786
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error .e-float-line::after,
787
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::before,
788
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::after {
789
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
790
+ @include input-group-error-animation-bg;
791
+ }
792
+ }
793
+
794
+ .e-input-group.e-error::before,
795
+ .e-input-group.e-error::after,
796
+ .e-input-group.e-control-wrapper.e-error::before,
797
+ .e-input-group.e-control-wrapper.e-error::after {
798
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
799
+ @include input-group-error-animation-bg;
800
+ }
801
+ }
802
+
803
+ .e-input-group.e-success .e-input-group-icon,
804
+ .e-input-group.e-control-wrapper.e-success .e-input-group-icon {
805
+ color: $input-icon-font-color;
806
+ }
807
+
808
+ .e-input-group.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover,
809
+ .e-input-group.e-control-wrapper.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover {
810
+ color: $input-icon-font-color;
811
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'FluentUI' {
812
+ color: $input-group-hovered-color;
813
+ }
814
+ }
815
+
816
+ .e-input-group.e-warning .e-input-group-icon,
817
+ .e-input-group.e-control-wrapper.e-warning .e-input-group-icon {
818
+ color: $input-icon-font-color;
819
+ }
820
+
821
+ .e-input-group.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover,
822
+ .e-input-group.e-control-wrapper.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover {
823
+ color: $input-icon-font-color;
824
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'FluentUI' {
825
+ color: $input-group-hovered-color;
826
+ }
827
+ }
828
+
829
+ .e-input-group.e-error .e-input-group-icon,
830
+ .e-input-group.e-control-wrapper.e-error .e-input-group-icon {
831
+ color: $input-icon-font-color;
832
+ }
833
+
834
+ .e-input-group.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover,
835
+ .e-input-group.e-control-wrapper.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover {
836
+ color: $input-icon-font-color;
837
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'FluentUI' {
838
+ color: $input-group-hovered-color;
839
+ }
840
+ }
841
+
842
+ .e-input-group.e-success:not(.e-disabled) .e-input-group-icon:active,
843
+ .e-input-group.e-control-wrapper.e-success:not(.e-disabled) .e-input-group-icon:active {
844
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
845
+ color: $input-icon-font-color;
846
+ }
847
+ }
848
+
849
+ .e-input-group.e-warning:not(.e-disabled) .e-input-group-icon:active,
850
+ .e-input-group.e-control-wrapper.e-warning:not(.e-disabled) .e-input-group-icon:active {
851
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
852
+ color: $input-icon-font-color;
853
+ }
854
+ }
855
+
856
+ .e-input-group.e-error:not(.e-disabled) .e-input-group-icon:active,
857
+ .e-input-group.e-control-wrapper.e-error:not(.e-disabled) .e-input-group-icon:active {
858
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
859
+ color: $input-icon-font-color;
860
+ }
861
+ }
862
+
863
+ .e-input-group input.e-input,
864
+ .e-input-group.e-control-wrapper input.e-input,
865
+ .e-input-group textarea.e-input,
866
+ .e-input-group.e-control-wrapper textarea.e-input {
867
+ border-color: $input-box-border-color;
868
+ }
869
+
870
+
871
+ .e-input#{$css}:focus:not(.e-success):not(.e-warning):not(.e-error),
872
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
873
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
874
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
875
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
876
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input,
877
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input {
878
+ border-color: $input-active-border-color;
879
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
880
+ -webkit-box-shadow: $input-border-shadow;
881
+ box-shadow: $input-border-shadow;
882
+ }
883
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
884
+ border-radius: $input-groupo-focus-border-radius;
885
+ box-shadow: $input-group-focus-box-shadow;
886
+ }
887
+ @if $input-skin-name == 'bootstrap4' {
888
+ transition: $input-transition-shadow;
889
+ }
890
+ }
891
+
892
+
893
+ .e-input-group .e-input#{$css}:focus:not(.e-success):not(.e-warning):not(.e-error),
894
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
895
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
896
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
897
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
898
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input,
899
+ .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 {
900
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
901
+ box-shadow: none;
902
+ }
903
+ }
904
+
905
+
906
+ .e-input#{$css}:focus:not(.e-success):not(.e-warning).e-error,
907
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
908
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
909
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
910
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
911
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input,
912
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input {
913
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
914
+ -webkit-box-shadow: $input-error-border-shadow;
915
+ box-shadow: $input-error-border-shadow;
916
+ }
917
+ }
918
+
919
+
920
+ .e-input#{$css}:focus:not(.e-error):not(.e-warning).e-success,
921
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
922
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
923
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
924
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
925
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input,
926
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input {
927
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
928
+ -webkit-box-shadow: $input-success-border-shadow;
929
+ box-shadow: $input-success-border-shadow;
930
+ }
931
+ }
932
+
933
+
934
+ .e-input#{$css}:focus:not(.e-success):not(.e-error).e-warning,
935
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
936
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
937
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
938
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
939
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input,
940
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input {
941
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
942
+ -webkit-box-shadow: $input-warning-border-shadow;
943
+ box-shadow: $input-warning-border-shadow;
944
+ }
945
+ }
946
+
947
+ .e-input-group:not(.e-float-input):not(.e-float-icon-left) .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
948
+ .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),
949
+ .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),
950
+ .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),
951
+ .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),
952
+ .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),
953
+ .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),
954
+ .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) {
955
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
956
+ box-shadow: none;
957
+ }
958
+ }
959
+
960
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error) input.e-input:focus,
961
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) input.e-input:focus,
962
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error).e-input-focus input.e-input,
963
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error).e-input-focus input.e-input,
964
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error) textarea.e-input:focus,
965
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) textarea.e-input:focus {
966
+ border-color: $input-group-active-border-color;
967
+ }
968
+
969
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
970
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) {
971
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
972
+ border-color: $input-group-border-color-focus;
973
+ }
974
+ }
975
+
976
+
977
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
978
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
979
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
980
+ border-color: $input-group-border-color-focus;
981
+ }
982
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
983
+ -webkit-box-shadow: $input-border-shadow;
984
+ box-shadow: $input-border-shadow;
985
+ }
986
+ @if $input-skin-name == 'bootstrap4' {
987
+ transition: $input-transition-shadow;
988
+ }
989
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
990
+ border-color: $input-group-border-color-focus;
991
+ border-radius: $input-groupo-focus-border-radius;
992
+ box-shadow: $input-group-focus-box-shadow;
993
+ }
994
+ }
995
+
996
+
997
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning).e-error,
998
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning).e-error {
999
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1000
+ -webkit-box-shadow: $input-error-border-shadow;
1001
+ box-shadow: $input-error-border-shadow;
1002
+ }
1003
+ }
1004
+
1005
+
1006
+ .e-input-group.e-input-focus:not(.e-error):not(.e-warning).e-success,
1007
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-error):not(.e-warning).e-success {
1008
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1009
+ -webkit-box-shadow: $input-success-border-shadow;
1010
+ box-shadow: $input-success-border-shadow;
1011
+ }
1012
+ }
1013
+
1014
+
1015
+ .e-input-group.e-input-focus:not(.e-success):not(.e-error).e-warning,
1016
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-error).e-warning {
1017
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1018
+ -webkit-box-shadow: $input-warning-border-shadow;
1019
+ box-shadow: $input-warning-border-shadow;
1020
+ }
1021
+ }
1022
+
1023
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1024
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1025
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
1026
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
1027
+ border-color: $input-box-border-color;
1028
+ }
1029
+
1030
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1031
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:last-child.e-input-group-icon,
1032
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1033
+ .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 {
1034
+ @if ($input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'FluentUI' and $input-skin-name != 'bootstrap5') {
1035
+ border-color: $input-group-border-right-focus;
1036
+ }
1037
+ }
1038
+
1039
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
1040
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1041
+ .e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1042
+ .e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
1043
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
1044
+ .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,
1045
+ .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,
1046
+ .e-input-focus.e-control-wrapper.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1047
+ .e-input-focus.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
1048
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon {
1049
+ @if ($input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5' and $input-skin-name != 'FluentUI') {
1050
+ border-color: $input-group-border-left-focus;
1051
+ }
1052
+ }
1053
+
1054
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1055
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
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-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1058
+ .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,
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
+ @if ($input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5') {
1061
+ border-color: transparent;
1062
+ }
1063
+ }
1064
+
1065
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
1066
+ .e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1067
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
1068
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1069
+ .e-float-input.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1070
+ .e-float-input.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap {
1071
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1072
+ border-color: $input-group-full-border-color;
1073
+ }
1074
+ }
1075
+
1076
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error),
1077
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) {
1078
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
1079
+ border-color: $input-group-full-border-color;
1080
+ }
1081
+ @if $input-skin-name == 'tailwind' {
1082
+ box-shadow: $input-group-border-shadow;
1083
+ }
1084
+ @if $input-skin-name == 'FluentUI' {
1085
+ box-shadow: none;
1086
+ }
1087
+ }
1088
+
1089
+
1090
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
1091
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
1092
+ @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' {
1093
+ border-color: $input-active-border-color;
1094
+ }
1095
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
1096
+ -webkit-box-shadow: $input-border-shadow;
1097
+ box-shadow: $input-border-shadow;
1098
+ }
1099
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1100
+ box-shadow: $input-group-focus-box-shadow;
1101
+ }
1102
+ }
1103
+
1104
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error,
1105
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error {
1106
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1107
+ -webkit-box-shadow: $input-error-border-shadow;
1108
+ box-shadow: $input-error-border-shadow;
1109
+ }
1110
+ }
1111
+
1112
+ .e-input-group:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success,
1113
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success {
1114
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1115
+ -webkit-box-shadow: $input-success-border-shadow;
1116
+ box-shadow: $input-success-border-shadow;
1117
+ }
1118
+ }
1119
+
1120
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning,
1121
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning {
1122
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1123
+ -webkit-box-shadow: $input-warning-border-shadow;
1124
+ box-shadow: $input-warning-border-shadow;
1125
+ }
1126
+ }
1127
+
1128
+ .e-input-group.e-disabled:not(.e-success):not(.e-warning):not(.e-error),
1129
+ .e-input-group.e-control-wrapper.e-disabled:not(.e-success):not(.e-warning):not(.e-error) {
1130
+ @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' {
1131
+ border-color: $input-disable-border-color;
1132
+ }
1133
+ }
1134
+
1135
+ .e-input-group,
1136
+ .e-input-group.e-control-wrapper {
1137
+ border-bottom-color: $input-box-border-color;
1138
+ }
1139
+
1140
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) .e-input:focus,
1141
+ .e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1142
+ .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,
1143
+ .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,
1144
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) .e-input,
1145
+ .e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
1146
+ .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,
1147
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
1148
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1149
+ border-bottom-color: transparent;
1150
+ border-top-color: transparent;
1151
+ }
1152
+ }
1153
+
1154
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1155
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1156
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
1157
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
1158
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
1159
+ border-bottom-color: transparent;
1160
+ border-top-color: transparent;
1161
+ }
1162
+ }
1163
+
1164
+ .e-input-group.e-success,
1165
+ .e-input-group.e-control-wrapper.e-success,
1166
+ .e-float-icon-left.e-input-group.e-success,
1167
+ .e-float-icon-left.e-control-wrapper.e-input-group.e-success,
1168
+ .e-input-group.e-warning,
1169
+ .e-input-group.e-control-wrapper.e-warning,
1170
+ .e-float-icon-left.e-input-group.e-warning,
1171
+ .e-float-icon-left.e-input-group.e-control-wrapper.e-warning,
1172
+ .e-input-group.e-error,
1173
+ .e-input-group.e-control-wrapper.e-error,
1174
+ .e-float-icon-left.e-input-group.e-error,
1175
+ .e-float-icon-left.e-input-group.e-control-wrapper.e-error,
1176
+ .e-input-group.e-float-icon-left,
1177
+ .e-input-group.e-control-wrapper.e-float-icon-left {
1178
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1179
+ border-color: transparent;
1180
+ }
1181
+ }
1182
+
1183
+ .e-input-group.e-success,
1184
+ .e-input-group.e-control-wrapper.e-success,
1185
+ .e-input-group.e-success:not(.e-float-icon-left),
1186
+ .e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left) {
1187
+ @include input-state-color ($input-group-success-color);
1188
+ }
1189
+
1190
+ .e-input-group.e-float-icon-left.e-success .e-input-in-wrap,
1191
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-input-in-wrap {
1192
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1193
+ @include input-state-color ($input-group-success-color);
1194
+ }
1195
+ }
1196
+
1197
+ .e-input-group.e-warning,
1198
+ .e-input-group.e-control-wrapper.e-warning,
1199
+ .e-input-group.e-warning:not(.e-float-icon-left),
1200
+ .e-input-group.e-control-wrapper.e-warning:not(.e-float-icon-left) {
1201
+ @include input-state-color ($input-group-warning-color);
1202
+ }
1203
+
1204
+ .e-input-group.e-float-icon-left.e-warning .e-input-in-wrap,
1205
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-warning .e-input-in-wrap {
1206
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1207
+ @include input-state-color ($input-group-warning-color);
1208
+ }
1209
+ }
1210
+
1211
+ .e-input-group.e-error,
1212
+ .e-input-group.e-control-wrapper.e-error,
1213
+ .e-input-group.e-error:not(.e-float-icon-left),
1214
+ .e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left) {
1215
+ @include input-state-color ($input-group-error-color);
1216
+ }
1217
+
1218
+ .e-input-group.e-float-icon-left.e-error .e-input-in-wrap,
1219
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-input-in-wrap {
1220
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1221
+ @include input-state-color ($input-group-error-color);
1222
+ }
1223
+ }
1224
+
1225
+ .e-float-input .e-clear-icon,
1226
+ .e-float-input.e-control-wrapper .e-clear-icon,
1227
+ .e-input-group .e-clear-icon,
1228
+ .e-input-group.e-control-wrapper .e-clear-icon {
1229
+ color: $input-clear-icon-color;
1230
+ }
1231
+
1232
+ .e-float-input .e-clear-icon:active,
1233
+ .e-float-input.e-control-wrapper .e-clear-icon:active,
1234
+ .e-input-group .e-clear-icon:active,
1235
+ .e-input-group.e-control-wrapper .e-clear-icon:active {
1236
+ @if ($input-skin-name == 'FluentUI') {
1237
+ color: $input-group-pressed-color;
1238
+ }
1239
+ }
1240
+
1241
+ .e-float-input .e-clear-icon:hover,
1242
+ .e-float-input.e-control-wrapper .e-clear-icon:hover,
1243
+ .e-input-group .e-clear-icon:hover,
1244
+ .e-input-group.e-control-wrapper .e-clear-icon:hover {
1245
+ color: $input-clear-icon-hover-color;
1246
+ @if ($input-skin-name == 'FluentUI') {
1247
+ background: $input-clear-icon-hover-bg-color;
1248
+ }
1249
+ @if $input-skin-name == 'Material3' {
1250
+ border: $input-clear-icon-hover-border;
1251
+ border-radius: $input-clear-icon-hover-border-radius;
1252
+ background: $input-clear-icon-hover-bg-color;
1253
+ }
1254
+ }
1255
+
1256
+ .e-float-input:not(.e-disabled) .e-clear-icon:hover,
1257
+ .e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover,
1258
+ .e-input-group:not(.e-disabled) .e-clear-icon:hover,
1259
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover {
1260
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
1261
+ color: $input-clear-icon-hover-color;
1262
+ }
1263
+ @if ($input-skin-name == 'FluentUI') {
1264
+ background: $input-clear-icon-hover-bg-color;
1265
+ }
1266
+ }
1267
+
1268
+ .e-float-input.e-disabled .e-clear-icon,
1269
+ .e-float-input.e-control-wrapper.e-disabled .e-clear-icon,
1270
+ .e-input-group.e-disabled .e-clear-icon,
1271
+ .e-input-group.e-control-wrapper.e-disabled .e-clear-icon {
1272
+ color: $input-group-disabled-color;
1273
+ }
1274
+
1275
+ // Double border issue while adding floating input with class .e-input
1276
+ .e-float-input.e-input-focus .e-input:focus,
1277
+ .e-float-input.e-control-wrapper.e-input-focus .e-input:focus {
1278
+ border-bottom-color: transparent;
1279
+ border-top-color: transparent;
1280
+ }
1281
+
1282
+ .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1283
+ .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
1284
+ .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
1285
+ .e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1286
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1287
+ .e-float-input:not(.e-error) input label.e-float-text.e-label-top,
1288
+ .e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1289
+ .e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1290
+ .e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1291
+ .e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1292
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1293
+ .e-bigger .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1294
+ .e-bigger .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
1295
+ .e-bigger .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
1296
+ .e-bigger .e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1297
+ .e-bigger .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1298
+ .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1299
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1300
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
1301
+ color: $float-label-font-color;
1302
+ }
1303
+
1304
+ .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1305
+ .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
1306
+ .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
1307
+ .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1308
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1309
+ .e-float-input .e-control-wrapper:not(.e-error) input label.e-float-text.e-label-top,
1310
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1311
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1312
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1313
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1314
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1315
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1316
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
1317
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
1318
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1319
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1320
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1321
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1322
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text {
1323
+ color: $float-label-font-color;
1324
+ }
1325
+
1326
+ .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1327
+ .e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
1328
+ .e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1329
+ .e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
1330
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1331
+ .e-small .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1332
+ .e-small .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
1333
+ .e-small .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
1334
+ .e-small .e-float-input:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
1335
+ .e-small .e-float-input:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1336
+ .e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1337
+ .e-float-input.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1338
+ .e-float-input.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1339
+ .e-float-input.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1340
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1341
+ .e-bigger .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1342
+ .e-bigger .e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
1343
+ .e-bigger .e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1344
+ .e-bigger .e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1345
+ .e-bigger .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1346
+ .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1347
+ .e-small .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1348
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1349
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
1350
+ color: $float-label-font-color;
1351
+ }
1352
+
1353
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1354
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
1355
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1356
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
1357
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1358
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1359
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
1360
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
1361
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
1362
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1363
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1364
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1365
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1366
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1367
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1368
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1369
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
1370
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1371
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1372
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1373
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1374
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1375
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1376
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
1377
+ color: $float-label-font-color;
1378
+ }
1379
+
1380
+ .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1381
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1382
+ .e-float-input.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1383
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1384
+ .e-bigger .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1385
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1386
+ .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1387
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1388
+ .e-small .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1389
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1390
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1391
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1392
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1393
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1394
+ color: $input-header-font-color;
1395
+ @if $input-skin-name == 'highcontrast' {
1396
+ color: $input-placeholder;
1397
+ }
1398
+ }
1399
+
1400
+ .e-float-input:not(.e-input-focus):not(.e-disabled) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
1401
+ .e-float-input:not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
1402
+ .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) {
1403
+ color: $input-placeholder;
1404
+ }
1405
+
1406
+ .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1407
+ .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
1408
+ .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1409
+ .e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1410
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1411
+ .e-float-input:not(.e-error) textarea label.e-float-text.e-label-top,
1412
+ .e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1413
+ .e-float-input.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1414
+ .e-float-input.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1415
+ .e-float-input.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1416
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1417
+ .e-bigger .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1418
+ .e-bigger .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
1419
+ .e-bigger .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1420
+ .e-bigger .e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1421
+ .e-bigger .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1422
+ color: $float-label-font-color;
1423
+ }
1424
+
1425
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1426
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
1427
+ .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1428
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1429
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1430
+ .e-float-input.e-control-wrapper:not(.e-error) textarea label.e-float-text.e-label-top,
1431
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1432
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1433
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1434
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1435
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1436
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1437
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
1438
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1439
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1440
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1441
+ color: $float-label-font-color;
1442
+ }
1443
+
1444
+ .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1445
+ .e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1446
+ .e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1447
+ .e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
1448
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1449
+ .e-small .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1450
+ .e-small .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
1451
+ .e-small .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1452
+ .e-small .e-float-input:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
1453
+ .e-small .e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1454
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1455
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1456
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1457
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1458
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1459
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1460
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1461
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1462
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1463
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1464
+ color: $float-label-font-color;
1465
+ }
1466
+
1467
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1468
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1469
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1470
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
1471
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1472
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1473
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
1474
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1475
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
1476
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1477
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1478
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1479
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1480
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1481
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1482
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1483
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1484
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1485
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1486
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1487
+ color: $float-label-font-color;
1488
+ }
1489
+
1490
+ .e-float-input.e-input-group.e-disabled .e-float-text,
1491
+ .e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
1492
+ .e-float-input input[disabled] ~ label.e-float-text,
1493
+ .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
1494
+ .e-float-input.e-disabled label.e-float-text,
1495
+ .e-float-input.e-disabled label.e-float-text.e-label-top,
1496
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
1497
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1498
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1499
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1500
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1501
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1502
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1503
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
1504
+ color: $float-label-disbale-font-color;
1505
+ }
1506
+
1507
+ .e-float-input textarea[disabled] ~ label.e-float-text,
1508
+ .e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
1509
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
1510
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1511
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1512
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1513
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1514
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1515
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1516
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
1517
+ color: $float-label-disbale-font-color;
1518
+ }
1519
+
1520
+ .e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
1521
+ .e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
1522
+ .e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
1523
+ .e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
1524
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
1525
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
1526
+ .e-float-input.e-control-wrapper.e-disabled label.e-float-text,
1527
+ .e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
1528
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
1529
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1530
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1531
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1532
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1533
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1534
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1535
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1536
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
1537
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1538
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1539
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1540
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1541
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1542
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1543
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
1544
+ color: $float-label-disbale-font-color;
1545
+ }
1546
+
1547
+ .e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
1548
+ .e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
1549
+ .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
1550
+ .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
1551
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
1552
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1553
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1554
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1555
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1556
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1557
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1558
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1559
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
1560
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1561
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1562
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1563
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1564
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1565
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1566
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
1567
+ color: $float-label-disbale-font-color;
1568
+ }
1569
+
1570
+ .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1571
+ .e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1572
+ .e-bigger .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1573
+ .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1574
+ .e-small .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1575
+ .e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1576
+ .e-float-input.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1577
+ .e-bigger .e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1578
+ .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1579
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1580
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1581
+ .e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
1582
+ .e-small .e-float-input:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
1583
+ .e-float-input.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1584
+ .e-bigger .e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1585
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
1586
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
1587
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1588
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1589
+ .e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1590
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1591
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1592
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1593
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1594
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1595
+ .e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
1596
+ .e-small .e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
1597
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1598
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1599
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
1600
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
1601
+ .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,
1602
+ .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,
1603
+ .e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1604
+ .e-float-input.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1605
+ .e-bigger .e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1606
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1607
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1608
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1609
+ .e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
1610
+ .e-small .e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
1611
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1612
+ .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,
1613
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
1614
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1615
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1616
+ .e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1617
+ .e-float-input.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1618
+ .e-bigger .e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1619
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1620
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1621
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1622
+ .e-float-input.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
1623
+ .e-small .e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
1624
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1625
+ .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,
1626
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
1627
+ .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,
1628
+ .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,
1629
+ .e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1630
+ .e-bigger .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1631
+ .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1632
+ .e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1633
+ .e-bigger .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1634
+ .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1635
+ .e-small .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1636
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1637
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1638
+ .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1639
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1640
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1641
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1642
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1643
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1644
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1645
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1646
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1647
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1648
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1649
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1650
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1651
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1652
+ .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1653
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1654
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1655
+ .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1656
+ .e-small .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1657
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1658
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1659
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1660
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1661
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1662
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1663
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1664
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1665
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
1666
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1667
+ color: $input-active-accent-color;
1668
+ }
1669
+ }
1670
+
1671
+ input.e-input#{$css}:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]):not(:focus),
1672
+ textarea.e-input#{$css}:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]) {
1673
+ @if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' {
1674
+ border-color: $input-group-border-color-hover;
1675
+ }
1676
+ }
1677
+
1678
+ .e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1679
+ .e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1680
+ .e-float-input.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:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1682
+ .e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1683
+ .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,
1684
+ .e-float-input.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-control-wrapper.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:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1687
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1688
+ .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]),
1689
+ .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]),
1690
+ .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 {
1691
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1692
+ border-color: $input-group-border-color-hover;
1693
+ }
1694
+ }
1695
+
1696
+ .e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1697
+ .e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1698
+ .e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1699
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1700
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1701
+ .e-float-input.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1702
+ .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]),
1703
+ .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]) {
1704
+ @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' {
1705
+ border-color: $input-group-border-color-hover;
1706
+ }
1707
+ }
1708
+
1709
+ .e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1710
+ .e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1711
+ .e-float-input.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1712
+ .e-float-input.e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1713
+ .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),
1714
+ .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),
1715
+ .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),
1716
+ .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) {
1717
+ @if $input-skin-name == 'highcontrast' {
1718
+ border-color: $input-group-border-color-hover;
1719
+ }
1720
+ }
1721
+
1722
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1723
+ .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),
1724
+ .e-float-input.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-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1726
+ .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,
1727
+ .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,
1728
+ .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,
1729
+ .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]),
1730
+ .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]),
1731
+ .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,
1732
+ .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]),
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) textarea:not([disabled]) {
1734
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1735
+ border-color: $input-group-border-color-focus;
1736
+ }
1737
+ }
1738
+
1739
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1740
+ .e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1741
+ .e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1742
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1743
+ .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]),
1744
+ .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]),
1745
+ .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]),
1746
+ .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]) {
1747
+ @if $input-skin-name != 'material' and $input-skin-name != 'Material3' {
1748
+ border-color: $input-group-border-color-focus;
1749
+ }
1750
+ }
1751
+
1752
+ .e-input-group:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1753
+ .e-input-group.e-control-wrapper:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1754
+ .e-float-input:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1755
+ .e-float-input.e-control-wrapper:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1756
+ .e-float-input:active:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1757
+ .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]),
1758
+ .e-float-input:active:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1759
+ .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]) {
1760
+ @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' {
1761
+ border-color: $input-active-border-color;
1762
+ }
1763
+ }
1764
+
1765
+ .e-input-group.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1766
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1767
+ .e-float-input.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1768
+ .e-float-input.e-control-wrapper.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1769
+ .e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1770
+ .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 {
1771
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1772
+ border-color: $input-group-border-color-hover;
1773
+ }
1774
+ }
1775
+
1776
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1777
+ .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),
1778
+ .e-float-input.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-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1780
+ .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,
1781
+ .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,
1782
+ .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,
1783
+ .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]),
1784
+ .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]),
1785
+ .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,
1786
+ .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]),
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) textarea:not([disabled]) {
1788
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1789
+ border-color: $input-group-border-color-hover;
1790
+ }
1791
+ }
1792
+
1793
+ .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1794
+ .e-bigger .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-small .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-bigger .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1799
+ .e-bigger.e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1800
+ .e-float-input.e-bigger.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1801
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
1802
+ .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,
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-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,
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-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,
1807
+ .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,
1808
+ .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 {
1809
+ color: $float-label-font-color;
1810
+ }
1811
+
1812
+ .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1813
+ .e-bigger .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-small .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-bigger .e-float-input.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1818
+ .e-bigger.e-small .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1819
+ .e-float-input.e-bigger.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1820
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1821
+ .e-bigger .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-small .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-bigger .e-float-input.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1826
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
1827
+ .e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text {
1828
+ color: $float-label-font-color;
1829
+ }
1830
+
1831
+ // Outline textbox
1832
+
1833
+ .e-outline.e-input-group,
1834
+ .e-outline.e-input-group.e-control-wrapper,
1835
+ .e-outline.e-float-input,
1836
+ .e-outline.e-float-input.e-input-group,
1837
+ .e-outline.e-float-input.e-control-wrapper,
1838
+ .e-outline.e-float-input.e-input-group.e-control-wrapper {
1839
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1840
+ color: $outline-input-font-color;
1841
+ }
1842
+ }
1843
+
1844
+ .e-outline.e-input-group.e-disabled,
1845
+ .e-outline.e-input-group.e-control-wrapper.e-disabled,
1846
+ .e-outline.e-float-input.e-disabled,
1847
+ .e-outline.e-float-input.e-input-group.e-disabled,
1848
+ .e-outline.e-float-input.e-control-wrapper.e-disabled,
1849
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-disabled {
1850
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1851
+ color: $outline-disabled-input-font-color;
1852
+ }
1853
+ }
1854
+
1855
+ .e-outline.e-input-group:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1856
+ .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),
1857
+ .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),
1858
+ .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),
1859
+ .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),
1860
+ .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),
1861
+ .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),
1862
+ .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) {
1863
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1864
+ border-color: $outline-hover-border-color;
1865
+ color: $outline-hover-font-color;
1866
+ }
1867
+ }
1868
+
1869
+ .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,
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::after,
1871
+ .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,
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::after,
1873
+ .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,
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::after,
1875
+ .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,
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::after,
1877
+ .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,
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::after,
1879
+ .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,
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::after,
1881
+ .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,
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::after,
1883
+ .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,
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::after {
1885
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1886
+ border-color: $outline-hover-border-color;
1887
+ }
1888
+ }
1889
+
1890
+ .e-outline.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
1891
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
1892
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1893
+ border-color: $input-active-border-color;
1894
+ box-shadow: inset 1px 1px $input-active-border-color, inset -1px 0 $input-active-border-color, inset 0 -1px $input-active-border-color;
1895
+ }
1896
+ }
1897
+
1898
+ .e-outline.e-input-group:not(.e-input-focus),
1899
+ .e-outline.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus),
1900
+ .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),
1901
+ .e-outline.e-input-group.e-float-icon-left:not(.e-input-focus),
1902
+ .e-outline.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-input-focus) {
1903
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1904
+ border-color: $outline-border-color;
1905
+ }
1906
+ }
1907
+
1908
+ .e-outline.e-input-group.e-error,
1909
+ .e-outline.e-input-group.e-control-wrapper.e-error,
1910
+ .e-outline.e-input-group.e-error:not(.e-float-icon-left),
1911
+ .e-outline.e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left),
1912
+ .e-outline.e-float-input.e-error,
1913
+ .e-outline.e-float-input.e-input-group.e-error,
1914
+ .e-outline.e-float-input.e-control-wrapper.e-error,
1915
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-error {
1916
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1917
+ border-color: $input-error-color;
1918
+ }
1919
+ }
1920
+
1921
+ .e-outline.e-float-input.e-success.e-input-focus,
1922
+ .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus,
1923
+ .e-outline.e-float-input.e-input-group.e-success.e-input-focus,
1924
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-success.e-input-focus,
1925
+ .e-outline.e-float-input.e-input-group.e-success.e-input-focus:not(.e-float-icon-left),
1926
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-success.e-input-focus:not(.e-float-icon-left),
1927
+ .e-outline.e-float-input.e-warning.e-input-focus,
1928
+ .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus,
1929
+ .e-outline.e-float-input.e-input-group.e-warning.e-input-focus,
1930
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-warning.e-input-focus,
1931
+ .e-outline.e-float-input.e-input-group.e-warning.e-input-focus:not(.e-float-icon-left),
1932
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-warning.e-input-focus:not(.e-float-icon-left),
1933
+ .e-outline.e-float-input.e-error.e-input-focus,
1934
+ .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus,
1935
+ .e-outline.e-float-input.e-input-group.e-error.e-input-focus,
1936
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-error.e-input-focus,
1937
+ .e-outline.e-float-input.e-input-group.e-error.e-input-focus:not(.e-float-icon-left),
1938
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-error.e-input-focus:not(.e-float-icon-left) {
1939
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1940
+ border-top-color: transparent;
1941
+ }
1942
+ }
1943
+
1944
+ .e-outline.e-input-group.e-success,
1945
+ .e-outline.e-input-group.e-control-wrapper.e-success,
1946
+ .e-outline.e-input-group.e-success:not(.e-float-icon-left),
1947
+ .e-outline.e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left),
1948
+ .e-outline.e-float-input.e-success,
1949
+ .e-outline.e-float-input.e-input-group.e-success,
1950
+ .e-outline.e-float-input.e-control-wrapper.e-success,
1951
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-success {
1952
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1953
+ border-color: $input-success-color;
1954
+ }
1955
+ }
1956
+
1957
+ .e-outline.e-input-group.e-warning,
1958
+ .e-outline.e-input-group.e-control-wrapper.e-warning,
1959
+ .e-outline.e-input-group.e-warning:not(.e-float-icon-left),
1960
+ .e-outline.e-input-group.e-control-wrapper.e-warning:not(.e-float-icon-left),
1961
+ .e-outline.e-float-input.e-warning,
1962
+ .e-outline.e-float-input.e-input-group.e-warning,
1963
+ .e-outline.e-float-input.e-control-wrapper.e-warning,
1964
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-warning {
1965
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1966
+ border-color: $input-warning-color;
1967
+ }
1968
+ }
1969
+
1970
+ .e-outline.e-input-group.e-input-focus.e-error:not(.e-success):not(.e-warning),
1971
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus.e-error:not(.e-success):not(.e-warning) {
1972
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1973
+ box-shadow: inset 1px 1px $input-error-color, inset -1px $zero-value $input-error-color, inset $zero-value -1px $input-error-color;
1974
+ }
1975
+ }
1976
+
1977
+ .e-outline.e-input-group.e-input-focus.e-success:not(.e-error):not(.e-warning),
1978
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus.e-success:not(.e-error):not(.e-warning) {
1979
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1980
+ box-shadow: inset 1px 1px $input-success-color, inset -1px $zero-value $input-success-color, inset $zero-value -1px $input-success-color;
1981
+ }
1982
+ }
1983
+
1984
+ .e-outline.e-input-group.e-input-focus.e-warning:not(.e-error):not(.e-success),
1985
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus.e-warning:not(.e-error):not(.e-success) {
1986
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1987
+ box-shadow: inset 1px 1px $input-warning-color, inset -1px $zero-value $input-warning-color, inset $zero-value -1px $input-warning-color;
1988
+ }
1989
+ }
1990
+
1991
+ .e-outline.e-float-input.e-input-focus.e-error:not(.e-success):not(.e-warning),
1992
+ .e-outline.e-float-input.e-control-wrapper.e-input-focus.e-error:not(.e-success):not(.e-warning),
1993
+ .e-outline.e-float-input.e-input-group.e-input-focus.e-error:not(.e-success):not(.e-warning),
1994
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-input-focus.e-error:not(.e-success):not(.e-warning) {
1995
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
1996
+ box-shadow: inset 1px $zero-value $input-error-color, inset -1px $zero-value $input-error-color, inset $zero-value -1px $input-error-color;
1997
+ }
1998
+ }
1999
+
2000
+ .e-outline.e-float-input.e-input-focus.e-success:not(.e-error):not(.e-warning),
2001
+ .e-outline.e-float-input.e-control-wrapper.e-input-focus.e-success:not(.e-error):not(.e-warning),
2002
+ .e-outline.e-float-input.e-input-group.e-input-focus.e-success:not(.e-error):not(.e-warning),
2003
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-input-focus.e-success:not(.e-error):not(.e-warning) {
2004
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2005
+ box-shadow: inset 1px $zero-value $input-success-color, inset -1px $zero-value $input-success-color, inset $zero-value -1px $input-success-color;
2006
+ }
2007
+ }
2008
+
2009
+ .e-outline.e-float-input.e-input-focus.e-warning:not(.e-error):not(.e-success),
2010
+ .e-outline.e-float-input.e-control-wrapper.e-input-focus.e-warning:not(.e-error):not(.e-success),
2011
+ .e-outline.e-float-input.e-input-group.e-input-focus.e-warning:not(.e-error):not(.e-success),
2012
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-input-focus.e-warning:not(.e-error):not(.e-success) {
2013
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2014
+ box-shadow: inset 1px $zero-value $input-warning-color, inset -1px $zero-value $input-warning-color, inset $zero-value -1px $input-warning-color;
2015
+ }
2016
+ }
2017
+
2018
+ .e-outline.e-input-group.e-disabled:not(.e-input-focus),
2019
+ .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),
2020
+ .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),
2021
+ .e-outline.e-input-group.e-disabled.e-float-icon-left:not(.e-input-focus),
2022
+ .e-outline.e-input-group.e-disabled.e-control-wrapper.e-float-icon-left:not(.e-input-focus) {
2023
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2024
+ border-color: $outline-disabled-border-color;
2025
+ }
2026
+ }
2027
+
2028
+ .e-outline.e-float-input.e-success.e-input-focus input:focus ~ label.e-float-text,
2029
+ .e-outline.e-float-input.e-input-group.e-success.e-valid-input label.e-float-text.e-label-top,
2030
+ .e-outline.e-float-input.e-bigger.e-success.e-input-focus input:focus ~ label.e-float-text,
2031
+ .e-bigger .e-outline.e-float-input.e-success.e-input-focus input:focus ~ label.e-float-text,
2032
+ .e-outline.e-float-input.e-small.e-success.e-input-focus input:focus ~ label.e-float-text,
2033
+ .e-small .e-outline.e-float-input.e-success input:focus ~ label.e-float-text,
2034
+ .e-outline.e-float-input.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
2035
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-success) input:focus ~ label.e-float-text,
2036
+ .e-outline.e-float-input.e-success textarea:focus ~ label.e-float-text,
2037
+ .e-outline.e-float-input.e-bigger.e-success textarea:focus ~ label.e-float-text,
2038
+ .e-bigger .e-outline.e-float-input.e-success textarea:focus ~ label.e-float-text,
2039
+ .e-outline.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
2040
+ .e-small .e-outline.e-float-input.e-success textarea:focus ~ label.e-float-text,
2041
+ .e-outline.e-float-input.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
2042
+ .e-bigger .e-outline.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
2043
+ .e-outline.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2044
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-success input:focus ~ label.e-float-text,
2045
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2046
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
2047
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2048
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
2049
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
2050
+ .e-outline.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2051
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-success textarea:focus ~ label.e-float-text,
2052
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2053
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
2054
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2055
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
2056
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
2057
+ .e-outline.e-float-input.e-success label.e-float-text.e-label-top,
2058
+ .e-outline.e-float-input.e-input-group.e-success label.e-float-text.e-label-top,
2059
+ .e-outline.e-float-input.e-control-wrapper.e-success label.e-float-text.e-label-top,
2060
+ .e-outline.e-float-input.e-valid-input.e-success:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
2061
+ .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,
2062
+ .e-outline.e-float-input.e-valid-input.e-success:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
2063
+ .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,
2064
+ .e-outline.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2065
+ .e-outline.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2066
+ .e-bigger .e-outline.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2067
+ .e-outline.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
2068
+ .e-small .e-outline.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2069
+ .e-outline.e-float-input.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2070
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-success).e-input-focus input ~ label.e-float-text,
2071
+ .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
2072
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2073
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
2074
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text,
2075
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
2076
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2077
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text {
2078
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2079
+ color: $input-success-color;
2080
+ }
2081
+ }
2082
+
2083
+ .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
2084
+ .e-outline.e-float-input.e-input-group.e-error.e-valid-input label.e-label-top.e-float-text,
2085
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input:focus ~ label.e-float-text,
2086
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
2087
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input:focus ~ label.e-float-text,
2088
+ .e-small .e-outline.e-float-input.e-error input:focus ~ label.e-float-text,
2089
+ .e-outline.e-float-input.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
2090
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2091
+ .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
2092
+ .e-outline.e-float-input.e-bigger.e-error textarea:focus ~ label.e-float-text,
2093
+ .e-bigger .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
2094
+ .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
2095
+ .e-small .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
2096
+ .e-outline.e-float-input.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
2097
+ .e-bigger .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
2098
+ .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2099
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error input:focus ~ label.e-float-text,
2100
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2101
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
2102
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2103
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
2104
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
2105
+ .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2106
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error textarea:focus ~ label.e-float-text,
2107
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2108
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
2109
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2110
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
2111
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
2112
+ .e-outline.e-float-input.e-error label.e-float-text.e-label-top,
2113
+ .e-outline.e-float-input.e-input-group.e-error label.e-float-text.e-label-top,
2114
+ .e-outline.e-float-input.e-control-wrapper.e-error label.e-float-text.e-label-top,
2115
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
2116
+ .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,
2117
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
2118
+ .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,
2119
+ .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2120
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2121
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2122
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input ~ label.e-float-text,
2123
+ .e-small .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2124
+ .e-outline.e-float-input.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2125
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2126
+ .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
2127
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2128
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
2129
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text,
2130
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
2131
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2132
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text {
2133
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2134
+ color: $input-error-color;
2135
+ }
2136
+ }
2137
+
2138
+ .e-outline.e-float-input.e-warning.e-input-focus input:focus ~ label.e-float-text,
2139
+ .e-outline.e-float-input.e-input-group.e-warning.e-valid-input label.e-label-top.e-float-text,
2140
+ .e-outline.e-float-input.e-bigger.e-warning.e-input-focus input:focus ~ label.e-float-text,
2141
+ .e-bigger .e-outline.e-float-input.e-warning.e-input-focus input:focus ~ label.e-float-text,
2142
+ .e-outline.e-float-input.e-small.e-warning.e-input-focus input:focus ~ label.e-float-text,
2143
+ .e-small .e-outline.e-float-input.e-warning input:focus ~ label.e-float-text,
2144
+ .e-outline.e-float-input.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
2145
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-warning) input:focus ~ label.e-float-text,
2146
+ .e-outline.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2147
+ .e-outline.e-float-input.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2148
+ .e-bigger .e-outline.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2149
+ .e-outline.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
2150
+ .e-small .e-outline.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2151
+ .e-outline.e-float-input.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2152
+ .e-bigger .e-outline.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
2153
+ .e-outline.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2154
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-warning input:focus ~ label.e-float-text,
2155
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2156
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
2157
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2158
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
2159
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
2160
+ .e-outline.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2161
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2162
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2163
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
2164
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2165
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2166
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
2167
+ .e-outline.e-float-input.e-warning label.e-float-text.e-label-top,
2168
+ .e-outline.e-float-input.e-input-group.e-warning label.e-float-text.e-label-top,
2169
+ .e-outline.e-float-input.e-control-wrapper.e-warning label.e-float-text.e-label-top,
2170
+ .e-outline.e-float-input.e-valid-input.e-warning:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
2171
+ .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,
2172
+ .e-outline.e-float-input.e-valid-input.e-warning:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
2173
+ .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,
2174
+ .e-outline.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2175
+ .e-outline.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2176
+ .e-bigger .e-outline.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2177
+ .e-outline.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
2178
+ .e-small .e-outline.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2179
+ .e-outline.e-float-input.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2180
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-warning).e-input-focus input ~ label.e-float-text,
2181
+ .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
2182
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2183
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
2184
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text,
2185
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
2186
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2187
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text {
2188
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2189
+ color: $input-warning-color;
2190
+ }
2191
+ }
2192
+
2193
+ .e-outline.e-float-input.e-input-group.e-valid-input.e-input-focus label.e-label-top,
2194
+ .e-outline.e-float-input.e-input-group.e-input-focus label.e-label-top,
2195
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-valid-input.e-input-focus label.e-label-top,
2196
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-input-focus label.e-label-top {
2197
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2198
+ color: $input-active-border-color;
2199
+ }
2200
+ }
2201
+
2202
+ .e-outline.e-input[disabled],
2203
+ .e-outline.e-input-group .e-input[disabled],
2204
+ .e-outline.e-input-group.e-control-wrapper .e-input[disabled],
2205
+ .e-outline.e-input-group.e-disabled,
2206
+ .e-outline.e-input-group.e-control-wrapper.e-disabled,
2207
+ .e-outline.e-float-input input[disabled],
2208
+ .e-outline.e-float-input.e-control-wrapper input[disabled],
2209
+ .e-outline.e-float-input textarea[disabled],
2210
+ .e-outline.e-float-input.e-control-wrapper textarea[disabled],
2211
+ .e-outline.e-float-input.e-disabled,
2212
+ .e-outline.e-float-input.e-control-wrapper.e-disabled,
2213
+ .e-outline.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
2214
+ .e-outline.e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap,
2215
+ .e-outline.e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
2216
+ .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 {
2217
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2218
+ background-image: none;
2219
+ border-bottom-color: $outline-disabled-border-color;
2220
+ border-color: $outline-disabled-border-color;
2221
+ }
2222
+ }
2223
+
2224
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-input-focus),
2225
+ .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),
2226
+ .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) {
2227
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2228
+ border-top-color: transparent;
2229
+ }
2230
+ }
2231
+
2232
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2233
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::after,
2234
+ .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,
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::after,
2236
+ .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,
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::after,
2238
+ .e-outline.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2239
+ .e-outline.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::after,
2240
+ .e-outline.e-disabled.e-float-input.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2241
+ .e-outline.e-disabled.e-float-input.e-valid-input:not(.e-input-focus) label.e-float-text::after,
2242
+ .e-outline.e-disabled.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2243
+ .e-outline.e-disabled.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) label.e-float-text::after {
2244
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2245
+ border-color: $outline-disabled-border-color;
2246
+ }
2247
+ }
2248
+
2249
+ .e-outline.e-float-input.e-input-group.e-disabled .e-float-text,
2250
+ .e-outline.e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
2251
+ .e-outline.e-float-input input[disabled] ~ label.e-float-text,
2252
+ .e-outline.e-float-input input[disabled] ~ label.e-label-top.e-float-text,
2253
+ .e-outline.e-float-input.e-disabled label.e-float-text,
2254
+ .e-outline.e-float-input.e-disabled label.e-float-text.e-label-top,
2255
+ .e-outline.e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
2256
+ .e-outline.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2257
+ .e-outline.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2258
+ .e-outline.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2259
+ .e-outline.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2260
+ .e-outline.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2261
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2262
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
2263
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2264
+ color: $outline-float-label-disbale-font-color;
2265
+ }
2266
+ }
2267
+
2268
+ .e-outline.e-float-input textarea[disabled] ~ label.e-float-text,
2269
+ .e-outline.e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
2270
+ .e-outline.e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
2271
+ .e-outline.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2272
+ .e-outline.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2273
+ .e-outline.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2274
+ .e-outline.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2275
+ .e-outline.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2276
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2277
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
2278
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2279
+ color: $outline-float-label-disbale-font-color;
2280
+ }
2281
+ }
2282
+
2283
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
2284
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
2285
+ .e-outline.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
2286
+ .e-outline.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
2287
+ .e-outline.e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
2288
+ .e-outline.e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
2289
+ .e-outline.e-float-input.e-control-wrapper.e-disabled label.e-float-text,
2290
+ .e-outline.e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
2291
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
2292
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2293
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2294
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2295
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2296
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2297
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2298
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2299
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
2300
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2301
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.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.e-label-top,
2303
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2304
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2305
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2306
+ .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 {
2307
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2308
+ color: $outline-float-label-disbale-font-color;
2309
+ }
2310
+ }
2311
+
2312
+ .e-outline.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
2313
+ .e-outline.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
2314
+ .e-outline.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
2315
+ .e-outline.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
2316
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
2317
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2318
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2319
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2320
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2321
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2322
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2323
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2324
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
2325
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2326
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.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.e-label-top,
2328
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2329
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2330
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2331
+ .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 {
2332
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2333
+ color: $outline-float-label-disbale-font-color;
2334
+ }
2335
+ }
2336
+
2337
+ .e-outline.e-input-group.e-disabled .e-input-group-icon,
2338
+ .e-outline.e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
2339
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2340
+ color: $outline-input-group-disabled-color;
2341
+ }
2342
+ }
2343
+
2344
+ // Outline input clear icon
2345
+
2346
+ .e-outline.e-float-input:not(.e-disabled) .e-clear-icon:hover,
2347
+ .e-outline.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover,
2348
+ .e-outline.e-input-group:not(.e-disabled) .e-clear-icon:hover,
2349
+ .e-outline.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover {
2350
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2351
+ color: $outline-input-clear-icon-hover-color;
2352
+ }
2353
+ }
2354
+
2355
+ .e-outline.e-float-input:not(.e-disabled) .e-clear-icon:active,
2356
+ .e-outline.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:active,
2357
+ .e-outline.e-input-group:not(.e-disabled) .e-clear-icon:active,
2358
+ .e-outline.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:active {
2359
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2360
+ color: $outline-input-clear-icon-active-color;
2361
+ }
2362
+ }
2363
+
2364
+ // Filled input background color changes
2365
+
2366
+ .e-filled.e-input-group,
2367
+ .e-filled.e-input-group.e-control-wrapper,
2368
+ .e-filled.e-float-input,
2369
+ .e-filled.e-float-input.e-input-group,
2370
+ .e-filled.e-float-input.e-control-wrapper,
2371
+ .e-filled.e-float-input.e-input-group.e-control-wrapper {
2372
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2373
+ background: $filled-input-bg-color;
2374
+ transition: $background-color-transition;
2375
+ }
2376
+ }
2377
+
2378
+ .e-filled.e-input-group:hover,
2379
+ .e-filled.e-input-group.e-control-wrapper:hover,
2380
+ .e-filled.e-float-input:hover,
2381
+ .e-filled.e-float-input.e-input-group:hover,
2382
+ .e-filled.e-float-input.e-control-wrapper:hover,
2383
+ .e-filled.e-float-input.e-input-group.e-control-wrapper:hover {
2384
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2385
+ background: $filled-input-overlay-focused-bg-color;
2386
+ transition: $background-color-transition;
2387
+ }
2388
+ }
2389
+
2390
+ .e-filled.e-input-group.e-input-focus,
2391
+ .e-filled.e-input-group.e-control-wrapper.e-input-focus,
2392
+ .e-filled.e-float-input.e-input-focus,
2393
+ .e-filled.e-float-input.e-input-group.e-input-focus,
2394
+ .e-filled.e-float-input.e-control-wrapper.e-input-focus,
2395
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-input-focus,
2396
+ .e-filled.e-input-group:hover.e-input-focus,
2397
+ .e-filled.e-input-group:hover.e-control-wrapper.e-input-focus,
2398
+ .e-filled.e-float-input:hover.e-input-focus,
2399
+ .e-filled.e-float-input:hover.e-input-group.e-input-focus,
2400
+ .e-filled.e-float-input:hover.e-control-wrapper.e-input-focus,
2401
+ .e-filled.e-float-input:hover.e-input-group.e-control-wrapper.e-input-focus {
2402
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2403
+ background: $filled-input-overlay-activated-bg-color;
2404
+ transition: $background-color-transition;
2405
+ }
2406
+ }
2407
+
2408
+ // Filled input border color changes
2409
+
2410
+ .e-filled.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2411
+ .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),
2412
+ .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),
2413
+ .e-filled.e-float-input: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-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
2415
+ .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) {
2416
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2417
+ border-color: $filled-input-hover-border-color;
2418
+ }
2419
+ }
2420
+
2421
+ .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),
2422
+ .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),
2423
+ .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),
2424
+ .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),
2425
+ .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),
2426
+ .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) {
2427
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2428
+ border-color: $filled-input-hover-border-color;
2429
+ }
2430
+ }
2431
+
2432
+ .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),
2433
+ .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),
2434
+ .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),
2435
+ .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),
2436
+ .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),
2437
+ .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) {
2438
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2439
+ border-color: $filled-input-hover-border-color;
2440
+ }
2441
+ }
2442
+
2443
+ .e-filled.e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error),
2444
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) {
2445
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2446
+ border-color: $input-group-full-border-color;
2447
+ }
2448
+ }
2449
+
2450
+ .e-filled.e-float-input:not(.e-success):not(.e-warning):not(.e-error),
2451
+ .e-filled.e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) {
2452
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2453
+ border-color: $input-group-full-border-color;
2454
+ }
2455
+ }
2456
+
2457
+ .e-filled.e-float-input.e-success,
2458
+ .e-filled.e-float-input.e-control-wrapper.e-success,
2459
+ .e-filled.e-input-group.e-float-icon-left.e-success,
2460
+ .e-filled.e-input-group.e-float-icon-left.e-control-wrapper.e-success {
2461
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2462
+ @include input-state-color ($input-success-color);
2463
+ }
2464
+ }
2465
+
2466
+ .e-filled.e-float-input.e-warning,
2467
+ .e-filled.e-float-input.e-control-wrapper.e-warning,
2468
+ .e-filled.e-input-group.e-float-icon-left.e-warning,
2469
+ .e-filled.e-input-group.e-float-icon-left.e-control-wrapper.e-warning {
2470
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2471
+ @include input-state-color ($input-warning-color);
2472
+ }
2473
+ }
2474
+
2475
+ .e-filled.e-float-input.e-error,
2476
+ .e-filled.e-float-input.e-control-wrapper.e-error,
2477
+ .e-filled.e-input-group.e-float-icon-left.e-error,
2478
+ .e-filled.e-input-group.e-float-icon-left.e-control-wrapper.e-error {
2479
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2480
+ @include input-state-color ($input-error-color);
2481
+ }
2482
+ }
2483
+
2484
+ // Filled input floating label color configuration
2485
+
2486
+ .e-filled label.e-float-text,
2487
+ .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2488
+ .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,
2489
+ .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,
2490
+ .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,
2491
+ .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,
2492
+ .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,
2493
+ .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,
2494
+ .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,
2495
+ .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,
2496
+ .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,
2497
+ .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,
2498
+ .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,
2499
+ .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,
2500
+ .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 {
2501
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2502
+ color: $filled-input-float-label-color;
2503
+ }
2504
+ }
2505
+
2506
+ .e-filled.e-float-input.e-error label.e-float-text,
2507
+ .e-filled.e-float-input.e-control-wrapper.e-error label.e-float-text,
2508
+ .e-filled.e-float-input.e-error input:focus ~ label.e-float-text,
2509
+ .e-filled.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2510
+ .e-filled.e-float-input.e-error textarea:focus ~ label.e-float-text,
2511
+ .e-filled.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2512
+ .e-filled.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2513
+ .e-filled.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text {
2514
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2515
+ color: $input-error-color;
2516
+ }
2517
+ }
2518
+
2519
+ .e-filled.e-float-input.e-success label.e-float-text,
2520
+ .e-filled.e-float-input.e-control-wrapper.e-success label.e-float-text,
2521
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
2522
+ .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2523
+ .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
2524
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2525
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2526
+ .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text {
2527
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2528
+ color: $input-success-color;
2529
+ }
2530
+ }
2531
+
2532
+ .e-filled.e-float-input.e-warning label.e-float-text,
2533
+ .e-filled.e-float-input.e-control-wrapper.e-warning label.e-float-text,
2534
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
2535
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2536
+ .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2537
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2538
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2539
+ .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text {
2540
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2541
+ color: $input-warning-color;
2542
+ }
2543
+ }
2544
+
2545
+ .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2546
+ .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2547
+ .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2548
+ .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2549
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2550
+ .e-filled.e-float-input:not(.e-error) input label.e-float-text.e-label-top,
2551
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2552
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2553
+ .e-filled.e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2554
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2555
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2556
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2557
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2558
+ .e-bigger .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2559
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2560
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2561
+ .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2562
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2563
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
2564
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2565
+ color: $filled-input-float-label-color;
2566
+ }
2567
+ }
2568
+
2569
+ .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2570
+ .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2571
+ .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2572
+ .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2573
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2574
+ .e-filled.e-float-input:not(.e-error) input label.e-float-text.e-label-top,
2575
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2576
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2577
+ .e-filled.e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2578
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2579
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2580
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2581
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2582
+ .e-bigger .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2583
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2584
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2585
+ .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2586
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2587
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
2588
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2589
+ color: $filled-input-float-label-color;
2590
+ }
2591
+ }
2592
+
2593
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2594
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
2595
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
2596
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2597
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2598
+ .e-filled.e-float-input .e-control-wrapper:not(.e-error) input label.e-float-text.e-label-top,
2599
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2600
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2601
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2602
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2603
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2604
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2605
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
2606
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
2607
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2608
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2609
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2610
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2611
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text {
2612
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2613
+ color: $filled-input-float-label-color;
2614
+ }
2615
+ }
2616
+
2617
+ .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2618
+ .e-filled.e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
2619
+ .e-filled.e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2620
+ .e-filled.e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
2621
+ .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2622
+ .e-small .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2623
+ .e-small .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2624
+ .e-small .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2625
+ .e-small .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
2626
+ .e-small .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2627
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2628
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2629
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2630
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2631
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2632
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2633
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
2634
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2635
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2636
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2637
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2638
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2639
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2640
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
2641
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2642
+ color: $filled-input-float-label-color;
2643
+ }
2644
+ }
2645
+
2646
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2647
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
2648
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2649
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
2650
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2651
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2652
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
2653
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
2654
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
2655
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2656
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2657
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2658
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2659
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2660
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2661
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2662
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
2663
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2664
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2665
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2666
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2667
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2668
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2669
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
2670
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2671
+ color: $filled-input-float-label-color;
2672
+ }
2673
+ }
2674
+
2675
+ .e-filled.e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2676
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2677
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2678
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2679
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2680
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2681
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2682
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2683
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2684
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2685
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2686
+ .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,
2687
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2688
+ .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 {
2689
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2690
+ color: $filled-input-float-label-color;
2691
+ }
2692
+ }
2693
+
2694
+ .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),
2695
+ .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
2696
+ .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) {
2697
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2698
+ color: $filled-input-float-label-color;
2699
+ }
2700
+ }
2701
+
2702
+ .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2703
+ .e-filled.e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
2704
+ .e-filled.e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2705
+ .e-filled.e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2706
+ .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2707
+ .e-filled.e-float-input:not(.e-error) textarea label.e-float-text.e-label-top,
2708
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2709
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2710
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2711
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2712
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2713
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2714
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
2715
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2716
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2717
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2718
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2719
+ color: $filled-input-float-label-color;
2720
+ }
2721
+ }
2722
+
2723
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2724
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
2725
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2726
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2727
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2728
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea label.e-float-text.e-label-top,
2729
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2730
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2731
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2732
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2733
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2734
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2735
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
2736
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2737
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2738
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2739
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2740
+ color: $filled-input-float-label-color;
2741
+ }
2742
+ }
2743
+
2744
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2745
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2746
+ .e-filled.e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2747
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
2748
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2749
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2750
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
2751
+ .e-small .e-filled.e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2752
+ .e-small .e-filled.e-float-input:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
2753
+ .e-small .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2754
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2755
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2756
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2757
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2758
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2759
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2760
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2761
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2762
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2763
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2764
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2765
+ color: $filled-input-float-label-color;
2766
+ }
2767
+ }
2768
+
2769
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2770
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2771
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2772
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
2773
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2774
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2775
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
2776
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2777
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
2778
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2779
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2780
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2781
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2782
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2783
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2784
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2785
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2786
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2787
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2788
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2789
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2790
+ color: $filled-input-float-label-color;
2791
+ }
2792
+ }
2793
+
2794
+ .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2795
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2796
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2797
+ .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2798
+ .e-small .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2799
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2800
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2801
+ .e-filled.e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2802
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2803
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2804
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2805
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2806
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2807
+ .e-filled.e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
2808
+ .e-small .e-filled.e-float-input:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
2809
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2810
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2811
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
2812
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
2813
+ .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,
2814
+ .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,
2815
+ .e-filled.e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2816
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2817
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2818
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2819
+ .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,
2820
+ .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,
2821
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
2822
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
2823
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2824
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2825
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
2826
+ .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,
2827
+ .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,
2828
+ .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,
2829
+ .e-filled.e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2830
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2831
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2832
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2833
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2834
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2835
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
2836
+ .e-small .e-filled.e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
2837
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2838
+ .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,
2839
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
2840
+ .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,
2841
+ .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,
2842
+ .e-filled.e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2843
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2844
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2845
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2846
+ .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,
2847
+ .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,
2848
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
2849
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
2850
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2851
+ .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,
2852
+ .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,
2853
+ .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,
2854
+ .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,
2855
+ .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2856
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2857
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2858
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2859
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2860
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2861
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2862
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2863
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2864
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2865
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2866
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2867
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2868
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2869
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2870
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2871
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2872
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2873
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2874
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2875
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2876
+ .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2877
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2878
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2879
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2880
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2881
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2882
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2883
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2884
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2885
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2886
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2887
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2888
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2889
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
2890
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2891
+ color: $input-active-accent-color;
2892
+ }
2893
+ }
2894
+
2895
+ .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2896
+ .e-bigger .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-small .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-bigger .e-filled.e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
2901
+ .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,
2902
+ .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,
2903
+ .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,
2904
+ .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,
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-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,
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-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,
2909
+ .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,
2910
+ .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 {
2911
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2912
+ color: $filled-input-float-label-color;
2913
+ }
2914
+ }
2915
+
2916
+ .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2917
+ .e-bigger .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-small .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-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2922
+ .e-bigger.e-small .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2923
+ .e-filled.e-float-input.e-bigger.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2924
+ .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
2925
+ .e-bigger .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-small .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-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,
2930
+ .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,
2931
+ .e-filled.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill ~ label.e-float-text {
2932
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2933
+ color: $filled-input-float-label-color;
2934
+ }
2935
+ }
2936
+
2937
+
2938
+ input.e-filled.e-input#{$css}:-moz-placeholder {
2939
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2940
+ color: $filled-input-float-label-color;
2941
+ }
2942
+ }
2943
+
2944
+
2945
+ .e-input-group.e-filled input.e-input:-moz-placeholder {
2946
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2947
+ color: $filled-input-float-label-color;
2948
+ }
2949
+ }
2950
+
2951
+
2952
+ .e-input-group.e-filled input.e-input:-moz-placeholder,
2953
+ .e-input-group.e-filled.e-control-wrapper input.e-input:-moz-placeholder {
2954
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2955
+ color: $filled-input-float-label-color;
2956
+ }
2957
+ }
2958
+
2959
+
2960
+ input.e-filled.e-input#{$css}:-moz-placeholder {
2961
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2962
+ color: $filled-input-float-label-color;
2963
+ }
2964
+ }
2965
+
2966
+
2967
+ .e-input-group.e-filled input.e-input:-moz-placeholder {
2968
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2969
+ color: $filled-input-float-label-color;
2970
+ }
2971
+ }
2972
+
2973
+
2974
+ .e-input-group.e-filled.e-control-wrapper input.e-input:-moz-placeholder {
2975
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2976
+ color: $filled-input-float-label-color;
2977
+ }
2978
+ }
2979
+
2980
+
2981
+ textarea.e-filled.e-input#{$css}:-moz-placeholder {
2982
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2983
+ color: $filled-input-float-label-color;
2984
+ }
2985
+ }
2986
+
2987
+
2988
+ .e-input-group.e-filled textarea.e-input:-moz-placeholder {
2989
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2990
+ color: $filled-input-float-label-color;
2991
+ }
2992
+ }
2993
+
2994
+
2995
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input:-moz-placeholder {
2996
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
2997
+ color: $filled-input-float-label-color;
2998
+ }
2999
+ }
3000
+
3001
+
3002
+ input.e-filled.e-input#{$css}::-moz-placeholder {
3003
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3004
+ color: $filled-input-float-label-color;
3005
+ }
3006
+ }
3007
+
3008
+
3009
+ .e-input-group.e-filled input.e-input::-moz-placeholder {
3010
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3011
+ color: $filled-input-float-label-color;
3012
+ }
3013
+ }
3014
+
3015
+
3016
+ .e-input-group.e-filled.e-control-wrapper input.e-input::-moz-placeholder {
3017
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3018
+ color: $filled-input-float-label-color;
3019
+ }
3020
+ }
3021
+
3022
+
3023
+ textarea.e-filled.e-input#{$css}::-moz-placeholder {
3024
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3025
+ color: $filled-input-float-label-color;
3026
+ }
3027
+ }
3028
+
3029
+
3030
+ .e-input-group.e-filled textarea.e-input::-moz-placeholder {
3031
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3032
+ color: $filled-input-float-label-color;
3033
+ }
3034
+ }
3035
+
3036
+
3037
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input::-moz-placeholder {
3038
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3039
+ color: $filled-input-float-label-color;
3040
+ }
3041
+ }
3042
+
3043
+
3044
+ input.e-filled.e-input#{$css}:-ms-input-placeholder {
3045
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3046
+ color: $filled-input-float-label-color;
3047
+ }
3048
+ }
3049
+
3050
+
3051
+ .e-input-group.e-filled input.e-input:-ms-input-placeholder {
3052
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3053
+ color: $filled-input-float-label-color;
3054
+ }
3055
+ }
3056
+
3057
+
3058
+ .e-input-group.e-filled.e-control-wrapper input.e-input:-ms-input-placeholder {
3059
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3060
+ color: $filled-input-float-label-color;
3061
+ }
3062
+ }
3063
+
3064
+
3065
+ textarea.e-filled.e-input#{$css}:-ms-input-placeholder {
3066
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3067
+ color: $filled-input-float-label-color;
3068
+ }
3069
+ }
3070
+
3071
+
3072
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input:-ms-input-placeholder {
3073
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3074
+ color: $filled-input-float-label-color;
3075
+ }
3076
+ }
3077
+
3078
+
3079
+ .e-input-group textarea.e-input:-ms-input-placeholder {
3080
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3081
+ color: $input-placeholder-color;
3082
+ }
3083
+ }
3084
+
3085
+
3086
+ .e-input-group textarea.e-input:-moz-placeholder {
3087
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3088
+ color: $input-placeholder-color;
3089
+ }
3090
+ }
3091
+
3092
+
3093
+ .e-input-group .e-input:-ms-input-placeholder {
3094
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3095
+ color: $input-placeholder-color;
3096
+ }
3097
+ }
3098
+
3099
+
3100
+ input.e-input#{$css}::-webkit-input-placeholder {
3101
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3102
+ color: $input-placeholder-color;
3103
+ }
3104
+ }
3105
+
3106
+
3107
+ .e-input-group.e-filled textarea.e-input:-ms-input-placeholder {
3108
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3109
+ color: $filled-input-float-label-color;
3110
+ }
3111
+ }
3112
+
3113
+
3114
+ input.e-filled.e-input#{$css}::-webkit-input-placeholder {
3115
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3116
+ color: $filled-input-float-label-color;
3117
+ }
3118
+ }
3119
+
3120
+
3121
+ .e-input-group.e-filled.e-control-wrapper input.e-input::-webkit-input-placeholder {
3122
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3123
+ color: $filled-input-float-label-color;
3124
+ }
3125
+ }
3126
+
3127
+
3128
+ .e-input-group.e-filled input.e-input::-webkit-input-placeholder {
3129
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3130
+ color: $filled-input-float-label-color;
3131
+ }
3132
+ }
3133
+
3134
+
3135
+ textarea.e-filled.e-input#{$css}::-webkit-input-placeholder {
3136
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3137
+ color: $filled-input-float-label-color;
3138
+ }
3139
+ }
3140
+
3141
+
3142
+ .e-input-group.e-filled textarea.e-input::-webkit-input-placeholder {
3143
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3144
+ color: $filled-input-float-label-color;
3145
+ }
3146
+ }
3147
+
3148
+
3149
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
3150
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3151
+ color: $filled-input-float-label-color;
3152
+ }
3153
+ }
3154
+
3155
+ // Filled input clear icon states
3156
+
3157
+ .e-filled.e-float-input:not(.e-disabled) .e-clear-icon:hover,
3158
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover,
3159
+ .e-filled.e-input-group:not(.e-disabled) .e-clear-icon:hover,
3160
+ .e-filled.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover {
3161
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3162
+ color: $filled-input-clear-icon-hover-color;
3163
+ }
3164
+ }
3165
+
3166
+ .e-filled.e-float-input:not(.e-disabled) .e-clear-icon:active,
3167
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:active,
3168
+ .e-filled.e-input-group:not(.e-disabled) .e-clear-icon:active,
3169
+ .e-filled.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:active {
3170
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3171
+ color: $filled-input-clear-icon-active-color;
3172
+ }
3173
+ }
3174
+
3175
+ // Filled input disabled configuration
3176
+
3177
+ .e-filled.e-float-input.e-disabled .e-clear-icon,
3178
+ .e-filled.e-float-input.e-control-wrapper.e-disabled .e-clear-icon,
3179
+ .e-input-group.e-filled.e-disabled .e-clear-icon,
3180
+ .e-input-group.e-filled.e-control-wrapper.e-disabled .e-clear-icon,
3181
+ .e-input-group.e-filled.e-disabled .e-input-group-icon,
3182
+ .e-input-group.e-filled.e-control-wrapper.e-disabled .e-input-group-icon {
3183
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3184
+ color: $filled-input-disabled-font-color;
3185
+ }
3186
+ }
3187
+
3188
+ .e-filled.e-input#{$css}[disabled],
3189
+ .e-input-group.e-filled .e-input[disabled],
3190
+ .e-input-group.e-filled.e-control-wrapper .e-input[disabled],
3191
+ .e-input-group.e-filled.e-disabled,
3192
+ .e-input-group.e-filled.e-control-wrapper.e-disabled,
3193
+ .e-filled.e-float-input input[disabled],
3194
+ .e-filled.e-float-input.e-control-wrapper input[disabled],
3195
+ .e-filled.e-float-input textarea[disabled],
3196
+ .e-filled.e-float-input.e-control-wrapper textarea[disabled],
3197
+ .e-filled.e-float-input.e-disabled,
3198
+ .e-filled.e-float-input.e-control-wrapper.e-disabled {
3199
+ @if $input-skin-name == 'material' {
3200
+ background: $filled-input-disabled-bg-color;
3201
+ background-image: none;
3202
+ background-position: initial;
3203
+ background-repeat: no-repeat;
3204
+ background-size: $zero-value;
3205
+ border-color: $filled-input-disabled-border-color;
3206
+ color: $filled-input-disabled-font-color;
3207
+ }
3208
+ @if $input-skin-name == 'Material3' {
3209
+ //background: $filled-input-disabled-bg-color;
3210
+ background-image: none;
3211
+ background-position: initial;
3212
+ background-repeat: no-repeat;
3213
+ background-size: $zero-value;
3214
+ border-color: $filled-input-disabled-border-color;
3215
+ color: $filled-input-disabled-font-color;
3216
+ }
3217
+ }
3218
+
3219
+ .e-filled.e-float-input.e-disabled:not(.e-success):not(.e-warning):not(.e-error),
3220
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-success):not(.e-warning):not(.e-error) {
3221
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3222
+ border-color: $filled-input-disabled-border-color;
3223
+ }
3224
+ }
3225
+
3226
+ .e-filled.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
3227
+ .e-filled.e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap,
3228
+ .e-filled.e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
3229
+ .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 {
3230
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3231
+ background: $filled-input-disabled-bg-color;
3232
+ background-image: none;
3233
+ background-position: initial;
3234
+ background-repeat: no-repeat;
3235
+ background-size: $zero-value;
3236
+ border-color: $filled-input-disabled-border-color;
3237
+ color: $filled-input-disabled-font-color;
3238
+ }
3239
+ }
3240
+
3241
+ .e-filled.e-float-input:not(.e-disabled) input[disabled],
3242
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) input[disabled],
3243
+ .e-filled.e-float-input:not(.e-disabled) textarea[disabled],
3244
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) textarea[disabled] {
3245
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3246
+ color: $filled-input-disabled-font-color;
3247
+ }
3248
+ }
3249
+
3250
+ .e-filled.e-float-input.e-input-group.e-disabled .e-float-text,
3251
+ .e-filled.e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
3252
+ .e-filled.e-float-input input[disabled] ~ label.e-float-text,
3253
+ .e-filled.e-float-input input[disabled] ~ label.e-label-top.e-float-text,
3254
+ .e-filled.e-float-input.e-disabled label.e-float-text,
3255
+ .e-filled.e-float-input.e-disabled label.e-float-text.e-label-top,
3256
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
3257
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
3258
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3259
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3260
+ .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
3261
+ .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3262
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3263
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
3264
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3265
+ color: $filled-input-disabled-font-color;
3266
+ }
3267
+ }
3268
+
3269
+ .e-filled.e-float-input textarea[disabled] ~ label.e-float-text,
3270
+ .e-filled.e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
3271
+ .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
3272
+ .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
3273
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3274
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3275
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
3276
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3277
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3278
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
3279
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3280
+ color: $filled-input-disabled-font-color;
3281
+ }
3282
+ }
3283
+
3284
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
3285
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
3286
+ .e-filled.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
3287
+ .e-filled.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
3288
+ .e-filled.e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
3289
+ .e-filled.e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
3290
+ .e-filled.e-float-input.e-control-wrapper.e-disabled label.e-float-text,
3291
+ .e-filled.e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
3292
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
3293
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
3294
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3295
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3296
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
3297
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3298
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3299
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3300
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
3301
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
3302
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.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.e-label-top,
3304
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
3305
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3306
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3307
+ .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 {
3308
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3309
+ color: $filled-input-disabled-font-color;
3310
+ }
3311
+ }
3312
+
3313
+ .e-filled.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
3314
+ .e-filled.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
3315
+ .e-filled.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
3316
+ .e-filled.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
3317
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
3318
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
3319
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3320
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3321
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
3322
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3323
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3324
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3325
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
3326
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
3327
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.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.e-label-top,
3329
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
3330
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3331
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3332
+ .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 {
3333
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3334
+ color: $filled-input-disabled-font-color;
3335
+ }
3336
+ }
3337
+
3338
+
3339
+ input.e-filled.e-disabled.e-input#{$css}:-moz-placeholder {
3340
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3341
+ color: $filled-input-disabled-font-color;
3342
+ }
3343
+ }
3344
+
3345
+
3346
+ .e-input-group.e-filled.e-disabled input.e-input:-moz-placeholder {
3347
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3348
+ color: $filled-input-disabled-font-color;
3349
+ }
3350
+ }
3351
+
3352
+
3353
+ .e-input-group.e-filled.e-disabled input.e-input:-moz-placeholder,
3354
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input:-moz-placeholder {
3355
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3356
+ color: $filled-input-disabled-font-color;
3357
+ }
3358
+ }
3359
+
3360
+
3361
+ input.e-filled.e-disabled.e-input#{$css}:-moz-placeholder {
3362
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3363
+ color: $filled-input-disabled-font-color;
3364
+ }
3365
+ }
3366
+
3367
+
3368
+ .e-input-group.e-filled.e-disabled input.e-input:-moz-placeholder {
3369
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3370
+ color: $filled-input-disabled-font-color;
3371
+ }
3372
+ }
3373
+
3374
+
3375
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input:-moz-placeholder {
3376
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3377
+ color: $filled-input-disabled-font-color;
3378
+ }
3379
+ }
3380
+
3381
+
3382
+ textarea.e-filled.e-disabled.e-input#{$css}:-moz-placeholder {
3383
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3384
+ color: $filled-input-disabled-font-color;
3385
+ }
3386
+ }
3387
+
3388
+
3389
+ .e-input-group.e-filled.e-disabled textarea.e-input:-moz-placeholder {
3390
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3391
+ color: $filled-input-disabled-font-color;
3392
+ }
3393
+ }
3394
+
3395
+
3396
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input:-moz-placeholder {
3397
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3398
+ color: $filled-input-disabled-font-color;
3399
+ }
3400
+ }
3401
+
3402
+
3403
+ input.e-filled.e-disabled.e-input#{$css}::-moz-placeholder {
3404
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3405
+ color: $filled-input-disabled-font-color;
3406
+ }
3407
+ }
3408
+
3409
+
3410
+ .e-input-group.e-filled.e-disabled input.e-input::-moz-placeholder {
3411
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3412
+ color: $filled-input-disabled-font-color;
3413
+ }
3414
+ }
3415
+
3416
+
3417
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input::-moz-placeholder {
3418
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3419
+ color: $filled-input-disabled-font-color;
3420
+ }
3421
+ }
3422
+
3423
+
3424
+ textarea.e-filled.e-disabled.e-input#{$css}::-moz-placeholder {
3425
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3426
+ color: $filled-input-disabled-font-color;
3427
+ }
3428
+ }
3429
+
3430
+
3431
+ .e-input-group.e-filled.e-disabled textarea.e-input::-moz-placeholder {
3432
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3433
+ color: $filled-input-disabled-font-color;
3434
+ }
3435
+ }
3436
+
3437
+
3438
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input::-moz-placeholder {
3439
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3440
+ color: $filled-input-disabled-font-color;
3441
+ }
3442
+ }
3443
+
3444
+
3445
+ input.e-filled.e-disabled.e-input#{$css}:-ms-input-placeholder {
3446
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3447
+ color: $filled-input-disabled-font-color;
3448
+ }
3449
+ }
3450
+
3451
+
3452
+ .e-input-group.e-filled.e-disabled input.e-input:-ms-input-placeholder {
3453
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3454
+ color: $filled-input-disabled-font-color;
3455
+ }
3456
+ }
3457
+
3458
+
3459
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input:-ms-input-placeholder {
3460
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3461
+ color: $filled-input-disabled-font-color;
3462
+ }
3463
+ }
3464
+
3465
+
3466
+ textarea.e-filled.e-disabled.e-input#{$css}:-ms-input-placeholder {
3467
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3468
+ color: $filled-input-disabled-font-color;
3469
+ }
3470
+ }
3471
+
3472
+
3473
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input:-ms-input-placeholder {
3474
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3475
+ color: $filled-input-disabled-font-color;
3476
+ }
3477
+ }
3478
+
3479
+
3480
+ .e-input-group.e-filled.e-disabled textarea.e-input:-ms-input-placeholder {
3481
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3482
+ color: $filled-input-disabled-font-color;
3483
+ }
3484
+ }
3485
+
3486
+
3487
+ input.e-filled.e-disabled.e-input#{$css}::-webkit-input-placeholder {
3488
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3489
+ color: $filled-input-disabled-font-color;
3490
+ }
3491
+ }
3492
+
3493
+
3494
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input::-webkit-input-placeholder {
3495
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3496
+ color: $filled-input-disabled-font-color;
3497
+ }
3498
+ }
3499
+
3500
+
3501
+ .e-input-group.e-filled.e-disabled input.e-input::-webkit-input-placeholder {
3502
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3503
+ color: $filled-input-disabled-font-color;
3504
+ }
3505
+ }
3506
+
3507
+
3508
+ textarea.e-filled.e-disabled.e-input#{$css}::-webkit-input-placeholder {
3509
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3510
+ color: $filled-input-disabled-font-color;
3511
+ }
3512
+ }
3513
+
3514
+
3515
+ .e-input-group.e-filled.e-disabled textarea.e-input::-webkit-input-placeholder {
3516
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3517
+ color: $filled-input-disabled-font-color;
3518
+ }
3519
+ }
3520
+
3521
+
3522
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
3523
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3524
+ color: $filled-input-disabled-font-color;
3525
+ }
3526
+ }
3527
+
3528
+ // Filled input ripple action
3529
+
3530
+ .e-filled.e-input-group.e-float-icon-left:not(.e-float-input)::before,
3531
+ .e-filled.e-input-group.e-float-icon-left:not(.e-float-input)::after,
3532
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::before,
3533
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::after {
3534
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3535
+ @include input-group-animation-bg;
3536
+ }
3537
+ }
3538
+
3539
+ .e-filled.e-float-input.e-input-group.e-float-icon-left .e-float-line::before,
3540
+ .e-filled.e-float-input.e-input-group.e-float-icon-left .e-float-line::after,
3541
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::before,
3542
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::after {
3543
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3544
+ @include input-group-animation-bg;
3545
+ }
3546
+ }
3547
+
3548
+ .e-filled.e-input-group.e-float-icon-left.e-success:not(.e-float-input)::before,
3549
+ .e-filled.e-input-group.e-float-icon-left.e-success:not(.e-float-input)::after,
3550
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input)::before,
3551
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input)::after {
3552
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3553
+ @include input-group-success-animation-bg;
3554
+ }
3555
+ }
3556
+
3557
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-success .e-float-line::before,
3558
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-success .e-float-line::after,
3559
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-float-line::before,
3560
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-float-line::after,
3561
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-float-line::before,
3562
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-float-line::after {
3563
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3564
+ @include input-group-success-animation-bg;
3565
+ }
3566
+ }
3567
+
3568
+ .e-filled.e-input-group.e-float-icon-left.e-warning:not(.e-float-input)::before,
3569
+ .e-filled.e-input-group.e-float-icon-left.e-warning:not(.e-float-input)::after,
3570
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input)::before,
3571
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input)::after,
3572
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-float-line::before,
3573
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-float-line::after {
3574
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3575
+ @include input-group-warning-animation-bg;
3576
+ }
3577
+ }
3578
+
3579
+ .e-filled.e-input-group.e-float-icon-left.e-error:not(.e-float-input)::before,
3580
+ .e-filled.e-input-group.e-float-icon-left.e-error:not(.e-float-input)::after,
3581
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input)::before,
3582
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input)::after {
3583
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3584
+ @include input-group-error-animation-bg;
3585
+ }
3586
+ }
3587
+
3588
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-error .e-float-line::before,
3589
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-error .e-float-line::after,
3590
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-float-line::before,
3591
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-float-line::after {
3592
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3593
+ @include input-group-error-animation-bg;
3594
+ }
3595
+ }
3596
+
3597
+ .e-filled.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3598
+ .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,
3599
+ .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,
3600
+ .e-filled.e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left {
3601
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3602
+ border-color: $filled-input-hover-border-color;
3603
+ }
3604
+ }
3605
+
3606
+ .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,
3607
+ .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,
3608
+ .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,
3609
+ .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 {
3610
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3611
+ border-color: $filled-input-hover-border-color;
3612
+ }
3613
+ }
3614
+
3615
+ .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,
3616
+ .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,
3617
+ .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,
3618
+ .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 {
3619
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3620
+ border-color: $filled-input-hover-border-color;
3621
+ }
3622
+ }
3623
+
3624
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3625
+ .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3626
+ .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3627
+ .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3628
+ .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3629
+ .e-filled.e-float-input.e-success input label.e-float-text.e-label-top,
3630
+ .e-filled.e-float-input.e-bigger.e-success input:focus ~ label.e-float-text,
3631
+ .e-filled.e-float-input.e-bigger.e-success input:valid ~ label.e-float-text,
3632
+ .e-filled.e-float-input.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3633
+ .e-filled.e-float-input.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3634
+ .e-filled.e-float-input.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3635
+ .e-bigger .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3636
+ .e-bigger .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3637
+ .e-bigger .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3638
+ .e-bigger .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3639
+ .e-bigger .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3640
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3641
+ .e-filled.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3642
+ .e-bigger .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text {
3643
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3644
+ color: $input-success-color;
3645
+ }
3646
+ }
3647
+
3648
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3649
+ .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3650
+ .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3651
+ .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3652
+ .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3653
+ .e-filled.e-float-input.e-warning input label.e-float-text.e-label-top,
3654
+ .e-filled.e-float-input.e-bigger.e-warning input:focus ~ label.e-float-text,
3655
+ .e-filled.e-float-input.e-bigger.e-warning input:valid ~ label.e-float-text,
3656
+ .e-filled.e-float-input.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
3657
+ .e-filled.e-float-input.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3658
+ .e-filled.e-float-input.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3659
+ .e-bigger .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3660
+ .e-bigger .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3661
+ .e-bigger .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3662
+ .e-bigger .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3663
+ .e-bigger .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3664
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
3665
+ .e-filled.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
3666
+ .e-bigger .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text {
3667
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3668
+ color: $input-warning-color;
3669
+ }
3670
+ }
3671
+
3672
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3673
+ .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3674
+ .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3675
+ .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3676
+ .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3677
+ .e-filled.e-float-input.e-success input label.e-float-text.e-label-top,
3678
+ .e-filled.e-float-input.e-bigger.e-success input:focus ~ label.e-float-text,
3679
+ .e-filled.e-float-input.e-bigger.e-success input:valid ~ label.e-float-text,
3680
+ .e-filled.e-float-input.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3681
+ .e-filled.e-float-input.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3682
+ .e-filled.e-float-input.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3683
+ .e-bigger .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3684
+ .e-bigger .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3685
+ .e-bigger .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3686
+ .e-bigger .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3687
+ .e-bigger .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3688
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3689
+ .e-filled.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3690
+ .e-bigger .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text {
3691
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3692
+ color: $input-success-color;
3693
+ }
3694
+ }
3695
+
3696
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3697
+ .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3698
+ .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3699
+ .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3700
+ .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3701
+ .e-filled.e-float-input.e-warning input label.e-float-text.e-label-top,
3702
+ .e-filled.e-float-input.e-bigger.e-warning input:focus ~ label.e-float-text,
3703
+ .e-filled.e-float-input.e-bigger.e-warning input:valid ~ label.e-float-text,
3704
+ .e-filled.e-float-input.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
3705
+ .e-filled.e-float-input.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3706
+ .e-filled.e-float-input.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3707
+ .e-bigger .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3708
+ .e-bigger .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3709
+ .e-bigger .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3710
+ .e-bigger .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3711
+ .e-bigger .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3712
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
3713
+ .e-filled.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
3714
+ .e-bigger .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text {
3715
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3716
+ color: $input-warning-color;
3717
+ }
3718
+ }
3719
+
3720
+ .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3721
+ .e-filled.e-float-input.e-control-wrapper.e-success input:valid ~ label.e-float-text,
3722
+ .e-filled.e-float-input.e-control-wrapper.e-success input ~ label.e-label-top.e-float-text,
3723
+ .e-filled.e-float-input.e-control-wrapper.e-success input[readonly] ~ label.e-label-top.e-float-text,
3724
+ .e-filled.e-float-input.e-control-wrapper.e-success input[disabled] ~ label.e-label-top.e-float-text,
3725
+ .e-filled.e-float-input .e-control-wrapper.e-success input label.e-float-text.e-label-top,
3726
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input:focus ~ label.e-float-text,
3727
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input:valid ~ label.e-float-text,
3728
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3729
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3730
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3731
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3732
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input:valid ~ label.e-float-text,
3733
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input ~ label.e-label-top.e-float-text,
3734
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input[readonly] ~ label.e-label-top.e-float-text,
3735
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input[disabled] ~ label.e-label-top.e-float-text,
3736
+ .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3737
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3738
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text {
3739
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3740
+ color: $input-success-color;
3741
+ }
3742
+ }
3743
+
3744
+ .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3745
+ .e-filled.e-float-input.e-small.e-success input:valid ~ label.e-float-text,
3746
+ .e-filled.e-float-input.e-small.e-success input ~ label.e-label-top.e-float-text,
3747
+ .e-filled.e-float-input.e-small.e-success input[readonly] ~ label.e-float-text,
3748
+ .e-filled.e-float-input.e-small.e-success input[disabled] ~ label.e-float-text,
3749
+ .e-small .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3750
+ .e-small .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3751
+ .e-small .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3752
+ .e-small .e-filled.e-float-input.e-success input[readonly] ~ label.e-float-text.e-label-top,
3753
+ .e-small .e-filled.e-float-input.e-success input[disabled] ~ label.e-float-text.e-label-top,
3754
+ .e-filled.e-float-input.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3755
+ .e-filled.e-float-input.e-small.e-bigger.e-success input:valid ~ label.e-float-text,
3756
+ .e-filled.e-float-input.e-small.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3757
+ .e-filled.e-float-input.e-small.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3758
+ .e-filled.e-float-input.e-small.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3759
+ .e-bigger .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3760
+ .e-bigger .e-filled.e-float-input.e-small.e-success input:valid ~ label.e-float-text,
3761
+ .e-bigger .e-filled.e-float-input.e-small.e-success input ~ label.e-label-top.e-float-text,
3762
+ .e-bigger .e-filled.e-float-input.e-small.e-success input[readonly] ~ label.e-label-top.e-float-text,
3763
+ .e-bigger .e-filled.e-float-input.e-small.e-success input[disabled] ~ label.e-label-top.e-float-text,
3764
+ .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
3765
+ .e-small .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3766
+ .e-filled.e-float-input.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3767
+ .e-bigger .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text {
3768
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3769
+ color: $input-success-color;
3770
+ }
3771
+ }
3772
+
3773
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3774
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:valid ~ label.e-float-text,
3775
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input ~ label.e-label-top.e-float-text,
3776
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[readonly] ~ label.e-float-text,
3777
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[disabled] ~ label.e-float-text,
3778
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3779
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input:valid ~ label.e-float-text,
3780
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input ~ label.e-label-top.e-float-text,
3781
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input[readonly] ~ label.e-float-text.e-label-top,
3782
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input[disabled] ~ label.e-float-text.e-label-top,
3783
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3784
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:valid ~ label.e-float-text,
3785
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3786
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3787
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3788
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3789
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:valid ~ label.e-float-text,
3790
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input ~ label.e-label-top.e-float-text,
3791
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[readonly] ~ label.e-label-top.e-float-text,
3792
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[disabled] ~ label.e-label-top.e-float-text,
3793
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text,
3794
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3795
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3796
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text {
3797
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3798
+ color: $input-success-color;
3799
+ }
3800
+ }
3801
+
3802
+ .e-filled.e-float-input.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3803
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3804
+ .e-filled.e-float-input.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3805
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3806
+ .e-bigger .e-filled.e-float-input.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3807
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3808
+ .e-filled.e-float-input.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3809
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3810
+ .e-small .e-filled.e-float-input.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3811
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3812
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3813
+ .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,
3814
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3815
+ .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 {
3816
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3817
+ color: $input-success-color;
3818
+ }
3819
+ }
3820
+
3821
+ .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3822
+ .e-filled.e-float-input.e-success textarea:valid ~ label.e-float-text,
3823
+ .e-filled.e-float-input.e-success textarea ~ label.e-label-top.e-float-text,
3824
+ .e-filled.e-float-input.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3825
+ .e-filled.e-float-input.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3826
+ .e-filled.e-float-input.e-success textarea label.e-float-text.e-label-top,
3827
+ .e-filled.e-float-input.e-bigger.e-success textarea:focus ~ label.e-float-text,
3828
+ .e-filled.e-float-input.e-bigger.e-success textarea:valid ~ label.e-float-text,
3829
+ .e-filled.e-float-input.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3830
+ .e-filled.e-float-input.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3831
+ .e-filled.e-float-input.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3832
+ .e-bigger .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3833
+ .e-bigger .e-filled.e-float-input.e-success textarea:valid ~ label.e-float-text,
3834
+ .e-bigger .e-filled.e-float-input.e-success textarea ~ label.e-label-top.e-float-text,
3835
+ .e-bigger .e-filled.e-float-input.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3836
+ .e-bigger .e-filled.e-float-input.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3837
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3838
+ color: $input-success-color;
3839
+ }
3840
+ }
3841
+
3842
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3843
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:valid ~ label.e-float-text,
3844
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea ~ label.e-label-top.e-float-text,
3845
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3846
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3847
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea label.e-float-text.e-label-top,
3848
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:focus ~ label.e-float-text,
3849
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:valid ~ label.e-float-text,
3850
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3851
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3852
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3853
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3854
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:valid ~ label.e-float-text,
3855
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea ~ label.e-label-top.e-float-text,
3856
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3857
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3858
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3859
+ color: $input-success-color;
3860
+ }
3861
+ }
3862
+
3863
+ .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3864
+ .e-filled.e-float-input.e-small.e-success textarea:valid ~ label.e-float-text,
3865
+ .e-filled.e-float-input.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3866
+ .e-filled.e-float-input.e-small.e-success textarea[readonly] ~ label.e-float-text,
3867
+ .e-filled.e-float-input.e-small.e-success textarea[disabled] ~ label.e-float-text,
3868
+ .e-small .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3869
+ .e-small .e-filled.e-float-input.e-success textarea:valid ~ label.e-float-text,
3870
+ .e-small .e-filled.e-float-input.e-success textarea ~ label.e-label-top.e-float-text,
3871
+ .e-small .e-filled.e-float-input.e-success textarea[readonly] ~ label.e-float-text.e-label-top,
3872
+ .e-small .e-filled.e-float-input.e-success textarea[disabled] ~ label.e-float-text.e-label-top,
3873
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3874
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:valid ~ label.e-float-text,
3875
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3876
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3877
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3878
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3879
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:valid ~ label.e-float-text,
3880
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3881
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3882
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3883
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3884
+ color: $input-success-color;
3885
+ }
3886
+ }
3887
+
3888
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3889
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:valid ~ label.e-float-text,
3890
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3891
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[readonly] ~ label.e-float-text,
3892
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[disabled] ~ label.e-float-text,
3893
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3894
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:valid ~ label.e-float-text,
3895
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea ~ label.e-label-top.e-float-text,
3896
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea[readonly] ~ label.e-float-text.e-label-top,
3897
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea[disabled] ~ label.e-float-text.e-label-top,
3898
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3899
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:valid ~ label.e-float-text,
3900
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3901
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3902
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3903
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3904
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:valid ~ label.e-float-text,
3905
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3906
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3907
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3908
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3909
+ color: $input-success-color;
3910
+ }
3911
+ }
3912
+
3913
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3914
+ .e-filled.e-float-input.e-bigger.e-success input:focus ~ label.e-float-text,
3915
+ .e-bigger .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3916
+ .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3917
+ .e-small .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3918
+ .e-filled.e-float-input.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3919
+ .e-bigger .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3920
+ .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3921
+ .e-filled.e-float-input.e-bigger.e-success textarea:focus ~ label.e-float-text,
3922
+ .e-bigger .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3923
+ .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3924
+ .e-small .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3925
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3926
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3927
+ .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3928
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input:focus ~ label.e-float-text,
3929
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3930
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3931
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3932
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3933
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3934
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3935
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:focus ~ label.e-float-text,
3936
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3937
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3938
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3939
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3940
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3941
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3942
+ .e-filled.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3943
+ .e-bigger .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3944
+ .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
3945
+ .e-small .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3946
+ .e-filled.e-float-input.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3947
+ .e-bigger .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
3948
+ .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3949
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3950
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3951
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text,
3952
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3953
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3954
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text {
3955
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3956
+ color: $input-success-color;
3957
+ }
3958
+ }
3959
+
3960
+ .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3961
+ .e-bigger .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-small .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-bigger .e-filled.e-float-input.e-small.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3966
+ .e-bigger.e-small .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3967
+ .e-filled.e-float-input.e-bigger.e-small.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
3968
+ .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,
3969
+ .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,
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-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,
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-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,
3974
+ .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,
3975
+ .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 {
3976
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3977
+ color: $input-success-color;
3978
+ }
3979
+ }
3980
+
3981
+ .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3982
+ .e-bigger .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-small .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-bigger .e-filled.e-float-input.e-small.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3987
+ .e-bigger.e-small .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3988
+ .e-filled.e-float-input.e-bigger.e-small.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3989
+ .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3990
+ .e-bigger .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-small .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-bigger .e-filled.e-float-input.e-small.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
3995
+ .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,
3996
+ .e-filled.e-bigger.e-small.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill ~ label.e-float-text {
3997
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
3998
+ color: $input-success-color;
3999
+ }
4000
+ }
4001
+
4002
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4003
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:valid ~ label.e-float-text,
4004
+ .e-filled.e-float-input.e-control-wrapper.e-warning input ~ label.e-label-top.e-float-text,
4005
+ .e-filled.e-float-input.e-control-wrapper.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4006
+ .e-filled.e-float-input.e-control-wrapper.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4007
+ .e-filled.e-float-input .e-control-wrapper.e-warning input label.e-float-text.e-label-top,
4008
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input:focus ~ label.e-float-text,
4009
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input:valid ~ label.e-float-text,
4010
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
4011
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4012
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4013
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4014
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input:valid ~ label.e-float-text,
4015
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input ~ label.e-label-top.e-float-text,
4016
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4017
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4018
+ .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4019
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4020
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text {
4021
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4022
+ color: $input-warning-color;
4023
+ }
4024
+ }
4025
+
4026
+ .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4027
+ .e-filled.e-float-input.e-small.e-warning input:valid ~ label.e-float-text,
4028
+ .e-filled.e-float-input.e-small.e-warning input ~ label.e-label-top.e-float-text,
4029
+ .e-filled.e-float-input.e-small.e-warning input[readonly] ~ label.e-float-text,
4030
+ .e-filled.e-float-input.e-small.e-warning input[disabled] ~ label.e-float-text,
4031
+ .e-small .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4032
+ .e-small .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
4033
+ .e-small .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
4034
+ .e-small .e-filled.e-float-input.e-warning input[readonly] ~ label.e-float-text.e-label-top,
4035
+ .e-small .e-filled.e-float-input.e-warning input[disabled] ~ label.e-float-text.e-label-top,
4036
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4037
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input:valid ~ label.e-float-text,
4038
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
4039
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4040
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4041
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4042
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input:valid ~ label.e-float-text,
4043
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input ~ label.e-label-top.e-float-text,
4044
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4045
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4046
+ .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4047
+ .e-small .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4048
+ .e-filled.e-float-input.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4049
+ .e-bigger .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text {
4050
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4051
+ color: $input-warning-color;
4052
+ }
4053
+ }
4054
+
4055
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4056
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:valid ~ label.e-float-text,
4057
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input ~ label.e-label-top.e-float-text,
4058
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[readonly] ~ label.e-float-text,
4059
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[disabled] ~ label.e-float-text,
4060
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4061
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input:valid ~ label.e-float-text,
4062
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input ~ label.e-label-top.e-float-text,
4063
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input[readonly] ~ label.e-float-text.e-label-top,
4064
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input[disabled] ~ label.e-float-text.e-label-top,
4065
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4066
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:valid ~ label.e-float-text,
4067
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
4068
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4069
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4070
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4071
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:valid ~ label.e-float-text,
4072
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input ~ label.e-label-top.e-float-text,
4073
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4074
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4075
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4076
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4077
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4078
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text {
4079
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4080
+ color: $input-warning-color;
4081
+ }
4082
+ }
4083
+
4084
+ .e-filled.e-float-input.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4085
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4086
+ .e-filled.e-float-input.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4087
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4088
+ .e-bigger .e-filled.e-float-input.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4089
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4090
+ .e-filled.e-float-input.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4091
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4092
+ .e-small .e-filled.e-float-input.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4093
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4094
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4095
+ .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,
4096
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4097
+ .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 {
4098
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4099
+ color: $input-warning-color;
4100
+ }
4101
+ }
4102
+
4103
+ .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4104
+ .e-filled.e-float-input.e-warning textarea:valid ~ label.e-float-text,
4105
+ .e-filled.e-float-input.e-warning textarea ~ label.e-label-top.e-float-text,
4106
+ .e-filled.e-float-input.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4107
+ .e-filled.e-float-input.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4108
+ .e-filled.e-float-input.e-warning textarea label.e-float-text.e-label-top,
4109
+ .e-filled.e-float-input.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4110
+ .e-filled.e-float-input.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4111
+ .e-filled.e-float-input.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4112
+ .e-filled.e-float-input.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4113
+ .e-filled.e-float-input.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4114
+ .e-bigger .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4115
+ .e-bigger .e-filled.e-float-input.e-warning textarea:valid ~ label.e-float-text,
4116
+ .e-bigger .e-filled.e-float-input.e-warning textarea ~ label.e-label-top.e-float-text,
4117
+ .e-bigger .e-filled.e-float-input.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4118
+ .e-bigger .e-filled.e-float-input.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4119
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4120
+ color: $input-warning-color;
4121
+ }
4122
+ }
4123
+
4124
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4125
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:valid ~ label.e-float-text,
4126
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea ~ label.e-label-top.e-float-text,
4127
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4128
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4129
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea label.e-float-text.e-label-top,
4130
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4131
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4132
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4133
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4134
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4135
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4136
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:valid ~ label.e-float-text,
4137
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea ~ label.e-label-top.e-float-text,
4138
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4139
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4140
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4141
+ color: $input-warning-color;
4142
+ }
4143
+ }
4144
+
4145
+ .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4146
+ .e-filled.e-float-input.e-small.e-warning textarea:valid ~ label.e-float-text,
4147
+ .e-filled.e-float-input.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4148
+ .e-filled.e-float-input.e-small.e-warning textarea[readonly] ~ label.e-float-text,
4149
+ .e-filled.e-float-input.e-small.e-warning textarea[disabled] ~ label.e-float-text,
4150
+ .e-small .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4151
+ .e-small .e-filled.e-float-input.e-warning textarea:valid ~ label.e-float-text,
4152
+ .e-small .e-filled.e-float-input.e-warning textarea ~ label.e-label-top.e-float-text,
4153
+ .e-small .e-filled.e-float-input.e-warning textarea[readonly] ~ label.e-float-text.e-label-top,
4154
+ .e-small .e-filled.e-float-input.e-warning textarea[disabled] ~ label.e-float-text.e-label-top,
4155
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4156
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4157
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4158
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4159
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4160
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4161
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:valid ~ label.e-float-text,
4162
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4163
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4164
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4165
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4166
+ color: $input-warning-color;
4167
+ }
4168
+ }
4169
+
4170
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4171
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:valid ~ label.e-float-text,
4172
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4173
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[readonly] ~ label.e-float-text,
4174
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[disabled] ~ label.e-float-text,
4175
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4176
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:valid ~ label.e-float-text,
4177
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea ~ label.e-label-top.e-float-text,
4178
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea[readonly] ~ label.e-float-text.e-label-top,
4179
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea[disabled] ~ label.e-float-text.e-label-top,
4180
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4181
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4182
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4183
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4184
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4185
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4186
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:valid ~ label.e-float-text,
4187
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4188
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4189
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4190
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4191
+ color: $input-warning-color;
4192
+ }
4193
+ }
4194
+
4195
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4196
+ .e-filled.e-float-input.e-bigger.e-warning input:focus ~ label.e-float-text,
4197
+ .e-bigger .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4198
+ .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4199
+ .e-small .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4200
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4201
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4202
+ .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4203
+ .e-filled.e-float-input.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4204
+ .e-bigger .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4205
+ .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4206
+ .e-small .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4207
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4208
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4209
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4210
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input:focus ~ label.e-float-text,
4211
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4212
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4213
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4214
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4215
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4216
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4217
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4218
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4219
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4220
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4221
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4222
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4223
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4224
+ .e-filled.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4225
+ .e-bigger .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4226
+ .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4227
+ .e-small .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4228
+ .e-filled.e-float-input.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4229
+ .e-bigger .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4230
+ .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus inputs ~ label.e-float-text,
4231
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4232
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4233
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4234
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4235
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4236
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text {
4237
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4238
+ color: $input-warning-color;
4239
+ }
4240
+ }
4241
+
4242
+ .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4243
+ .e-bigger .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-small .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-bigger .e-filled.e-float-input.e-small.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4248
+ .e-bigger.e-small .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4249
+ .e-filled.e-float-input.e-bigger.e-small.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill ~ label.e-float-text,
4250
+ .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,
4251
+ .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,
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-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,
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-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,
4256
+ .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,
4257
+ .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 {
4258
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4259
+ color: $input-warning-color;
4260
+ }
4261
+ }
4262
+
4263
+ .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4264
+ .e-bigger .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-small .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-bigger .e-filled.e-float-input.e-small.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4269
+ .e-bigger.e-small .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4270
+ .e-filled.e-float-input.e-bigger.e-small.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4271
+ .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4272
+ .e-bigger .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-small .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-bigger .e-filled.e-float-input.e-small.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text,
4277
+ .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,
4278
+ .e-filled.e-bigger.e-small.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill ~ label.e-float-text {
4279
+ @if $input-skin-name == 'material' or $input-skin-name == 'Material3' {
4280
+ color: $input-warning-color;
4281
+ }
4282
+ }
4283
+ }