@syncfusion/ej2-angular-inputs 20.1.59 → 20.2.36

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 (629) 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 +25 -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/signature/signature-all.module.mjs +23 -0
  14. package/esm2020/src/signature/signature.component.mjs +83 -0
  15. package/esm2020/src/signature/signature.module.mjs +25 -0
  16. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  17. package/esm2020/src/slider/slider.component.mjs +83 -0
  18. package/esm2020/src/slider/slider.module.mjs +25 -0
  19. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  20. package/esm2020/src/textbox/textbox.component.mjs +84 -0
  21. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  22. package/esm2020/src/uploader/files.directive.mjs +58 -0
  23. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  24. package/esm2020/src/uploader/uploader.component.mjs +95 -0
  25. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  26. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  27. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1097 -0
  28. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  29. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1097 -0
  30. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  31. package/package.json +29 -15
  32. package/schematics/utils/lib-details.ts +2 -2
  33. package/src/color-picker/colorpicker-all.module.d.ts +6 -0
  34. package/src/color-picker/colorpicker.component.d.ts +3 -0
  35. package/src/color-picker/colorpicker.module.d.ts +6 -0
  36. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
  37. package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
  38. package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
  39. package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
  40. package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
  41. package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
  42. package/src/signature/signature-all.module.d.ts +6 -0
  43. package/src/signature/signature.component.d.ts +3 -0
  44. package/src/signature/signature.module.d.ts +6 -0
  45. package/src/slider/slider-all.module.d.ts +6 -0
  46. package/src/slider/slider.component.d.ts +3 -0
  47. package/src/slider/slider.module.d.ts +6 -0
  48. package/src/textbox/textbox-all.module.d.ts +6 -0
  49. package/src/textbox/textbox.component.d.ts +3 -0
  50. package/src/textbox/textbox.module.d.ts +6 -0
  51. package/src/uploader/files.directive.d.ts +5 -0
  52. package/src/uploader/uploader-all.module.d.ts +6 -0
  53. package/src/uploader/uploader.component.d.ts +3 -0
  54. package/src/uploader/uploader.module.d.ts +7 -0
  55. package/styles/bootstrap-dark.css +4 -2
  56. package/styles/bootstrap.css +4 -2
  57. package/styles/bootstrap4.css +4 -2
  58. package/styles/bootstrap5-dark.css +4 -2
  59. package/styles/bootstrap5.css +4 -2
  60. package/styles/color-picker/_all.scss +2 -0
  61. package/styles/color-picker/_bootstrap-dark-definition.scss +130 -0
  62. package/styles/color-picker/_bootstrap-definition.scss +128 -0
  63. package/styles/color-picker/_bootstrap4-definition.scss +127 -0
  64. package/styles/color-picker/_bootstrap5-dark-definition.scss +1 -0
  65. package/styles/color-picker/_bootstrap5-definition.scss +134 -0
  66. package/styles/color-picker/_fabric-dark-definition.scss +130 -0
  67. package/styles/color-picker/_fabric-definition.scss +127 -0
  68. package/styles/color-picker/_fluent-dark-definition.scss +1 -0
  69. package/styles/color-picker/_fluent-definition.scss +134 -0
  70. package/styles/color-picker/_fusionnew-definition.scss +134 -0
  71. package/styles/color-picker/_highcontrast-definition.scss +127 -0
  72. package/styles/color-picker/_highcontrast-light-definition.scss +129 -0
  73. package/styles/color-picker/_layout.scss +1175 -0
  74. package/styles/color-picker/_material-dark-definition.scss +134 -0
  75. package/styles/color-picker/_material-definition.scss +130 -0
  76. package/styles/color-picker/_material3-definition.scss +134 -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 +183 -0
  80. package/styles/color-picker/bootstrap-dark.css +4 -2
  81. package/styles/color-picker/bootstrap-dark.scss +11 -1
  82. package/styles/color-picker/bootstrap.css +4 -2
  83. package/styles/color-picker/bootstrap.scss +11 -1
  84. package/styles/color-picker/bootstrap4.css +4 -2
  85. package/styles/color-picker/bootstrap4.scss +11 -1
  86. package/styles/color-picker/bootstrap5-dark.css +4 -2
  87. package/styles/color-picker/bootstrap5-dark.scss +11 -1
  88. package/styles/color-picker/bootstrap5.css +4 -2
  89. package/styles/color-picker/bootstrap5.scss +11 -1
  90. package/styles/color-picker/fabric-dark.css +4 -2
  91. package/styles/color-picker/fabric-dark.scss +11 -1
  92. package/styles/color-picker/fabric.css +4 -2
  93. package/styles/color-picker/fabric.scss +11 -1
  94. package/styles/color-picker/fluent-dark.css +4 -2
  95. package/styles/color-picker/fluent-dark.scss +11 -1
  96. package/styles/color-picker/fluent.css +4 -2
  97. package/styles/color-picker/fluent.scss +11 -1
  98. package/styles/color-picker/highcontrast-light.css +4 -2
  99. package/styles/color-picker/highcontrast-light.scss +11 -1
  100. package/styles/color-picker/highcontrast.css +4 -2
  101. package/styles/color-picker/highcontrast.scss +11 -1
  102. package/styles/color-picker/icons/_bootstrap-dark.scss +9 -0
  103. package/styles/color-picker/icons/_bootstrap.scss +9 -0
  104. package/styles/color-picker/icons/_bootstrap4.scss +10 -0
  105. package/styles/color-picker/icons/_bootstrap5-dark.scss +1 -0
  106. package/styles/color-picker/icons/_bootstrap5.scss +10 -0
  107. package/styles/color-picker/icons/_fabric-dark.scss +10 -0
  108. package/styles/color-picker/icons/_fabric.scss +9 -0
  109. package/styles/color-picker/icons/_fluent-dark.scss +1 -0
  110. package/styles/color-picker/icons/_fluent.scss +10 -0
  111. package/styles/color-picker/icons/_fusionnew.scss +10 -0
  112. package/styles/color-picker/icons/_highcontrast-light.scss +9 -0
  113. package/styles/color-picker/icons/_highcontrast.scss +9 -0
  114. package/styles/color-picker/icons/_material-dark.scss +9 -0
  115. package/styles/color-picker/icons/_material.scss +9 -0
  116. package/styles/color-picker/icons/_material3.scss +10 -0
  117. package/styles/color-picker/icons/_tailwind-dark.scss +10 -0
  118. package/styles/color-picker/icons/_tailwind.scss +10 -0
  119. package/styles/color-picker/material-dark.css +4 -2
  120. package/styles/color-picker/material-dark.scss +11 -1
  121. package/styles/color-picker/material.css +4 -2
  122. package/styles/color-picker/material.scss +11 -1
  123. package/styles/color-picker/tailwind-dark.css +4 -2
  124. package/styles/color-picker/tailwind-dark.scss +11 -1
  125. package/styles/color-picker/tailwind.css +4 -2
  126. package/styles/color-picker/tailwind.scss +11 -1
  127. package/styles/fabric-dark.css +4 -2
  128. package/styles/fabric.css +4 -2
  129. package/styles/fluent-dark.css +4 -2
  130. package/styles/fluent.css +4 -2
  131. package/styles/highcontrast-light.css +4 -2
  132. package/styles/highcontrast.css +4 -2
  133. package/styles/input/_all.scss +3 -0
  134. package/styles/input/_bootstrap-dark-definition.scss +311 -0
  135. package/styles/input/_bootstrap-definition.scss +304 -0
  136. package/styles/input/_bootstrap4-definition.scss +309 -0
  137. package/styles/input/_bootstrap5-dark-definition.scss +1 -0
  138. package/styles/input/_bootstrap5-definition.scss +321 -0
  139. package/styles/input/_definition.scss +217 -0
  140. package/styles/input/_fabric-dark-definition.scss +305 -0
  141. package/styles/input/_fabric-definition.scss +297 -0
  142. package/styles/input/_fluent-dark-definition.scss +1 -0
  143. package/styles/input/_fluent-definition.scss +323 -0
  144. package/styles/input/_fusionnew-definition.scss +321 -0
  145. package/styles/input/_highcontrast-definition.scss +296 -0
  146. package/styles/input/_highcontrast-light-definition.scss +304 -0
  147. package/styles/input/_layout.scss +11010 -0
  148. package/styles/input/_material-dark-definition.scss +556 -0
  149. package/styles/input/_material-definition.scss +557 -0
  150. package/styles/input/_material3-definition.scss +321 -0
  151. package/styles/input/_responsive.scss +1 -0
  152. package/styles/input/_tailwind-dark-definition.scss +1 -0
  153. package/styles/input/_tailwind-definition.scss +319 -0
  154. package/styles/input/_theme.scss +4272 -0
  155. package/styles/input/bootstrap-dark.scss +4 -1
  156. package/styles/input/bootstrap.scss +4 -1
  157. package/styles/input/bootstrap4.scss +4 -1
  158. package/styles/input/bootstrap5-dark.scss +4 -1
  159. package/styles/input/bootstrap5.scss +4 -1
  160. package/styles/input/fabric-dark.scss +4 -1
  161. package/styles/input/fabric.scss +4 -1
  162. package/styles/input/fluent-dark.scss +4 -1
  163. package/styles/input/fluent.scss +4 -1
  164. package/styles/input/highcontrast-light.scss +4 -1
  165. package/styles/input/highcontrast.scss +4 -1
  166. package/styles/input/icons/_bootstrap-dark.scss +17 -0
  167. package/styles/input/icons/_bootstrap.scss +17 -0
  168. package/styles/input/icons/_bootstrap4.scss +17 -0
  169. package/styles/input/icons/_bootstrap5-dark.scss +1 -0
  170. package/styles/input/icons/_bootstrap5.scss +17 -0
  171. package/styles/input/icons/_fabric-dark.scss +17 -0
  172. package/styles/input/icons/_fabric.scss +17 -0
  173. package/styles/input/icons/_fluent-dark.scss +1 -0
  174. package/styles/input/icons/_fluent.scss +17 -0
  175. package/styles/input/icons/_fusionnew.scss +17 -0
  176. package/styles/input/icons/_highcontrast-light.scss +17 -0
  177. package/styles/input/icons/_highcontrast.scss +17 -0
  178. package/styles/input/icons/_material-dark.scss +49 -0
  179. package/styles/input/icons/_material.scss +49 -0
  180. package/styles/input/icons/_material3.scss +17 -0
  181. package/styles/input/icons/_tailwind-dark.scss +1 -0
  182. package/styles/input/icons/_tailwind.scss +17 -0
  183. package/styles/input/material-dark.scss +4 -1
  184. package/styles/input/material.scss +4 -1
  185. package/styles/input/tailwind-dark.scss +4 -1
  186. package/styles/input/tailwind.scss +4 -1
  187. package/styles/maskedtextbox/_all.scss +2 -0
  188. package/styles/maskedtextbox/_bootstrap-dark-definition.scss +6 -0
  189. package/styles/maskedtextbox/_bootstrap-definition.scss +5 -0
  190. package/styles/maskedtextbox/_bootstrap4-definition.scss +5 -0
  191. package/styles/maskedtextbox/_bootstrap5-dark-definition.scss +1 -0
  192. package/styles/maskedtextbox/_bootstrap5-definition.scss +7 -0
  193. package/styles/maskedtextbox/_fabric-dark-definition.scss +6 -0
  194. package/styles/maskedtextbox/_fabric-definition.scss +4 -0
  195. package/styles/maskedtextbox/_fluent-dark-definition.scss +1 -0
  196. package/styles/maskedtextbox/_fluent-definition.scss +7 -0
  197. package/styles/maskedtextbox/_fusionnew-definition.scss +7 -0
  198. package/styles/maskedtextbox/_highcontrast-definition.scss +4 -0
  199. package/styles/maskedtextbox/_highcontrast-light-definition.scss +6 -0
  200. package/styles/maskedtextbox/_layout.scss +32 -0
  201. package/styles/maskedtextbox/_material-dark-definition.scss +6 -0
  202. package/styles/maskedtextbox/_material-definition.scss +4 -0
  203. package/styles/maskedtextbox/_material3-definition.scss +7 -0
  204. package/styles/maskedtextbox/_tailwind-dark-definition.scss +1 -0
  205. package/styles/maskedtextbox/_tailwind-definition.scss +7 -0
  206. package/styles/maskedtextbox/_theme.scss +14 -0
  207. package/styles/maskedtextbox/bootstrap-dark.scss +4 -1
  208. package/styles/maskedtextbox/bootstrap.scss +4 -1
  209. package/styles/maskedtextbox/bootstrap4.scss +4 -1
  210. package/styles/maskedtextbox/bootstrap5-dark.scss +4 -1
  211. package/styles/maskedtextbox/bootstrap5.scss +4 -1
  212. package/styles/maskedtextbox/fabric-dark.scss +4 -1
  213. package/styles/maskedtextbox/fabric.scss +4 -1
  214. package/styles/maskedtextbox/fluent-dark.scss +4 -1
  215. package/styles/maskedtextbox/fluent.scss +4 -1
  216. package/styles/maskedtextbox/highcontrast-light.scss +4 -1
  217. package/styles/maskedtextbox/highcontrast.scss +4 -1
  218. package/styles/maskedtextbox/material-dark.scss +4 -1
  219. package/styles/maskedtextbox/material.scss +4 -1
  220. package/styles/maskedtextbox/tailwind-dark.scss +4 -1
  221. package/styles/maskedtextbox/tailwind.scss +4 -1
  222. package/styles/material-dark.css +4 -2
  223. package/styles/material.css +4 -2
  224. package/styles/numerictextbox/_all.scss +2 -0
  225. package/styles/numerictextbox/_bootstrap-dark-definition.scss +5 -0
  226. package/styles/numerictextbox/_bootstrap-definition.scss +3 -0
  227. package/styles/numerictextbox/_bootstrap4-definition.scss +3 -0
  228. package/styles/numerictextbox/_bootstrap5-dark-definition.scss +1 -0
  229. package/styles/numerictextbox/_bootstrap5-definition.scss +3 -0
  230. package/styles/numerictextbox/_fabric-dark-definition.scss +5 -0
  231. package/styles/numerictextbox/_fabric-definition.scss +3 -0
  232. package/styles/numerictextbox/_fluent-dark-definition.scss +1 -0
  233. package/styles/numerictextbox/_fluent-definition.scss +5 -0
  234. package/styles/numerictextbox/_fusionnew-definition.scss +3 -0
  235. package/styles/numerictextbox/_highcontrast-definition.scss +3 -0
  236. package/styles/numerictextbox/_highcontrast-light-definition.scss +5 -0
  237. package/styles/numerictextbox/_layout.scss +30 -0
  238. package/styles/numerictextbox/_material-dark-definition.scss +5 -0
  239. package/styles/numerictextbox/_material-definition.scss +3 -0
  240. package/styles/numerictextbox/_material3-definition.scss +3 -0
  241. package/styles/numerictextbox/_tailwind-dark-definition.scss +1 -0
  242. package/styles/numerictextbox/_tailwind-definition.scss +3 -0
  243. package/styles/numerictextbox/_theme.scss +39 -0
  244. package/styles/numerictextbox/bootstrap-dark.scss +5 -1
  245. package/styles/numerictextbox/bootstrap.scss +5 -1
  246. package/styles/numerictextbox/bootstrap4.scss +5 -1
  247. package/styles/numerictextbox/bootstrap5-dark.scss +5 -1
  248. package/styles/numerictextbox/bootstrap5.scss +5 -1
  249. package/styles/numerictextbox/fabric-dark.scss +5 -1
  250. package/styles/numerictextbox/fabric.scss +5 -1
  251. package/styles/numerictextbox/fluent-dark.scss +5 -1
  252. package/styles/numerictextbox/fluent.scss +5 -1
  253. package/styles/numerictextbox/highcontrast-light.scss +5 -1
  254. package/styles/numerictextbox/highcontrast.scss +5 -1
  255. package/styles/numerictextbox/icons/_bootstrap-dark.scss +11 -0
  256. package/styles/numerictextbox/icons/_bootstrap.scss +11 -0
  257. package/styles/numerictextbox/icons/_bootstrap4.scss +11 -0
  258. package/styles/numerictextbox/icons/_bootstrap5-dark.scss +1 -0
  259. package/styles/numerictextbox/icons/_bootstrap5.scss +12 -0
  260. package/styles/numerictextbox/icons/_fabric-dark.scss +11 -0
  261. package/styles/numerictextbox/icons/_fabric.scss +11 -0
  262. package/styles/numerictextbox/icons/_fluent-dark.scss +1 -0
  263. package/styles/numerictextbox/icons/_fluent.scss +12 -0
  264. package/styles/numerictextbox/icons/_fusionnew.scss +12 -0
  265. package/styles/numerictextbox/icons/_highcontrast-light.scss +11 -0
  266. package/styles/numerictextbox/icons/_highcontrast.scss +11 -0
  267. package/styles/numerictextbox/icons/_material-dark.scss +11 -0
  268. package/styles/numerictextbox/icons/_material.scss +11 -0
  269. package/styles/numerictextbox/icons/_material3.scss +12 -0
  270. package/styles/numerictextbox/icons/_tailwind-dark.scss +1 -0
  271. package/styles/numerictextbox/icons/_tailwind.scss +12 -0
  272. package/styles/numerictextbox/material-dark.scss +5 -1
  273. package/styles/numerictextbox/material.scss +5 -1
  274. package/styles/numerictextbox/tailwind-dark.scss +5 -1
  275. package/styles/numerictextbox/tailwind.scss +5 -1
  276. package/styles/signature/_all.scss +2 -0
  277. package/styles/signature/_bootstrap-dark-definition.scss +3 -0
  278. package/styles/signature/_bootstrap-definition.scss +3 -0
  279. package/styles/signature/_bootstrap4-definition.scss +3 -0
  280. package/styles/signature/_bootstrap5-dark-definition.scss +1 -0
  281. package/styles/signature/_bootstrap5-definition.scss +3 -0
  282. package/styles/signature/_fabric-dark-definition.scss +3 -0
  283. package/styles/signature/_fabric-definition.scss +3 -0
  284. package/styles/signature/_fluent-dark-definition.scss +1 -0
  285. package/styles/signature/_fluent-definition.scss +3 -0
  286. package/styles/signature/_fusionnew-definition.scss +3 -0
  287. package/styles/signature/_highcontrast-definition.scss +3 -0
  288. package/styles/signature/_highcontrast-light-definition.scss +3 -0
  289. package/styles/signature/_layout.scss +5 -0
  290. package/styles/signature/_material-dark-definition.scss +3 -0
  291. package/styles/signature/_material-definition.scss +3 -0
  292. package/styles/signature/_material3-definition.scss +3 -0
  293. package/styles/signature/_tailwind-dark-definition.scss +1 -0
  294. package/styles/signature/_tailwind-definition.scss +3 -0
  295. package/styles/signature/_theme.scss +7 -0
  296. package/styles/signature/bootstrap-dark.scss +3 -1
  297. package/styles/signature/bootstrap.scss +3 -1
  298. package/styles/signature/bootstrap4.scss +3 -1
  299. package/styles/signature/bootstrap5-dark.scss +3 -1
  300. package/styles/signature/bootstrap5.scss +3 -1
  301. package/styles/signature/fabric-dark.scss +3 -1
  302. package/styles/signature/fabric.scss +3 -1
  303. package/styles/signature/fluent-dark.scss +3 -1
  304. package/styles/signature/fluent.scss +3 -1
  305. package/styles/signature/highcontrast-light.scss +3 -1
  306. package/styles/signature/highcontrast.scss +3 -1
  307. package/styles/signature/material-dark.scss +3 -1
  308. package/styles/signature/material.scss +3 -1
  309. package/styles/signature/tailwind-dark.scss +3 -1
  310. package/styles/signature/tailwind.scss +3 -1
  311. package/styles/slider/_all.scss +3 -0
  312. package/styles/slider/_bootstrap-dark-definition.scss +155 -0
  313. package/styles/slider/_bootstrap-definition.scss +152 -0
  314. package/styles/slider/_bootstrap4-definition.scss +147 -0
  315. package/styles/slider/_bootstrap5-dark-definition.scss +1 -0
  316. package/styles/slider/_bootstrap5-definition.scss +90 -0
  317. package/styles/slider/_fabric-dark-definition.scss +161 -0
  318. package/styles/slider/_fabric-definition.scss +156 -0
  319. package/styles/slider/_fluent-dark-definition.scss +1 -0
  320. package/styles/slider/_fluent-definition.scss +74 -0
  321. package/styles/slider/_fusionnew-definition.scss +90 -0
  322. package/styles/slider/_highcontrast-definition.scss +145 -0
  323. package/styles/slider/_highcontrast-light-definition.scss +148 -0
  324. package/styles/slider/_icons.scss +0 -0
  325. package/styles/slider/_layout.scss +2424 -0
  326. package/styles/slider/_material-dark-definition.scss +158 -0
  327. package/styles/slider/_material-definition.scss +154 -0
  328. package/styles/slider/_material3-definition.scss +90 -0
  329. package/styles/slider/_tailwind-dark-definition.scss +1 -0
  330. package/styles/slider/_tailwind-definition.scss +84 -0
  331. package/styles/slider/_theme.scss +234 -0
  332. package/styles/slider/bootstrap-dark.scss +5 -1
  333. package/styles/slider/bootstrap.scss +5 -1
  334. package/styles/slider/bootstrap4.scss +5 -1
  335. package/styles/slider/bootstrap5-dark.scss +5 -1
  336. package/styles/slider/bootstrap5.scss +5 -1
  337. package/styles/slider/fabric-dark.scss +5 -1
  338. package/styles/slider/fabric.scss +5 -1
  339. package/styles/slider/fluent-dark.scss +5 -1
  340. package/styles/slider/fluent.scss +5 -1
  341. package/styles/slider/highcontrast-light.scss +5 -1
  342. package/styles/slider/highcontrast.scss +5 -1
  343. package/styles/slider/material-dark.scss +5 -1
  344. package/styles/slider/material.scss +5 -1
  345. package/styles/slider/tailwind-dark.scss +5 -1
  346. package/styles/slider/tailwind.scss +5 -1
  347. package/styles/tailwind-dark.css +4 -2
  348. package/styles/tailwind.css +4 -2
  349. package/styles/textbox/_all.scss +1 -0
  350. package/styles/textbox/_bootstrap-dark-definition.scss +1 -0
  351. package/styles/textbox/_bootstrap-definition.scss +1 -0
  352. package/styles/textbox/_bootstrap4-definition.scss +1 -0
  353. package/styles/textbox/_bootstrap5-dark-definition.scss +1 -0
  354. package/styles/textbox/_bootstrap5-definition.scss +0 -0
  355. package/styles/textbox/_fabric-dark-definition.scss +1 -0
  356. package/styles/textbox/_fabric-definition.scss +1 -0
  357. package/styles/textbox/_fluent-dark-definition.scss +1 -0
  358. package/styles/textbox/_fluent-definition.scss +0 -0
  359. package/styles/textbox/_fusionnew-definition.scss +0 -0
  360. package/styles/textbox/_highcontrast-definition.scss +1 -0
  361. package/styles/textbox/_highcontrast-light-definition.scss +1 -0
  362. package/styles/textbox/_layout.scss +10 -0
  363. package/styles/textbox/_material-dark-definition.scss +1 -0
  364. package/styles/textbox/_material-definition.scss +1 -0
  365. package/styles/textbox/_material3-definition.scss +0 -0
  366. package/styles/textbox/_tailwind-dark-definition.scss +1 -0
  367. package/styles/textbox/_tailwind-definition.scss +0 -0
  368. package/styles/textbox/_theme.scss +0 -0
  369. package/styles/textbox/bootstrap-dark.scss +4 -1
  370. package/styles/textbox/bootstrap.scss +4 -1
  371. package/styles/textbox/bootstrap4.scss +4 -1
  372. package/styles/textbox/bootstrap5-dark.scss +4 -1
  373. package/styles/textbox/bootstrap5.scss +4 -1
  374. package/styles/textbox/fabric-dark.scss +4 -1
  375. package/styles/textbox/fabric.scss +4 -1
  376. package/styles/textbox/fluent-dark.scss +4 -1
  377. package/styles/textbox/fluent.scss +4 -1
  378. package/styles/textbox/highcontrast-light.scss +4 -1
  379. package/styles/textbox/highcontrast.scss +4 -1
  380. package/styles/textbox/material-dark.scss +4 -1
  381. package/styles/textbox/material.scss +4 -1
  382. package/styles/textbox/tailwind-dark.scss +4 -1
  383. package/styles/textbox/tailwind.scss +4 -1
  384. package/styles/uploader/_all.scss +2 -0
  385. package/styles/uploader/_bootstrap-dark-definition.scss +211 -0
  386. package/styles/uploader/_bootstrap-definition.scss +207 -0
  387. package/styles/uploader/_bootstrap4-definition.scss +210 -0
  388. package/styles/uploader/_bootstrap5-dark-definition.scss +1 -0
  389. package/styles/uploader/_bootstrap5-definition.scss +216 -0
  390. package/styles/uploader/_definition.scss +142 -0
  391. package/styles/uploader/_fabric-dark-definition.scss +214 -0
  392. package/styles/uploader/_fabric-definition.scss +208 -0
  393. package/styles/uploader/_fluent-dark-definition.scss +1 -0
  394. package/styles/uploader/_fluent-definition.scss +234 -0
  395. package/styles/uploader/_fusionnew-definition.scss +216 -0
  396. package/styles/uploader/_highcontrast-definition.scss +209 -0
  397. package/styles/uploader/_highcontrast-light-definition.scss +216 -0
  398. package/styles/uploader/_layout.scss +985 -0
  399. package/styles/uploader/_material-dark-definition.scss +214 -0
  400. package/styles/uploader/_material-definition.scss +213 -0
  401. package/styles/uploader/_material3-definition.scss +216 -0
  402. package/styles/uploader/_tailwind-dark-definition.scss +1 -0
  403. package/styles/uploader/_tailwind-definition.scss +231 -0
  404. package/styles/uploader/_theme.scss +139 -0
  405. package/styles/uploader/bootstrap-dark.scss +6 -1
  406. package/styles/uploader/bootstrap.scss +6 -1
  407. package/styles/uploader/bootstrap4.scss +6 -1
  408. package/styles/uploader/bootstrap5-dark.scss +6 -1
  409. package/styles/uploader/bootstrap5.scss +6 -1
  410. package/styles/uploader/fabric-dark.scss +6 -1
  411. package/styles/uploader/fabric.scss +6 -1
  412. package/styles/uploader/fluent-dark.scss +6 -1
  413. package/styles/uploader/fluent.scss +6 -1
  414. package/styles/uploader/highcontrast-light.scss +6 -1
  415. package/styles/uploader/highcontrast.scss +6 -1
  416. package/styles/uploader/icons/_bootstrap-dark.scss +34 -0
  417. package/styles/uploader/icons/_bootstrap.scss +34 -0
  418. package/styles/uploader/icons/_bootstrap4.scss +34 -0
  419. package/styles/uploader/icons/_bootstrap5-dark.scss +1 -0
  420. package/styles/uploader/icons/_bootstrap5.scss +34 -0
  421. package/styles/uploader/icons/_fabric-dark.scss +34 -0
  422. package/styles/uploader/icons/_fabric.scss +34 -0
  423. package/styles/uploader/icons/_fluent-dark.scss +1 -0
  424. package/styles/uploader/icons/_fluent.scss +34 -0
  425. package/styles/uploader/icons/_fusionnew.scss +34 -0
  426. package/styles/uploader/icons/_highcontrast-light.scss +34 -0
  427. package/styles/uploader/icons/_highcontrast.scss +34 -0
  428. package/styles/uploader/icons/_material-dark.scss +34 -0
  429. package/styles/uploader/icons/_material.scss +34 -0
  430. package/styles/uploader/icons/_material3.scss +34 -0
  431. package/styles/uploader/icons/_tailwind-dark.scss +1 -0
  432. package/styles/uploader/icons/_tailwind.scss +34 -0
  433. package/styles/uploader/material-dark.scss +6 -1
  434. package/styles/uploader/material.scss +6 -1
  435. package/styles/uploader/tailwind-dark.scss +6 -1
  436. package/styles/uploader/tailwind.scss +6 -1
  437. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  438. package/@syncfusion/ej2-angular-inputs.es5.js +0 -1563
  439. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  440. package/@syncfusion/ej2-angular-inputs.js +0 -1472
  441. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  442. package/CHANGELOG.md +0 -1447
  443. package/dist/ej2-angular-inputs.umd.js +0 -1644
  444. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  445. package/dist/ej2-angular-inputs.umd.min.js +0 -11
  446. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  447. package/ej2-angular-inputs.d.ts +0 -11
  448. package/ej2-angular-inputs.metadata.json +0 -1
  449. package/postinstall/tagchange.js +0 -18
  450. package/schematics/collection.json +0 -105
  451. package/schematics/generators/colorpicker-default/index.d.ts +0 -3
  452. package/schematics/generators/colorpicker-default/index.js +0 -8
  453. package/schematics/generators/colorpicker-default/sample-details.d.ts +0 -5
  454. package/schematics/generators/colorpicker-default/sample-details.js +0 -7
  455. package/schematics/generators/colorpicker-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
  456. package/schematics/generators/colorpicker-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  457. package/schematics/generators/colorpicker-default/schema.d.ts +0 -3
  458. package/schematics/generators/colorpicker-default/schema.js +0 -2
  459. package/schematics/generators/colorpicker-default/schema.json +0 -124
  460. package/schematics/generators/maskedtextbox-custommask/index.d.ts +0 -3
  461. package/schematics/generators/maskedtextbox-custommask/index.js +0 -8
  462. package/schematics/generators/maskedtextbox-custommask/sample-details.d.ts +0 -5
  463. package/schematics/generators/maskedtextbox-custommask/sample-details.js +0 -7
  464. package/schematics/generators/maskedtextbox-custommask/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  465. package/schematics/generators/maskedtextbox-custommask/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -14
  466. package/schematics/generators/maskedtextbox-custommask/schema.d.ts +0 -3
  467. package/schematics/generators/maskedtextbox-custommask/schema.js +0 -2
  468. package/schematics/generators/maskedtextbox-custommask/schema.json +0 -124
  469. package/schematics/generators/maskedtextbox-default/index.d.ts +0 -3
  470. package/schematics/generators/maskedtextbox-default/index.js +0 -8
  471. package/schematics/generators/maskedtextbox-default/sample-details.d.ts +0 -5
  472. package/schematics/generators/maskedtextbox-default/sample-details.js +0 -7
  473. package/schematics/generators/maskedtextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  474. package/schematics/generators/maskedtextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  475. package/schematics/generators/maskedtextbox-default/schema.d.ts +0 -3
  476. package/schematics/generators/maskedtextbox-default/schema.js +0 -2
  477. package/schematics/generators/maskedtextbox-default/schema.json +0 -124
  478. package/schematics/generators/maskedtextbox-formats/index.d.ts +0 -3
  479. package/schematics/generators/maskedtextbox-formats/index.js +0 -8
  480. package/schematics/generators/maskedtextbox-formats/sample-details.d.ts +0 -5
  481. package/schematics/generators/maskedtextbox-formats/sample-details.js +0 -7
  482. package/schematics/generators/maskedtextbox-formats/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  483. package/schematics/generators/maskedtextbox-formats/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -9
  484. package/schematics/generators/maskedtextbox-formats/schema.d.ts +0 -3
  485. package/schematics/generators/maskedtextbox-formats/schema.js +0 -2
  486. package/schematics/generators/maskedtextbox-formats/schema.json +0 -124
  487. package/schematics/generators/numerictextbox-customformat/index.d.ts +0 -3
  488. package/schematics/generators/numerictextbox-customformat/index.js +0 -8
  489. package/schematics/generators/numerictextbox-customformat/sample-details.d.ts +0 -5
  490. package/schematics/generators/numerictextbox-customformat/sample-details.js +0 -7
  491. package/schematics/generators/numerictextbox-customformat/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  492. package/schematics/generators/numerictextbox-customformat/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -23
  493. package/schematics/generators/numerictextbox-customformat/schema.d.ts +0 -3
  494. package/schematics/generators/numerictextbox-customformat/schema.js +0 -2
  495. package/schematics/generators/numerictextbox-customformat/schema.json +0 -124
  496. package/schematics/generators/numerictextbox-decimals/index.d.ts +0 -3
  497. package/schematics/generators/numerictextbox-decimals/index.js +0 -8
  498. package/schematics/generators/numerictextbox-decimals/sample-details.d.ts +0 -5
  499. package/schematics/generators/numerictextbox-decimals/sample-details.js +0 -7
  500. package/schematics/generators/numerictextbox-decimals/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  501. package/schematics/generators/numerictextbox-decimals/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  502. package/schematics/generators/numerictextbox-decimals/schema.d.ts +0 -3
  503. package/schematics/generators/numerictextbox-decimals/schema.js +0 -2
  504. package/schematics/generators/numerictextbox-decimals/schema.json +0 -124
  505. package/schematics/generators/numerictextbox-default/index.d.ts +0 -3
  506. package/schematics/generators/numerictextbox-default/index.js +0 -8
  507. package/schematics/generators/numerictextbox-default/sample-details.d.ts +0 -5
  508. package/schematics/generators/numerictextbox-default/sample-details.js +0 -7
  509. package/schematics/generators/numerictextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  510. package/schematics/generators/numerictextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -22
  511. package/schematics/generators/numerictextbox-default/schema.d.ts +0 -3
  512. package/schematics/generators/numerictextbox-default/schema.js +0 -2
  513. package/schematics/generators/numerictextbox-default/schema.json +0 -124
  514. package/schematics/generators/numerictextbox-range/index.d.ts +0 -3
  515. package/schematics/generators/numerictextbox-range/index.js +0 -8
  516. package/schematics/generators/numerictextbox-range/sample-details.d.ts +0 -5
  517. package/schematics/generators/numerictextbox-range/sample-details.js +0 -7
  518. package/schematics/generators/numerictextbox-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -14
  519. package/schematics/generators/numerictextbox-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -9
  520. package/schematics/generators/numerictextbox-range/schema.d.ts +0 -3
  521. package/schematics/generators/numerictextbox-range/schema.js +0 -2
  522. package/schematics/generators/numerictextbox-range/schema.json +0 -124
  523. package/schematics/generators/slider-default/index.d.ts +0 -3
  524. package/schematics/generators/slider-default/index.js +0 -8
  525. package/schematics/generators/slider-default/sample-details.d.ts +0 -5
  526. package/schematics/generators/slider-default/sample-details.js +0 -7
  527. package/schematics/generators/slider-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  528. package/schematics/generators/slider-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  529. package/schematics/generators/slider-default/schema.d.ts +0 -3
  530. package/schematics/generators/slider-default/schema.js +0 -2
  531. package/schematics/generators/slider-default/schema.json +0 -124
  532. package/schematics/generators/slider-limits/index.d.ts +0 -3
  533. package/schematics/generators/slider-limits/index.js +0 -8
  534. package/schematics/generators/slider-limits/sample-details.d.ts +0 -5
  535. package/schematics/generators/slider-limits/sample-details.js +0 -7
  536. package/schematics/generators/slider-limits/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  537. package/schematics/generators/slider-limits/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  538. package/schematics/generators/slider-limits/schema.d.ts +0 -3
  539. package/schematics/generators/slider-limits/schema.js +0 -2
  540. package/schematics/generators/slider-limits/schema.json +0 -124
  541. package/schematics/generators/slider-minrange/index.d.ts +0 -3
  542. package/schematics/generators/slider-minrange/index.js +0 -8
  543. package/schematics/generators/slider-minrange/sample-details.d.ts +0 -5
  544. package/schematics/generators/slider-minrange/sample-details.js +0 -7
  545. package/schematics/generators/slider-minrange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  546. package/schematics/generators/slider-minrange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  547. package/schematics/generators/slider-minrange/schema.d.ts +0 -3
  548. package/schematics/generators/slider-minrange/schema.js +0 -2
  549. package/schematics/generators/slider-minrange/schema.json +0 -124
  550. package/schematics/generators/slider-range/index.d.ts +0 -3
  551. package/schematics/generators/slider-range/index.js +0 -8
  552. package/schematics/generators/slider-range/sample-details.d.ts +0 -5
  553. package/schematics/generators/slider-range/sample-details.js +0 -7
  554. package/schematics/generators/slider-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  555. package/schematics/generators/slider-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  556. package/schematics/generators/slider-range/schema.d.ts +0 -3
  557. package/schematics/generators/slider-range/schema.js +0 -2
  558. package/schematics/generators/slider-range/schema.json +0 -124
  559. package/schematics/generators/slider-ticks/index.d.ts +0 -3
  560. package/schematics/generators/slider-ticks/index.js +0 -8
  561. package/schematics/generators/slider-ticks/sample-details.d.ts +0 -5
  562. package/schematics/generators/slider-ticks/sample-details.js +0 -7
  563. package/schematics/generators/slider-ticks/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  564. package/schematics/generators/slider-ticks/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  565. package/schematics/generators/slider-ticks/schema.d.ts +0 -3
  566. package/schematics/generators/slider-ticks/schema.js +0 -2
  567. package/schematics/generators/slider-ticks/schema.json +0 -124
  568. package/schematics/generators/slider-vertical/index.d.ts +0 -3
  569. package/schematics/generators/slider-vertical/index.js +0 -8
  570. package/schematics/generators/slider-vertical/sample-details.d.ts +0 -5
  571. package/schematics/generators/slider-vertical/sample-details.js +0 -7
  572. package/schematics/generators/slider-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
  573. package/schematics/generators/slider-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  574. package/schematics/generators/slider-vertical/schema.d.ts +0 -3
  575. package/schematics/generators/slider-vertical/schema.js +0 -2
  576. package/schematics/generators/slider-vertical/schema.json +0 -124
  577. package/schematics/generators/textbox-floatinglabel/index.d.ts +0 -3
  578. package/schematics/generators/textbox-floatinglabel/index.js +0 -8
  579. package/schematics/generators/textbox-floatinglabel/sample-details.d.ts +0 -5
  580. package/schematics/generators/textbox-floatinglabel/sample-details.js +0 -7
  581. package/schematics/generators/textbox-floatinglabel/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -15
  582. package/schematics/generators/textbox-floatinglabel/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -21
  583. package/schematics/generators/textbox-floatinglabel/schema.d.ts +0 -3
  584. package/schematics/generators/textbox-floatinglabel/schema.js +0 -2
  585. package/schematics/generators/textbox-floatinglabel/schema.json +0 -124
  586. package/schematics/generators/uploader-autoupload/index.d.ts +0 -3
  587. package/schematics/generators/uploader-autoupload/index.js +0 -8
  588. package/schematics/generators/uploader-autoupload/sample-details.d.ts +0 -5
  589. package/schematics/generators/uploader-autoupload/sample-details.js +0 -7
  590. package/schematics/generators/uploader-autoupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  591. package/schematics/generators/uploader-autoupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  592. package/schematics/generators/uploader-autoupload/schema.d.ts +0 -3
  593. package/schematics/generators/uploader-autoupload/schema.js +0 -2
  594. package/schematics/generators/uploader-autoupload/schema.json +0 -124
  595. package/schematics/generators/uploader-chunkupload/index.d.ts +0 -3
  596. package/schematics/generators/uploader-chunkupload/index.js +0 -8
  597. package/schematics/generators/uploader-chunkupload/sample-details.d.ts +0 -5
  598. package/schematics/generators/uploader-chunkupload/sample-details.js +0 -7
  599. package/schematics/generators/uploader-chunkupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  600. package/schematics/generators/uploader-chunkupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  601. package/schematics/generators/uploader-chunkupload/schema.d.ts +0 -3
  602. package/schematics/generators/uploader-chunkupload/schema.js +0 -2
  603. package/schematics/generators/uploader-chunkupload/schema.json +0 -124
  604. package/schematics/generators/uploader-directoryupload/index.d.ts +0 -3
  605. package/schematics/generators/uploader-directoryupload/index.js +0 -8
  606. package/schematics/generators/uploader-directoryupload/sample-details.d.ts +0 -5
  607. package/schematics/generators/uploader-directoryupload/sample-details.js +0 -7
  608. package/schematics/generators/uploader-directoryupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  609. package/schematics/generators/uploader-directoryupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  610. package/schematics/generators/uploader-directoryupload/schema.d.ts +0 -3
  611. package/schematics/generators/uploader-directoryupload/schema.js +0 -2
  612. package/schematics/generators/uploader-directoryupload/schema.json +0 -124
  613. package/schematics/generators/uploader-validation/index.d.ts +0 -3
  614. package/schematics/generators/uploader-validation/index.js +0 -8
  615. package/schematics/generators/uploader-validation/sample-details.d.ts +0 -5
  616. package/schematics/generators/uploader-validation/sample-details.js +0 -7
  617. package/schematics/generators/uploader-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  618. package/schematics/generators/uploader-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  619. package/schematics/generators/uploader-validation/schema.d.ts +0 -3
  620. package/schematics/generators/uploader-validation/schema.js +0 -2
  621. package/schematics/generators/uploader-validation/schema.json +0 -124
  622. package/schematics/ng-add/index.d.ts +0 -3
  623. package/schematics/ng-add/index.js +0 -9
  624. package/schematics/ng-add/schema.d.ts +0 -13
  625. package/schematics/ng-add/schema.js +0 -2
  626. package/schematics/ng-add/schema.json +0 -34
  627. package/schematics/tsconfig.json +0 -25
  628. package/schematics/utils/lib-details.d.ts +0 -4
  629. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,4272 @@
1
+ @include export-module('input-theme') {
2
+ /*! input theme */
3
+
4
+ input.e-input#{$css},
5
+ .e-input-group input.e-input,
6
+ .e-input-group.e-control-wrapper input.e-input,
7
+ .e-input-group textarea.e-input,
8
+ .e-input-group.e-control-wrapper textarea.e-input,
9
+ textarea.e-input#{$css},
10
+ .e-float-input input,
11
+ .e-float-input.e-control-wrapper input,
12
+ .e-float-input textarea,
13
+ .e-float-input.e-control-wrapper textarea {
14
+ background: $input-bg-color;
15
+ border-color: $input-box-border-color;
16
+ color: $input-font-color;
17
+ }
18
+
19
+ .e-input-group,
20
+ .e-input-group.e-control-wrapper,
21
+ .e-float-input,
22
+ .e-float-input.e-input-group,
23
+ .e-float-input.e-control-wrapper,
24
+ .e-float-input.e-input-group.e-control-wrapper {
25
+ background: $input-bg-color;
26
+ color: $input-font-color;
27
+ }
28
+
29
+ .e-input-group .e-input-group-icon,
30
+ .e-input-group.e-control-wrapper .e-input-group-icon {
31
+ background: transparent;
32
+ border-color: $input-box-border-color;
33
+ color: $input-icon-font-color;
34
+ @if ($input-skin-name == 'FluentUI') {
35
+ border-color: $input-group-icon-border-color;
36
+ }
37
+ }
38
+
39
+ .e-input-group.e-disabled .e-input-group-icon,
40
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
41
+ color: $input-group-disabled-color;
42
+ }
43
+
44
+ // sass-lint:disable no-vendor-prefixes
45
+ .e-input#{$css}[disabled],
46
+ .e-input-group .e-input[disabled],
47
+ .e-input-group.e-control-wrapper .e-input[disabled],
48
+ .e-input-group.e-disabled,
49
+ .e-input-group.e-control-wrapper.e-disabled,
50
+ .e-float-input input[disabled],
51
+ .e-float-input.e-control-wrapper input[disabled],
52
+ .e-float-input textarea[disabled],
53
+ .e-float-input.e-control-wrapper textarea[disabled],
54
+ .e-float-input.e-disabled,
55
+ .e-float-input.e-control-wrapper.e-disabled {
56
+ @if $input-skin-name != 'bootstrap5' {
57
+ -webkit-text-fill-color: $input-disable-font-color;
58
+ }
59
+ background: $input-disable-bg-color;
60
+ color: $input-disable-font-color;
61
+ @if $input-skin-name == 'material' {
62
+ background-image: linear-gradient(90deg, $input-disable-border-color 0, $input-disable-border-color 33%, transparent 0);
63
+ background-position: bottom -1px left 0;
64
+ background-repeat: repeat-x;
65
+ background-size: 4px 1px;
66
+ border-bottom-color: transparent;
67
+ }
68
+
69
+ @else {
70
+ border-color: $input-disable-border-color;
71
+ }
72
+ }
73
+
74
+ .e-input-group input.e-input,
75
+ .e-input-group.e-control-wrapper input.e-input,
76
+ .e-float-input input,
77
+ .e-float-input.e-control-wrapper input,
78
+ .e-input-group textarea.e-input,
79
+ .e-input-group.e-control-wrapper textarea.e-input,
80
+ .e-float-input textarea,
81
+ .e-float-input.e-control-wrapper textarea,
82
+ .e-input-group .e-input[disabled],
83
+ .e-input-group.e-control-wrapper .e-input[disabled],
84
+ .e-input-group.e-disabled input.e-input,
85
+ .e-input-group.e-control-wrapper.e-disabled input.e-input,
86
+ .e-input-group.e-disabled textarea.e-input,
87
+ .e-input-group.e-control-wrapper.e-disabled textarea.e-input {
88
+ background: none;
89
+ color: inherit;
90
+ }
91
+
92
+ .e-input-group .e-input[readonly],
93
+ .e-input-group.e-control-wrapper .e-input[readonly],
94
+ .e-float-input input[readonly],
95
+ .e-float-input.e-control-wrapper input[readonly],
96
+ .e-float-input textarea[readonly],
97
+ .e-float-input.e-control-wrapper textarea[readonly] {
98
+ background: $input-readonly-bg-color;
99
+ @if $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' {
100
+ color: $input-readonly-color;
101
+ }
102
+ @if $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5' {
103
+ color: inherit;
104
+ }
105
+ }
106
+
107
+ .e-input-group .e-input[readonly] ~ span.e-input-group-icon,
108
+ .e-input-group.e-control-wrapper .e-input[readonly] ~ span.e-input-group-icon,
109
+ .e-float-input input[readonly] ~ span.e-input-group-icon,
110
+ .e-float-input.e-control-wrapper input[readonly] ~ span.e-input-group-icon,
111
+ .e-float-input.e-control-wrapper input[readonly] ~ span.e-clear-icon {
112
+ @if $input-skin-name == 'bootstrap5' {
113
+ background: $input-readonly-bg-color;
114
+ color: $input-icon-font-color;
115
+ }
116
+ }
117
+
118
+ .e-float-input.e-disabled input,
119
+ .e-float-input.e-control-wrapper.e-disabled input,
120
+ .e-float-input.e-disabled textarea,
121
+ .e-float-input.e-control-wrapper.e-disabled textarea,
122
+ .e-float-input input[disabled],
123
+ .e-float-input.e-control-wrapper input[disabled],
124
+ .e-float-input textarea[disabled],
125
+ .e-float-input.e-control-wrapper textarea[disabled] {
126
+ color: inherit;
127
+ }
128
+
129
+ // sass-lint:disable no-vendor-prefixes
130
+ /*! Added color to textbox for disbaled state */
131
+ .e-float-input:not(.e-disabled) input[disabled],
132
+ .e-float-input.e-control-wrapper:not(.e-disabled) input[disabled],
133
+ .e-float-input:not(.e-disabled) textarea[disabled],
134
+ .e-float-input.e-control-wrapper:not(.e-disabled) textarea[disabled] {
135
+ -webkit-text-fill-color: $input-disable-font-color;
136
+ color: $input-disable-font-color;
137
+ }
138
+
139
+ .e-input-group.e-disabled .e-input-group-icon,
140
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
141
+ background: $input-disabled-group-bg-color;
142
+ border-color: $input-disable-border-color;
143
+ }
144
+
145
+ .e-input-group:not(.e-disabled) .e-input-group-icon:hover,
146
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:hover {
147
+ @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' {
148
+ background: $input-hover-bg-color;
149
+ }
150
+ @if $input-skin-name == 'bootstrap4' {
151
+ border-color: $input-group-border-color-hover;
152
+ }
153
+ @if $input-skin-name == 'highcontrast' {
154
+ border-color: $input-group-border-color-hover;
155
+ }
156
+ color: $input-group-hovered-color;
157
+ }
158
+
159
+ .e-input-group.e-disabled .e-input-group-icon:hover,
160
+ .e-input-group.e-control-wrapper.e-disabled .e-input-group-icon:hover {
161
+ @if $input-skin-name == 'material' {
162
+ background: transparent;
163
+ }
164
+ }
165
+
166
+ .e-input#{$css}.e-success,
167
+ .e-input#{$css}.e-success:focus,
168
+ .e-input-group.e-success input.e-input,
169
+ .e-input-group.e-control-wrapper.e-success input.e-input,
170
+ .e-input-group.e-success .e-input-group-icon,
171
+ .e-input-group.e-control-wrapper.e-success .e-input-group-icon,
172
+ .e-input-group.e-success textarea.e-input,
173
+ .e-input-group.e-control-wrapper.e-success textarea.e-input {
174
+ border-color: $input-success-color;
175
+ }
176
+
177
+ .e-input#{$css}.e-warning,
178
+ .e-input#{$css}.e-warning:focus,
179
+ .e-input-group.e-warning input.e-input,
180
+ .e-input-group.e-control-wrapper.e-warning input.e-input,
181
+ .e-input-group.e-warning .e-input-group-icon,
182
+ .e-input-group.e-control-wrapper.e-warning .e-input-group-icon,
183
+ .e-input-group.e-warning textarea.e-input,
184
+ .e-input-group.e-control-wrapper.e-warning textarea.e-input {
185
+ border-color: $input-warning-color;
186
+ }
187
+
188
+ .e-input + .e-input-group-icon:not(.e-input-group):not(.e-float-icon-left):last-child:hover,
189
+ .e-input-group.e-success .e-input + .e-input-group-icon:last-child:hover,
190
+ .e-input-group.e-success.e-control-wrapper .e-input + .e-input-group-icon:last-child:hover {
191
+ @if $input-skin-name == 'highcontrast' {
192
+ border-color: $input-success-color;
193
+ }
194
+ }
195
+
196
+ .e-input#{$css}.e-error,
197
+ .e-input#{$css}.e-error:focus,
198
+ .e-input-group.e-error input.e-input,
199
+ .e-input-group.e-control-wrapper.e-error input.e-input,
200
+ .e-input-group.e-control-wrapper.e-error .e-input-group-icon,
201
+ .e-input-group.e-error .e-input-group-icon,
202
+ .e-input-group.e-error textarea.e-input,
203
+ .e-input-group.e-control-wrapper.e-error textarea.e-input {
204
+ border-color: $input-error-color;
205
+ }
206
+
207
+ label.e-float-text,
208
+ .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
209
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
210
+ .e-float-input.e-bigger:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
211
+ .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,
212
+ .e-bigger .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
213
+ .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,
214
+ .e-float-input.e-small: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.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
216
+ .e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
217
+ .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,
218
+ .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,
219
+ .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,
220
+ .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,
221
+ .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 {
222
+ color: $input-header-font-color;
223
+ @if $input-skin-name == 'highcontrast' {
224
+ color: $input-placeholder;
225
+ }
226
+ }
227
+
228
+ .e-float-input.e-error label.e-float-text,
229
+ .e-float-input.e-control-wrapper.e-error label.e-float-text,
230
+ .e-float-input.e-error input:focus ~ label.e-float-text,
231
+ .e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
232
+ .e-float-input.e-error.e-input-focus input ~ label.e-float-text,
233
+ .e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
234
+ .e-float-input.e-error textarea:focus ~ label.e-float-text,
235
+ .e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text {
236
+ color: $input-error-color;
237
+ @if $input-skin-name == 'highcontrast' {
238
+ color: $content-font;
239
+ }
240
+ @if ($input-skin-name == 'FluentUI') {
241
+ color: $float-label-font-color;
242
+ }
243
+ }
244
+
245
+ .e-float-input input,
246
+ .e-float-input textarea,
247
+ .e-float-input.e-control-wrapper input,
248
+ .e-float-input.e-control-wrapper textarea {
249
+ border-bottom-color: $input-box-border-color;
250
+ }
251
+
252
+ .e-float-input.e-success input,
253
+ .e-float-input.e-success textarea,
254
+ .e-float-input.e-control-wrapper.e-success input,
255
+ .e-float-input.e-control-wrapper.e-success textarea {
256
+ @include input-state-color ($input-success-color);
257
+ }
258
+
259
+ .e-float-input.e-warning input,
260
+ .e-float-input.e-control-wrapper.e-warning input,
261
+ .e-float-input.e-warning textarea,
262
+ .e-float-input.e-control-wrapper.e-warning textarea {
263
+ @include input-state-color ($input-warning-color);
264
+ }
265
+
266
+ .e-float-input.e-error input,
267
+ .e-float-input.e-control-wrapper.e-error input,
268
+ .e-float-input.e-error textarea,
269
+ .e-float-input.e-control-wrapper.e-error textarea {
270
+ @include input-state-color ($input-error-color);
271
+ }
272
+
273
+ label.e-float-text,
274
+ .e-float-input label.e-float-text,
275
+ .e-float-input.e-control-wrapper label.e-float-text,
276
+ .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
277
+ .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
278
+ .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
279
+ .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
280
+ @if $input-skin-name == 'highcontrast' {
281
+ color: $content-font-alt;
282
+ }
283
+ }
284
+
285
+ .e-float-input:not(.e-input-group) .e-float-line::before,
286
+ .e-float-input:not(.e-input-group) .e-float-line::after,
287
+ .e-float-input:not(.e-input-group) .e-float-line::before,
288
+ .e-float-input:not(.e-input-group) .e-float-line::after,
289
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::before,
290
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::after,
291
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::before,
292
+ .e-float-input.e-control-wrapper:not(.e-input-group) .e-float-line::after {
293
+ @if $input-skin-name == 'material' {
294
+ background: $input-active-accent-color;
295
+ }
296
+ }
297
+
298
+ label.e-float-text,
299
+ .e-float-input label.e-float-text,
300
+ .e-float-input.e-control-wrapper label.e-float-text,
301
+ .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
302
+ .e-float-input.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
303
+ .e-bigger .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
304
+ .e-float-input.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
305
+ .e-small .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
306
+ .e-bigger .e-float-input.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
307
+ .e-small .e-float-input.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
308
+ .e-float-input.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
309
+ .e-bigger.e-small .e-float-input:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
310
+ .e-float-input.e-bigger.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
311
+ .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
312
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
313
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
314
+ .e-float-input.e-control-wrapper.e-small:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
315
+ .e-small .e-float-input.e-control-wrapper:not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
316
+ .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,
317
+ .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,
318
+ .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,
319
+ .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,
320
+ .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 {
321
+ @if $input-skin-name == 'highcontrast' {
322
+ color: $content-font-alt;
323
+ }
324
+ }
325
+
326
+ .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
327
+ .e-float-input.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
328
+ .e-bigger .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
329
+ .e-float-input.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
330
+ .e-small .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
331
+ .e-bigger .e-float-input.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
332
+ .e-small .e-float-input.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
333
+ .e-float-input.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
334
+ .e-bigger.e-small .e-float-input textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
335
+ .e-float-input.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
336
+ .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
337
+ .e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
338
+ .e-bigger .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
339
+ .e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
340
+ .e-small .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
341
+ .e-bigger .e-float-input.e-control-wrapper.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
342
+ .e-small .e-float-input.e-control-wrapper.e-bigger textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
343
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
344
+ .e-bigger.e-small .e-float-input.e-control-wrapper textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
345
+ .e-float-input.e-control-wrapper.e-bigger.e-small textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
346
+ @if $input-skin-name == 'highcontrast' {
347
+ color: $content-font-alt;
348
+ }
349
+ }
350
+
351
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::before,
352
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::after,
353
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::before,
354
+ .e-float-input.e-success:not(.e-input-group) .e-float-line::after,
355
+ .e-float-input.e-control-wrapper.e-success:not(.e-input-group) .e-float-line::before,
356
+ .e-float-input.e-control-wrapper.e-success:not(.e-input-group) .e-float-line::after,
357
+ .e-float-input.e-control-wrapper.e-success:not(.e-input-group) .e-float-line::before,
358
+ .e-float-input.e-control-wrapper.e-success:not(.e-input-group) .e-float-line::after {
359
+ @if $input-skin-name == 'material' {
360
+ background: $input-success-color;
361
+ }
362
+ }
363
+
364
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::before,
365
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::after,
366
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::before,
367
+ .e-float-input.e-warning:not(.e-input-group) .e-float-line::after,
368
+ .e-float-input.e-control-wrapper.e-warning:not(.e-input-group) .e-float-line::before,
369
+ .e-float-input.e-control-wrapper.e-warning:not(.e-input-group) .e-float-line::after,
370
+ .e-float-input.e-control-wrapper.e-warning:not(.e-input-group) .e-float-line::before,
371
+ .e-float-input.e-control-wrapper.e-warning:not(.e-input-group) .e-float-line::after {
372
+ @if $input-skin-name == 'material' {
373
+ background: $input-warning-color;
374
+ }
375
+ }
376
+
377
+ .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),
378
+ .e-float-input:not(.e-error):not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
379
+ .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) {
380
+ color: $input-placeholder;
381
+ }
382
+
383
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::before,
384
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::after,
385
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::before,
386
+ .e-float-input.e-error:not(.e-input-group) .e-float-line::after,
387
+ .e-float-input.e-control-wrapper.e-error:not(.e-input-group) .e-float-line::before,
388
+ .e-float-input.e-control-wrapper.e-error:not(.e-input-group) .e-float-line::after,
389
+ .e-float-input.e-control-wrapper.e-error:not(.e-input-group) .e-float-line::before,
390
+ .e-float-input.e-control-wrapper.e-error:not(.e-input-group) .e-float-line::after {
391
+ @if $input-skin-name == 'material' {
392
+ background: $input-error-color;
393
+ }
394
+ }
395
+
396
+ // sass-lint:disable no-vendor-prefixes
397
+ .e-input-group:not(.e-disabled) .e-input-group-icon:active,
398
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:active {
399
+ background: $input-group-pressed-bg;
400
+ color: $input-group-pressed-color;
401
+ @if $input-skin-name == 'bootstrap' {
402
+ -webkit-box-shadow: $input-icon-shadow;
403
+ box-shadow: $input-icon-shadow;
404
+ }
405
+ @if $input-skin-name == 'bootstrap4' {
406
+ -webkit-box-shadow: $input-icon-shadow;
407
+ border-color: $pressed-border-color;
408
+ box-shadow: $input-icon-shadow;
409
+ }
410
+ @if $input-skin-name == 'highcontrast' {
411
+ border-left-color: transparent;
412
+ border-right-color: transparent;
413
+ }
414
+ }
415
+
416
+ .e-float-input.e-input-group.e-small.e-float-icon-left .e-input-group-icon:last-child:hover,
417
+ .e-float-input.e-input-group.e-float-icon-left .e-input-group-icon:last-child:hover,
418
+ .e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left .e-input-group-icon:last-child:hover,
419
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-group-icon:last-child:hover {
420
+ @if $input-skin-name == 'highcontrast' {
421
+ border-right-color: transparent;
422
+ }
423
+ }
424
+
425
+ .e-float-input.e-input-group.e-small.e-float-icon-left .e-input-group-icon:not(:last-child):hover,
426
+ .e-float-input.e-input-group.e-float-icon-left .e-input-group-icon:not(:last-child):hover,
427
+ .e-float-input.e-control-wrapper.e-input-group.e-small.e-float-icon-left .e-input-group-icon:not(:last-child):hover,
428
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-group-icon:not(:last-child):hover {
429
+ @if $input-skin-name == 'highcontrast' {
430
+ border-left-color: transparent;
431
+ }
432
+ }
433
+
434
+ .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,
435
+ .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 {
436
+ @if $input-skin-name == 'highcontrast' {
437
+ border-right-color: transparent;
438
+ }
439
+ }
440
+
441
+ .e-input-group.e-small.e-float-icon-left:not(.e-disabled) .e-input-group-icon:first-child:hover,
442
+ .e-input-group.e-control-wrapper.e-small.e-float-icon-left:not(.e-disabled) .e-input-group-icon:first-child:hover {
443
+ @if $input-skin-name == 'highcontrast' {
444
+ border-left-color: transparent;
445
+ }
446
+ }
447
+
448
+ .e-input-group.e-small:not(.e-disabled) .e-input-group-icon:first-child:hover,
449
+ .e-input-group.e-float-icon-left .e-input-group-icon:first-child:hover,
450
+ .e-input-group.e-control-wrapper.e-small:not(.e-disabled) .e-input-group-icon:first-child:hover,
451
+ .e-input-group.e-control-wrapper.e-float-icon-left .e-input-group-icon:first-child:hover {
452
+ @if $input-skin-name == 'highcontrast' {
453
+ border-left-color: transparent;
454
+ }
455
+ }
456
+
457
+ .e-input-group.e-small:not(.e-disabled):not(.e-float-input):not(.e-rtl) .e-input-group-icon:last-child:hover,
458
+ .e-input-group.e-float-icon-left .e-input-group-icon:last-child:hover,
459
+ .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,
460
+ .e-input-group.e-control-wrapper.e-float-icon-left .e-input-group-icon:last-child:hover {
461
+ @if $input-skin-name == 'highcontrast' {
462
+ border-right-color: transparent;
463
+ }
464
+ }
465
+
466
+ // sass-lint:disable no-vendor-prefixes
467
+ .e-input-group.e-rtl:not(.e-disabled) .e-input-group-icon:last-child:hover,
468
+ .e-input-group.e-control-wrapper.e-rtl:not(.e-disabled) .e-input-group-icon:last-child:hover {
469
+ @if $input-skin-name == 'highcontrast' {
470
+ border-left-color: transparent;
471
+ }
472
+ }
473
+
474
+ // sass-lint:disable no-vendor-prefixes
475
+ .e-input-group:not(.e-rtl):not(.e-disabled) .e-input + .e-input-group-icon:last-child:hover,
476
+ .e-input-group.e-control-wrapper:not(.e-rtl):not(.e-disabled) .e-input + .e-input-group-icon:last-child:hover {
477
+ @if $input-skin-name == 'highcontrast' {
478
+ border-right-color: transparent;
479
+ }
480
+ }
481
+
482
+ // sass-lint:disable no-vendor-prefixes
483
+ .e-input-group:not(.e-disabled) .e-input-group-icon:first-child:hover,
484
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-input-group-icon:first-child:hover {
485
+ @if $input-skin-name == 'highcontrast' {
486
+ border-left-color: transparent;
487
+ }
488
+ }
489
+
490
+ // sass-lint:disable no-vendor-prefixes
491
+ .e-input-group:not(.e-disabled) .e-input-group-icon:not(:last-child):hover + .e-input-group-icon:not(:last-child):hover,
492
+ .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 {
493
+ @if $input-skin-name == 'highcontrast' {
494
+ border-right-color: transparent;
495
+ }
496
+ }
497
+
498
+ // sass-lint:disable no-vendor-prefixes
499
+ .e-input-group:not(.e-rtl):not(.e-disabled) .e-input-group-icon:last-child:hover,
500
+ .e-input-group.e-control-wrapper:not(.e-rtl):not(.e-disabled) .e-input-group-icon:last-child:hover {
501
+ @if $input-skin-name == 'highcontrast' {
502
+ border-right-color: transparent;
503
+ }
504
+ }
505
+
506
+ input.e-input#{$css}::selection,
507
+ textarea.e-input#{$css}::selection,
508
+ .e-input-group input.e-input::selection,
509
+ .e-input-group.e-control-wrapper input.e-input::selection,
510
+ .e-float-input input::selection,
511
+ .e-float-input.e-control-wrapper input::selection,
512
+ .e-input-group textarea.e-input::selection,
513
+ .e-input-group.e-control-wrapper textarea.e-input::selection,
514
+ .e-float-input textarea::selection,
515
+ .e-float-input.e-control-wrapper textarea::selection {
516
+ @include input-selection;
517
+ }
518
+
519
+ .e-float-input.e-small textarea::selection,
520
+ .e-float-input textarea::selection {
521
+ @include input-selection;
522
+ }
523
+
524
+ // sass-lint:disable no-vendor-prefixes
525
+ input.e-input#{$css}:-moz-placeholder {
526
+ color: $input-placeholder;
527
+ }
528
+
529
+ // sass-lint:disable no-vendor-prefixes
530
+ .e-input-group input.e-input:-moz-placeholder {
531
+ color: $input-placeholder;
532
+ }
533
+
534
+ // sass-lint:disable no-vendor-prefixes
535
+ .e-input-group input.e-input:-moz-placeholder,
536
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder {
537
+ color: $input-placeholder;
538
+ }
539
+
540
+ // sass-lint:disable no-vendor-prefixes
541
+ input.e-input#{$css}:-moz-placeholder {
542
+ color: $input-placeholder;
543
+ }
544
+
545
+ // sass-lint:disable no-vendor-prefixes
546
+ .e-input-group input.e-input:-moz-placeholder {
547
+ color: $input-placeholder;
548
+ }
549
+
550
+ // sass-lint:disable no-vendor-prefixes
551
+ .e-input-group.e-control-wrapper input.e-input:-moz-placeholder {
552
+ color: $input-placeholder;
553
+ }
554
+
555
+ // sass-lint:disable no-vendor-prefixes
556
+ textarea.e-input#{$css}:-moz-placeholder {
557
+ color: $input-placeholder;
558
+ }
559
+
560
+ // sass-lint:disable no-vendor-prefixes
561
+ .e-input-group textarea.e-input:-moz-placeholder {
562
+ color: $input-placeholder;
563
+ }
564
+
565
+ // sass-lint:disable no-vendor-prefixes
566
+ .e-input-group.e-control-wrapper textarea.e-input:-moz-placeholder {
567
+ color: $input-placeholder;
568
+ }
569
+
570
+ // sass-lint:disable no-vendor-prefixes
571
+ input.e-input#{$css}::-moz-placeholder {
572
+ color: $input-placeholder;
573
+ }
574
+
575
+ // sass-lint:disable no-vendor-prefixes
576
+ .e-input-group input.e-input::-moz-placeholder {
577
+ color: $input-placeholder;
578
+ }
579
+
580
+ // sass-lint:disable no-vendor-prefixes
581
+ .e-input-group.e-control-wrapper input.e-input::-moz-placeholder {
582
+ color: $input-placeholder;
583
+ }
584
+
585
+ // sass-lint:disable no-vendor-prefixes
586
+ textarea.e-input#{$css}::-moz-placeholder {
587
+ color: $input-placeholder;
588
+ }
589
+
590
+ // sass-lint:disable no-vendor-prefixes
591
+ .e-input-group textarea.e-input::-moz-placeholder {
592
+ color: $input-placeholder;
593
+ }
594
+
595
+ // sass-lint:disable no-vendor-prefixes
596
+ .e-input-group.e-control-wrapper textarea.e-input::-moz-placeholder {
597
+ color: $input-placeholder;
598
+ }
599
+
600
+ // sass-lint:disable no-vendor-prefixes
601
+ input.e-input#{$css}:-ms-input-placeholder {
602
+ color: $input-placeholder;
603
+ }
604
+
605
+ // sass-lint:disable no-vendor-prefixes
606
+ .e-input-group input.e-input:-ms-input-placeholder {
607
+ color: $input-placeholder;
608
+ }
609
+
610
+ // sass-lint:disable no-vendor-prefixes
611
+ .e-input-group.e-control-wrapper input.e-input:-ms-input-placeholder {
612
+ color: $input-placeholder;
613
+ }
614
+
615
+ // sass-lint:disable no-vendor-prefixes
616
+ textarea.e-input#{$css}:-ms-input-placeholder {
617
+ color: $input-placeholder;
618
+ }
619
+
620
+ // sass-lint:disable no-vendor-prefixes
621
+ .e-input-group.e-control-wrapper textarea.e-input:-ms-input-placeholder {
622
+ color: $input-placeholder;
623
+ }
624
+
625
+ // sass-lint:disable no-vendor-prefixes
626
+ .e-input-group textarea.e-input:-ms-input-placeholder {
627
+ color: $input-placeholder;
628
+ }
629
+
630
+ // sass-lint:disable no-vendor-prefixes
631
+ input.e-input#{$css}::-webkit-input-placeholder {
632
+ color: $input-placeholder;
633
+ }
634
+
635
+ // sass-lint:disable no-vendor-prefixes
636
+ .e-input-group.e-control-wrapper input.e-input::-webkit-input-placeholder {
637
+ color: $input-placeholder;
638
+ }
639
+
640
+ // sass-lint:disable no-vendor-prefixes
641
+ .e-input-group input.e-input::-webkit-input-placeholder {
642
+ color: $input-placeholder;
643
+ }
644
+
645
+ // sass-lint:disable no-vendor-prefixes
646
+ textarea.e-input#{$css}::-webkit-input-placeholder {
647
+ color: $input-placeholder;
648
+ }
649
+
650
+ // sass-lint:disable no-vendor-prefixes
651
+ .e-input-group textarea.e-input::-webkit-input-placeholder {
652
+ color: $input-placeholder;
653
+ }
654
+
655
+ // sass-lint:disable no-vendor-prefixes
656
+ .e-input-group.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
657
+ color: $input-placeholder;
658
+ }
659
+
660
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input)::before,
661
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input)::after,
662
+ .e-input-group.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::before,
663
+ .e-input-group.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after,
664
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::before,
665
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::after,
666
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::before,
667
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input) .e-input-in-wrap::after {
668
+ @if $input-skin-name == 'material' {
669
+ @include input-group-animation-bg;
670
+ }
671
+ }
672
+
673
+ .e-float-input.e-input-group:not(.e-float-icon-left) .e-float-line::before,
674
+ .e-float-input.e-input-group:not(.e-float-icon-left) .e-float-line::after,
675
+ .e-float-input.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::before,
676
+ .e-float-input.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::after,
677
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::before,
678
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left) .e-float-line::after,
679
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::before,
680
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-input-in-wrap .e-float-line::after {
681
+ @if $input-skin-name == 'material' {
682
+ @include input-group-animation-bg;
683
+ }
684
+ }
685
+
686
+ .e-input-group::before,
687
+ .e-input-group::after,
688
+ .e-input-group.e-control-wrapper::before,
689
+ .e-input-group.e-control-wrapper::after {
690
+ @if $input-skin-name != 'material' {
691
+ @include input-group-animation-bg;
692
+ }
693
+ }
694
+
695
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input).e-success::before,
696
+ .e-input-group:not(.e-float-icon-left):not(.e-float-input).e-success::after,
697
+ .e-input-group.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::before,
698
+ .e-input-group.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::after,
699
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input).e-success::before,
700
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input).e-success::after,
701
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::before,
702
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input) .e-input-in-wrap::after {
703
+ @if $input-skin-name == 'material' {
704
+ @include input-group-success-animation-bg;
705
+ }
706
+ }
707
+
708
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-success .e-float-line::before,
709
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-success .e-float-line::after,
710
+ .e-float-input.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::before,
711
+ .e-float-input.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::after,
712
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left).e-success .e-float-line::before,
713
+ .e-float-input.e-control-wrapper.e-input-group:not(.e-float-icon-left).e-success .e-float-line::after,
714
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::before,
715
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::after,
716
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-success .e-float-line::before,
717
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-success .e-float-line::after,
718
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::before,
719
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-input-in-wrap .e-float-line::after {
720
+ @if $input-skin-name == 'material' {
721
+ @include input-group-success-animation-bg;
722
+ }
723
+ }
724
+
725
+ .e-input-group.e-success::before,
726
+ .e-input-group.e-success::after,
727
+ .e-input-group.e-control-wrapper.e-success::before,
728
+ .e-input-group.e-control-wrapper.e-success::after {
729
+ @if $input-skin-name != 'material' {
730
+ @include input-group-success-animation-bg;
731
+ }
732
+ }
733
+
734
+ .e-input-group:not(.e-float-icon-left).e-warning:not(.e-float-input)::before,
735
+ .e-input-group:not(.e-float-icon-left).e-warning:not(.e-float-input)::after,
736
+ .e-input-group.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::before,
737
+ .e-input-group.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::after,
738
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-warning:not(.e-float-input)::before,
739
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-warning:not(.e-float-input)::after,
740
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::before,
741
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input) .e-input-in-wrap::after {
742
+ @if $input-skin-name == 'material' {
743
+ @include input-group-warning-animation-bg;
744
+ }
745
+ }
746
+
747
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-warning .e-float-line::before,
748
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-warning .e-float-line::after,
749
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-input-in-wrap .e-float-line::before,
750
+ .e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-input-in-wrap .e-float-line::after {
751
+ @if $input-skin-name == 'material' {
752
+ @include input-group-warning-animation-bg;
753
+ }
754
+ }
755
+
756
+ .e-input-group.e-warning::before,
757
+ .e-input-group.e-warning::after,
758
+ .e-input-group.e-control-wrapper.e-warning::before,
759
+ .e-input-group.e-control-wrapper.e-warning::after {
760
+ @if $input-skin-name != 'material' {
761
+ @include input-group-warning-animation-bg;
762
+ }
763
+ }
764
+
765
+ .e-input-group:not(.e-float-icon-left).e-error:not(.e-float-input)::before,
766
+ .e-input-group:not(.e-float-icon-left).e-error:not(.e-float-input)::after,
767
+ .e-input-group.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::before,
768
+ .e-input-group.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::after,
769
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error:not(.e-float-input)::before,
770
+ .e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error:not(.e-float-input)::after,
771
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::before,
772
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input) .e-input-in-wrap::after {
773
+ @if $input-skin-name == 'material' {
774
+ @include input-group-error-animation-bg;
775
+ }
776
+ }
777
+
778
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-error .e-float-line::before,
779
+ .e-float-input.e-input-group:not(.e-float-icon-left).e-error .e-float-line::after,
780
+ .e-float-input.e-input-group.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::before,
781
+ .e-float-input.e-input-group.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::after,
782
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error .e-float-line::before,
783
+ .e-float-input.e-input-group.e-control-wrapper:not(.e-float-icon-left).e-error .e-float-line::after,
784
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::before,
785
+ .e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-input-in-wrap .e-float-line::after {
786
+ @if $input-skin-name == 'material' {
787
+ @include input-group-error-animation-bg;
788
+ }
789
+ }
790
+
791
+ .e-input-group.e-error::before,
792
+ .e-input-group.e-error::after,
793
+ .e-input-group.e-control-wrapper.e-error::before,
794
+ .e-input-group.e-control-wrapper.e-error::after {
795
+ @if $input-skin-name != 'material' {
796
+ @include input-group-error-animation-bg;
797
+ }
798
+ }
799
+
800
+ .e-input-group.e-success .e-input-group-icon,
801
+ .e-input-group.e-control-wrapper.e-success .e-input-group-icon {
802
+ color: $input-icon-font-color;
803
+ }
804
+
805
+ .e-input-group.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover,
806
+ .e-input-group.e-control-wrapper.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover {
807
+ color: $input-icon-font-color;
808
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'FluentUI' {
809
+ color: $input-group-hovered-color;
810
+ }
811
+ }
812
+
813
+ .e-input-group.e-warning .e-input-group-icon,
814
+ .e-input-group.e-control-wrapper.e-warning .e-input-group-icon {
815
+ color: $input-icon-font-color;
816
+ }
817
+
818
+ .e-input-group.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover,
819
+ .e-input-group.e-control-wrapper.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover {
820
+ color: $input-icon-font-color;
821
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'FluentUI' {
822
+ color: $input-group-hovered-color;
823
+ }
824
+ }
825
+
826
+ .e-input-group.e-error .e-input-group-icon,
827
+ .e-input-group.e-control-wrapper.e-error .e-input-group-icon {
828
+ color: $input-icon-font-color;
829
+ }
830
+
831
+ .e-input-group.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover,
832
+ .e-input-group.e-control-wrapper.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover {
833
+ color: $input-icon-font-color;
834
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'FluentUI' {
835
+ color: $input-group-hovered-color;
836
+ }
837
+ }
838
+
839
+ .e-input-group.e-success:not(.e-disabled) .e-input-group-icon:active,
840
+ .e-input-group.e-control-wrapper.e-success:not(.e-disabled) .e-input-group-icon:active {
841
+ @if $input-skin-name == 'material' {
842
+ color: $input-icon-font-color;
843
+ }
844
+ }
845
+
846
+ .e-input-group.e-warning:not(.e-disabled) .e-input-group-icon:active,
847
+ .e-input-group.e-control-wrapper.e-warning:not(.e-disabled) .e-input-group-icon:active {
848
+ @if $input-skin-name == 'material' {
849
+ color: $input-icon-font-color;
850
+ }
851
+ }
852
+
853
+ .e-input-group.e-error:not(.e-disabled) .e-input-group-icon:active,
854
+ .e-input-group.e-control-wrapper.e-error:not(.e-disabled) .e-input-group-icon:active {
855
+ @if $input-skin-name == 'material' {
856
+ color: $input-icon-font-color;
857
+ }
858
+ }
859
+
860
+ .e-input-group input.e-input,
861
+ .e-input-group.e-control-wrapper input.e-input,
862
+ .e-input-group textarea.e-input,
863
+ .e-input-group.e-control-wrapper textarea.e-input {
864
+ border-color: $input-box-border-color;
865
+ }
866
+
867
+ // sass-lint:disable no-vendor-prefixes
868
+ .e-input#{$css}:focus:not(.e-success):not(.e-warning):not(.e-error),
869
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
870
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
871
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
872
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
873
+ .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input,
874
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input {
875
+ border-color: $input-active-border-color;
876
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
877
+ -webkit-box-shadow: $input-border-shadow;
878
+ box-shadow: $input-border-shadow;
879
+ }
880
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
881
+ border-radius: $input-groupo-focus-border-radius;
882
+ box-shadow: $input-group-focus-box-shadow;
883
+ }
884
+ @if $input-skin-name == 'bootstrap4' {
885
+ transition: $input-transition-shadow;
886
+ }
887
+ }
888
+
889
+ // sass-lint:disable no-vendor-prefixes
890
+ .e-input-group .e-input#{$css}:focus:not(.e-success):not(.e-warning):not(.e-error),
891
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
892
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
893
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) input:focus,
894
+ .e-input-group .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group) textarea:focus,
895
+ .e-input-group .e-float-input:not(.e-success):not(.e-warning):not(.e-error):not(.e-input-group).e-input-focus input,
896
+ .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 {
897
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
898
+ box-shadow: none;
899
+ }
900
+ }
901
+
902
+ // sass-lint:disable no-vendor-prefixes
903
+ .e-input#{$css}:focus:not(.e-success):not(.e-warning).e-error,
904
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
905
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
906
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) input:focus,
907
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group) textarea:focus,
908
+ .e-float-input:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input,
909
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-warning).e-error:not(.e-input-group).e-input-focus input {
910
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
911
+ -webkit-box-shadow: $input-error-border-shadow;
912
+ box-shadow: $input-error-border-shadow;
913
+ }
914
+ }
915
+
916
+ // sass-lint:disable no-vendor-prefixes
917
+ .e-input#{$css}:focus:not(.e-error):not(.e-warning).e-success,
918
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
919
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
920
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) input:focus,
921
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group) textarea:focus,
922
+ .e-float-input:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input,
923
+ .e-float-input.e-control-wrapper:not(.e-error):not(.e-warning).e-success:not(.e-input-group).e-input-focus input {
924
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
925
+ -webkit-box-shadow: $input-success-border-shadow;
926
+ box-shadow: $input-success-border-shadow;
927
+ }
928
+ }
929
+
930
+ // sass-lint:disable no-vendor-prefixes
931
+ .e-input#{$css}:focus:not(.e-success):not(.e-error).e-warning,
932
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
933
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
934
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) input:focus,
935
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group) textarea:focus,
936
+ .e-float-input:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input,
937
+ .e-float-input.e-control-wrapper:not(.e-success):not(.e-error).e-warning:not(.e-input-group).e-input-focus input {
938
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
939
+ -webkit-box-shadow: $input-warning-border-shadow;
940
+ box-shadow: $input-warning-border-shadow;
941
+ }
942
+ }
943
+
944
+ .e-input-group:not(.e-float-input):not(.e-float-icon-left) .e-input:focus:not(.e-success):not(.e-warning):not(.e-error),
945
+ .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),
946
+ .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),
947
+ .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),
948
+ .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),
949
+ .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),
950
+ .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),
951
+ .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) {
952
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
953
+ box-shadow: none;
954
+ }
955
+ }
956
+
957
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error) input.e-input:focus,
958
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) input.e-input:focus,
959
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error).e-input-focus input.e-input,
960
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error).e-input-focus input.e-input,
961
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error) textarea.e-input:focus,
962
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) textarea.e-input:focus {
963
+ border-color: $input-group-active-border-color;
964
+ }
965
+
966
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
967
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) {
968
+ @if $input-skin-name == 'material' {
969
+ border-color: $input-group-border-color-focus;
970
+ }
971
+ }
972
+
973
+ // sass-lint:disable no-vendor-prefixes
974
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
975
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
976
+ @if $input-skin-name != 'material' {
977
+ border-color: $input-group-border-color-focus;
978
+ }
979
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
980
+ -webkit-box-shadow: $input-border-shadow;
981
+ box-shadow: $input-border-shadow;
982
+ }
983
+ @if $input-skin-name == 'bootstrap4' {
984
+ transition: $input-transition-shadow;
985
+ }
986
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
987
+ border-color: $input-group-border-color-focus;
988
+ border-radius: $input-groupo-focus-border-radius;
989
+ box-shadow: $input-group-focus-box-shadow;
990
+ }
991
+ }
992
+
993
+ // sass-lint:disable no-vendor-prefixes
994
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning).e-error,
995
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning).e-error {
996
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
997
+ -webkit-box-shadow: $input-error-border-shadow;
998
+ box-shadow: $input-error-border-shadow;
999
+ }
1000
+ }
1001
+
1002
+ // sass-lint:disable no-vendor-prefixes
1003
+ .e-input-group.e-input-focus:not(.e-error):not(.e-warning).e-success,
1004
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-error):not(.e-warning).e-success {
1005
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1006
+ -webkit-box-shadow: $input-success-border-shadow;
1007
+ box-shadow: $input-success-border-shadow;
1008
+ }
1009
+ }
1010
+
1011
+ // sass-lint:disable no-vendor-prefixes
1012
+ .e-input-group.e-input-focus:not(.e-success):not(.e-error).e-warning,
1013
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-error).e-warning {
1014
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1015
+ -webkit-box-shadow: $input-warning-border-shadow;
1016
+ box-shadow: $input-warning-border-shadow;
1017
+ }
1018
+ }
1019
+
1020
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1021
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1022
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
1023
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
1024
+ border-color: $input-box-border-color;
1025
+ }
1026
+
1027
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1028
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:last-child.e-input-group-icon,
1029
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1030
+ .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 {
1031
+ @if ($input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'FluentUI' and $input-skin-name != 'bootstrap5') {
1032
+ border-color: $input-group-border-right-focus;
1033
+ }
1034
+ }
1035
+
1036
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
1037
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1038
+ .e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1039
+ .e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
1040
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon,
1041
+ .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,
1042
+ .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,
1043
+ .e-input-focus.e-control-wrapper.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:first-child:focus,
1044
+ .e-input-focus.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
1045
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span.e-input-group-icon {
1046
+ @if ($input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5' and $input-skin-name != 'FluentUI') {
1047
+ border-color: $input-group-border-left-focus;
1048
+ }
1049
+ }
1050
+
1051
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1052
+ .e-input-group.e-input-focus.e-rtl:not(.e-success):not(.e-warning):not(.e-error) .e-input:last-child:focus,
1053
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) span:first-child.e-input-group-icon,
1054
+ .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,
1055
+ .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,
1056
+ .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 {
1057
+ @if ($input-skin-name != 'bootstrap' and $input-skin-name != 'bootstrap4' and $input-skin-name != 'bootstrap5') {
1058
+ border-color: transparent;
1059
+ }
1060
+ }
1061
+
1062
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
1063
+ .e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1064
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left),
1065
+ .e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1066
+ .e-float-input.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1067
+ .e-float-input.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap {
1068
+ @if $input-skin-name == 'material' {
1069
+ border-color: $input-group-full-border-color;
1070
+ }
1071
+ }
1072
+
1073
+ .e-input-group:not(.e-success):not(.e-warning):not(.e-error),
1074
+ .e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) {
1075
+ @if $input-skin-name != 'material' {
1076
+ border-color: $input-group-full-border-color;
1077
+ }
1078
+ @if $input-skin-name == 'tailwind' {
1079
+ box-shadow: $input-group-border-shadow;
1080
+ }
1081
+ @if $input-skin-name == 'FluentUI' {
1082
+ box-shadow: none;
1083
+ }
1084
+ }
1085
+
1086
+ // sass-lint:disable no-vendor-prefixes
1087
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error),
1088
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning):not(.e-error) {
1089
+ @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' {
1090
+ border-color: $input-active-border-color;
1091
+ }
1092
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
1093
+ -webkit-box-shadow: $input-border-shadow;
1094
+ box-shadow: $input-border-shadow;
1095
+ }
1096
+ @if $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1097
+ box-shadow: $input-group-focus-box-shadow;
1098
+ }
1099
+ }
1100
+
1101
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error,
1102
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-warning).e-error {
1103
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1104
+ -webkit-box-shadow: $input-error-border-shadow;
1105
+ box-shadow: $input-error-border-shadow;
1106
+ }
1107
+ }
1108
+
1109
+ .e-input-group:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success,
1110
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-error):not(.e-warning).e-success {
1111
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1112
+ -webkit-box-shadow: $input-success-border-shadow;
1113
+ box-shadow: $input-success-border-shadow;
1114
+ }
1115
+ }
1116
+
1117
+ .e-input-group:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning,
1118
+ .e-input-group.e-control-wrapper:not(.e-disabled):active:not(.e-success):not(.e-error).e-warning {
1119
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' or $input-skin-name == 'bootstrap5' or $input-skin-name == 'FluentUI' {
1120
+ -webkit-box-shadow: $input-warning-border-shadow;
1121
+ box-shadow: $input-warning-border-shadow;
1122
+ }
1123
+ }
1124
+
1125
+ .e-input-group.e-disabled:not(.e-success):not(.e-warning):not(.e-error),
1126
+ .e-input-group.e-control-wrapper.e-disabled:not(.e-success):not(.e-warning):not(.e-error) {
1127
+ @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' {
1128
+ border-color: $input-disable-border-color;
1129
+ }
1130
+ }
1131
+
1132
+ .e-input-group,
1133
+ .e-input-group.e-control-wrapper {
1134
+ border-bottom-color: $input-box-border-color;
1135
+ }
1136
+
1137
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) .e-input:focus,
1138
+ .e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1139
+ .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,
1140
+ .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,
1141
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left) .e-input,
1142
+ .e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
1143
+ .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,
1144
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
1145
+ @if $input-skin-name == 'material' {
1146
+ border-bottom-color: transparent;
1147
+ border-top-color: transparent;
1148
+ }
1149
+ }
1150
+
1151
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1152
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input:focus,
1153
+ .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input,
1154
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input {
1155
+ @if $input-skin-name != 'material' {
1156
+ border-bottom-color: transparent;
1157
+ border-top-color: transparent;
1158
+ }
1159
+ }
1160
+
1161
+ .e-input-group.e-success,
1162
+ .e-input-group.e-control-wrapper.e-success,
1163
+ .e-float-icon-left.e-input-group.e-success,
1164
+ .e-float-icon-left.e-control-wrapper.e-input-group.e-success,
1165
+ .e-input-group.e-warning,
1166
+ .e-input-group.e-control-wrapper.e-warning,
1167
+ .e-float-icon-left.e-input-group.e-warning,
1168
+ .e-float-icon-left.e-input-group.e-control-wrapper.e-warning,
1169
+ .e-input-group.e-error,
1170
+ .e-input-group.e-control-wrapper.e-error,
1171
+ .e-float-icon-left.e-input-group.e-error,
1172
+ .e-float-icon-left.e-input-group.e-control-wrapper.e-error,
1173
+ .e-input-group.e-float-icon-left,
1174
+ .e-input-group.e-control-wrapper.e-float-icon-left {
1175
+ @if $input-skin-name == 'material' {
1176
+ border-color: transparent;
1177
+ }
1178
+ }
1179
+
1180
+ .e-input-group.e-success,
1181
+ .e-input-group.e-control-wrapper.e-success,
1182
+ .e-input-group.e-success:not(.e-float-icon-left),
1183
+ .e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left) {
1184
+ @include input-state-color ($input-group-success-color);
1185
+ }
1186
+
1187
+ .e-input-group.e-float-icon-left.e-success .e-input-in-wrap,
1188
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-input-in-wrap {
1189
+ @if $input-skin-name == 'material' {
1190
+ @include input-state-color ($input-group-success-color);
1191
+ }
1192
+ }
1193
+
1194
+ .e-input-group.e-warning,
1195
+ .e-input-group.e-control-wrapper.e-warning,
1196
+ .e-input-group.e-warning:not(.e-float-icon-left),
1197
+ .e-input-group.e-control-wrapper.e-warning:not(.e-float-icon-left) {
1198
+ @include input-state-color ($input-group-warning-color);
1199
+ }
1200
+
1201
+ .e-input-group.e-float-icon-left.e-warning .e-input-in-wrap,
1202
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-warning .e-input-in-wrap {
1203
+ @if $input-skin-name == 'material' {
1204
+ @include input-state-color ($input-group-warning-color);
1205
+ }
1206
+ }
1207
+
1208
+ .e-input-group.e-error,
1209
+ .e-input-group.e-control-wrapper.e-error,
1210
+ .e-input-group.e-error:not(.e-float-icon-left),
1211
+ .e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left) {
1212
+ @include input-state-color ($input-group-error-color);
1213
+ }
1214
+
1215
+ .e-input-group.e-float-icon-left.e-error .e-input-in-wrap,
1216
+ .e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-input-in-wrap {
1217
+ @if $input-skin-name == 'material' {
1218
+ @include input-state-color ($input-group-error-color);
1219
+ }
1220
+ }
1221
+
1222
+ .e-float-input .e-clear-icon,
1223
+ .e-float-input.e-control-wrapper .e-clear-icon,
1224
+ .e-input-group .e-clear-icon,
1225
+ .e-input-group.e-control-wrapper .e-clear-icon {
1226
+ color: $input-clear-icon-color;
1227
+ }
1228
+
1229
+ .e-float-input .e-clear-icon:active,
1230
+ .e-float-input.e-control-wrapper .e-clear-icon:active,
1231
+ .e-input-group .e-clear-icon:active,
1232
+ .e-input-group.e-control-wrapper .e-clear-icon:active {
1233
+ @if ($input-skin-name == 'FluentUI') {
1234
+ color: $input-group-pressed-color;
1235
+ }
1236
+ }
1237
+
1238
+ .e-float-input .e-clear-icon:hover,
1239
+ .e-float-input.e-control-wrapper .e-clear-icon:hover,
1240
+ .e-input-group .e-clear-icon:hover,
1241
+ .e-input-group.e-control-wrapper .e-clear-icon:hover {
1242
+ color: $input-clear-icon-hover-color;
1243
+ @if ($input-skin-name == 'FluentUI') {
1244
+ background: $input-clear-icon-hover-bg-color;
1245
+ }
1246
+ }
1247
+
1248
+ .e-float-input:not(.e-disabled) .e-clear-icon:hover,
1249
+ .e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover,
1250
+ .e-input-group:not(.e-disabled) .e-clear-icon:hover,
1251
+ .e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover {
1252
+ @if $input-skin-name == 'bootstrap' or $input-skin-name == 'bootstrap4' {
1253
+ color: $input-clear-icon-hover-color;
1254
+ }
1255
+ @if ($input-skin-name == 'FluentUI') {
1256
+ background: $input-clear-icon-hover-bg-color;
1257
+ }
1258
+ }
1259
+
1260
+ .e-float-input.e-disabled .e-clear-icon,
1261
+ .e-float-input.e-control-wrapper.e-disabled .e-clear-icon,
1262
+ .e-input-group.e-disabled .e-clear-icon,
1263
+ .e-input-group.e-control-wrapper.e-disabled .e-clear-icon {
1264
+ color: $input-group-disabled-color;
1265
+ }
1266
+
1267
+ // Double border issue while adding floating input with class .e-input
1268
+ .e-float-input.e-input-focus .e-input:focus,
1269
+ .e-float-input.e-control-wrapper.e-input-focus .e-input:focus {
1270
+ border-bottom-color: transparent;
1271
+ border-top-color: transparent;
1272
+ }
1273
+
1274
+ .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1275
+ .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
1276
+ .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
1277
+ .e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1278
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1279
+ .e-float-input:not(.e-error) input label.e-float-text.e-label-top,
1280
+ .e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1281
+ .e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1282
+ .e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1283
+ .e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1284
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1285
+ .e-bigger .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1286
+ .e-bigger .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
1287
+ .e-bigger .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
1288
+ .e-bigger .e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1289
+ .e-bigger .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1290
+ .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1291
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1292
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
1293
+ color: $float-label-font-color;
1294
+ }
1295
+
1296
+ .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1297
+ .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
1298
+ .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
1299
+ .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1300
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1301
+ .e-float-input .e-control-wrapper:not(.e-error) input label.e-float-text.e-label-top,
1302
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1303
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1304
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1305
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1306
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1307
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1308
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
1309
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
1310
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1311
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1312
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1313
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1314
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text {
1315
+ color: $float-label-font-color;
1316
+ }
1317
+
1318
+ .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1319
+ .e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
1320
+ .e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1321
+ .e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
1322
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1323
+ .e-small .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1324
+ .e-small .e-float-input:not(.e-error) input:valid ~ label.e-float-text,
1325
+ .e-small .e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
1326
+ .e-small .e-float-input:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
1327
+ .e-small .e-float-input:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1328
+ .e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1329
+ .e-float-input.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1330
+ .e-float-input.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1331
+ .e-float-input.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1332
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1333
+ .e-bigger .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1334
+ .e-bigger .e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
1335
+ .e-bigger .e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1336
+ .e-bigger .e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1337
+ .e-bigger .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1338
+ .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1339
+ .e-small .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1340
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1341
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
1342
+ color: $float-label-font-color;
1343
+ }
1344
+
1345
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1346
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
1347
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1348
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
1349
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1350
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1351
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
1352
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
1353
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
1354
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1355
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1356
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
1357
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
1358
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1359
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1360
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1361
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
1362
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
1363
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
1364
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1365
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1366
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1367
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1368
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
1369
+ color: $float-label-font-color;
1370
+ }
1371
+
1372
+ .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1373
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1374
+ .e-float-input.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1375
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1376
+ .e-bigger .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1377
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1378
+ .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1379
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1380
+ .e-small .e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1381
+ .e-small .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-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1383
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1384
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
1385
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom {
1386
+ color: $input-header-font-color;
1387
+ @if $input-skin-name == 'highcontrast' {
1388
+ color: $input-placeholder;
1389
+ }
1390
+ }
1391
+
1392
+ .e-float-input:not(.e-input-focus):not(.e-disabled) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
1393
+ .e-float-input:not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
1394
+ .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) {
1395
+ color: $input-placeholder;
1396
+ }
1397
+
1398
+
1399
+ .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1400
+ .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
1401
+ .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1402
+ .e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1403
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1404
+ .e-float-input:not(.e-error) textarea label.e-float-text.e-label-top,
1405
+ .e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1406
+ .e-float-input.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1407
+ .e-float-input.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1408
+ .e-float-input.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1409
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1410
+ .e-bigger .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1411
+ .e-bigger .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
1412
+ .e-bigger .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1413
+ .e-bigger .e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1414
+ .e-bigger .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1415
+ color: $float-label-font-color;
1416
+ }
1417
+
1418
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1419
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
1420
+ .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1421
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1422
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1423
+ .e-float-input.e-control-wrapper:not(.e-error) textarea label.e-float-text.e-label-top,
1424
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1425
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1426
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1427
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1428
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1429
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1430
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
1431
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1432
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1433
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1434
+ color: $float-label-font-color;
1435
+ }
1436
+
1437
+ .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1438
+ .e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1439
+ .e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1440
+ .e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
1441
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1442
+ .e-small .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1443
+ .e-small .e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
1444
+ .e-small .e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1445
+ .e-small .e-float-input:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
1446
+ .e-small .e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1447
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1448
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1449
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1450
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1451
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1452
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1453
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1454
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1455
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1456
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1457
+ color: $float-label-font-color;
1458
+ }
1459
+
1460
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1461
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1462
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1463
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
1464
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1465
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1466
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
1467
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1468
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
1469
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1470
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1471
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
1472
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1473
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1474
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1475
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1476
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
1477
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
1478
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
1479
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
1480
+ color: $float-label-font-color;
1481
+ }
1482
+
1483
+ .e-float-input.e-input-group.e-disabled .e-float-text,
1484
+ .e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
1485
+ .e-float-input input[disabled] ~ label.e-float-text,
1486
+ .e-float-input input[disabled] ~ label.e-label-top.e-float-text,
1487
+ .e-float-input.e-disabled label.e-float-text,
1488
+ .e-float-input.e-disabled label.e-float-text.e-label-top,
1489
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
1490
+ .e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1491
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1492
+ .e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1493
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1494
+ .e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1495
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1496
+ .e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
1497
+ color: $float-label-disbale-font-color;
1498
+ }
1499
+
1500
+ .e-float-input textarea[disabled] ~ label.e-float-text,
1501
+ .e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
1502
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
1503
+ .e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1504
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1505
+ .e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1506
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1507
+ .e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1508
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1509
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
1510
+ color: $float-label-disbale-font-color;
1511
+ }
1512
+
1513
+ .e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
1514
+ .e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
1515
+ .e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
1516
+ .e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
1517
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
1518
+ .e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
1519
+ .e-float-input.e-control-wrapper.e-disabled label.e-float-text,
1520
+ .e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
1521
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
1522
+ .e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1523
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1524
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1525
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1526
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1527
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1528
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1529
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
1530
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
1531
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1532
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1533
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
1534
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
1535
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
1536
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
1537
+ color: $float-label-disbale-font-color;
1538
+ }
1539
+
1540
+ .e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
1541
+ .e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
1542
+ .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
1543
+ .e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
1544
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
1545
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1546
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1547
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1548
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1549
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1550
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1551
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1552
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
1553
+ .e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
1554
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1555
+ .e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1556
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
1557
+ .e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
1558
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
1559
+ .e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
1560
+ color: $float-label-disbale-font-color;
1561
+ }
1562
+
1563
+ .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1564
+ .e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1565
+ .e-bigger .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1566
+ .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1567
+ .e-small .e-float-input:not(.e-error) input:focus ~ label.e-float-text,
1568
+ .e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1569
+ .e-float-input.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1570
+ .e-bigger .e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1571
+ .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1572
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1573
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1574
+ .e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
1575
+ .e-small .e-float-input:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
1576
+ .e-float-input.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1577
+ .e-bigger .e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1578
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
1579
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
1580
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1581
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
1582
+ .e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1583
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1584
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1585
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1586
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1587
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1588
+ .e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
1589
+ .e-small .e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
1590
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1591
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
1592
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
1593
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
1594
+ .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,
1595
+ .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,
1596
+ .e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1597
+ .e-float-input.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1598
+ .e-bigger .e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1599
+ .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1600
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1601
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1602
+ .e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
1603
+ .e-small .e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
1604
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1605
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text
1606
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
1607
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
1608
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1609
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
1610
+ .e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1611
+ .e-float-input.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1612
+ .e-bigger .e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1613
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1614
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1615
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1616
+ .e-float-input.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
1617
+ .e-small .e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
1618
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
1619
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text
1620
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
1621
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
1622
+ .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,
1623
+ .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,
1624
+ .e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1625
+ .e-bigger .e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
1626
+ .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1627
+ .e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1628
+ .e-bigger .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1629
+ .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1630
+ .e-small .e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
1631
+ .e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1632
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1633
+ .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1634
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1635
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1636
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1637
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
1638
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
1639
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
1640
+ .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1641
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1642
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1643
+ .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1644
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
1645
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
1646
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
1647
+ .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1648
+ .e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1649
+ .e-bigger .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1650
+ .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1651
+ .e-small .e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
1652
+ .e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1653
+ .e-bigger .e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1654
+ .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1655
+ .e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1656
+ .e-bigger .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1657
+ .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
1658
+ .e-small .e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
1659
+ .e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
1660
+ .e-bigger .e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
1661
+ @if $input-skin-name == 'material' {
1662
+ color: $input-active-accent-color;
1663
+ }
1664
+ }
1665
+
1666
+ input.e-input#{$css}:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]):not(:focus),
1667
+ textarea.e-input#{$css}:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabled]) {
1668
+ @if $input-skin-name == 'fabric' or $input-skin-name == 'FluentUI' or $input-skin-name == 'bootstrap' {
1669
+ border-color: $input-group-border-color-hover;
1670
+ }
1671
+ }
1672
+
1673
+ .e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1674
+ .e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1675
+ .e-float-input.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1676
+ .e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1677
+ .e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1678
+ .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,
1679
+ .e-float-input.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) .e-input-in-wrap:hover,
1680
+ .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,
1681
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1682
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1683
+ .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]),
1684
+ .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]),
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
+ @if $input-skin-name == 'material' {
1687
+ border-color: $input-group-border-color-hover;
1688
+ }
1689
+ }
1690
+
1691
+ .e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1692
+ .e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1693
+ .e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1694
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1695
+ .e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1696
+ .e-float-input.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1697
+ .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]),
1698
+ .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]) {
1699
+ @if $input-skin-name != 'material' 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' {
1700
+ border-color: $input-group-border-color-hover;
1701
+ }
1702
+ }
1703
+
1704
+ .e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1705
+ .e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1706
+ .e-float-input.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1707
+ .e-float-input.e-input-group.e-control-wrapper:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1708
+ .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),
1709
+ .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),
1710
+ .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),
1711
+ .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) {
1712
+ @if $input-skin-name == 'highcontrast' {
1713
+ border-color: $input-group-border-color-hover;
1714
+ }
1715
+ }
1716
+
1717
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1718
+ .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),
1719
+ .e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1720
+ .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),
1721
+ .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,
1722
+ .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,
1723
+ .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,
1724
+ .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]),
1725
+ .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]),
1726
+ .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,
1727
+ .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]),
1728
+ .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]) {
1729
+ @if $input-skin-name == 'material' {
1730
+ border-color: $input-group-border-color-focus;
1731
+ }
1732
+ }
1733
+
1734
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1735
+ .e-input-group.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1736
+ .e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1737
+ .e-float-input.e-control-wrapper.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1738
+ .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]),
1739
+ .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]),
1740
+ .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]),
1741
+ .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]) {
1742
+ @if $input-skin-name != 'material' {
1743
+ border-color: $input-group-border-color-focus;
1744
+ }
1745
+ }
1746
+
1747
+ .e-input-group:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1748
+ .e-input-group.e-control-wrapper:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1749
+ .e-float-input:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1750
+ .e-float-input.e-control-wrapper:active:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1751
+ .e-float-input:active:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) input:not([disabled]),
1752
+ .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]),
1753
+ .e-float-input:active:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled) textarea:not([disabled]),
1754
+ .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]) {
1755
+ @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' {
1756
+ border-color: $input-active-border-color;
1757
+ }
1758
+ }
1759
+
1760
+ .e-input-group.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1761
+ .e-input-group.e-control-wrapper.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1762
+ .e-float-input.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1763
+ .e-float-input.e-control-wrapper.e-input-focus:not(.e-float-icon-left):not(.e-success):not(.e-warning):not(.e-error),
1764
+ .e-input-group.e-float-icon-left.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) .e-input-in-wrap,
1765
+ .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 {
1766
+ @if $input-skin-name == 'material' {
1767
+ border-color: $input-group-border-color-hover;
1768
+ }
1769
+ }
1770
+
1771
+ .e-input-group.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1772
+ .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),
1773
+ .e-float-input.e-input-focus:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
1774
+ .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),
1775
+ .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,
1776
+ .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,
1777
+ .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,
1778
+ .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]),
1779
+ .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]),
1780
+ .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,
1781
+ .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]),
1782
+ .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]) {
1783
+ @if $input-skin-name == 'material' {
1784
+ border-color: $input-group-border-color-hover;
1785
+ }
1786
+ }
1787
+
1788
+ .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
1789
+ .e-bigger .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
1790
+ .e-bigger.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
1791
+ .e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
1792
+ .e-small.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
1793
+ .e-bigger .e-float-input.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
1794
+ .e-bigger.e-small .e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
1795
+ .e-float-input.e-bigger.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
1796
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
1797
+ .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,
1798
+ .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,
1799
+ .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,
1800
+ .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,
1801
+ .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,
1802
+ .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,
1803
+ .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 {
1804
+ color: $float-label-font-color;
1805
+ }
1806
+
1807
+ .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1808
+ .e-bigger .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1809
+ .e-bigger.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1810
+ .e-small .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1811
+ .e-small.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1812
+ .e-bigger .e-float-input.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1813
+ .e-bigger.e-small .e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1814
+ .e-float-input.e-bigger.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1815
+ .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1816
+ .e-bigger .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1817
+ .e-bigger.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1818
+ .e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1819
+ .e-small.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1820
+ .e-bigger .e-float-input.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1821
+ .e-bigger.e-small .e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
1822
+ .e-float-input.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text {
1823
+ color: $float-label-font-color;
1824
+ }
1825
+
1826
+ // Outline textbox
1827
+
1828
+ .e-outline.e-input-group,
1829
+ .e-outline.e-input-group.e-control-wrapper,
1830
+ .e-outline.e-float-input,
1831
+ .e-outline.e-float-input.e-input-group,
1832
+ .e-outline.e-float-input.e-control-wrapper,
1833
+ .e-outline.e-float-input.e-input-group.e-control-wrapper {
1834
+ @if $input-skin-name == 'material' {
1835
+ color: $outline-input-font-color;
1836
+ }
1837
+ }
1838
+
1839
+ .e-outline.e-input-group.e-disabled,
1840
+ .e-outline.e-input-group.e-control-wrapper.e-disabled,
1841
+ .e-outline.e-float-input.e-disabled,
1842
+ .e-outline.e-float-input.e-input-group.e-disabled,
1843
+ .e-outline.e-float-input.e-control-wrapper.e-disabled,
1844
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-disabled {
1845
+ @if $input-skin-name == 'material' {
1846
+ color: $outline-disabled-input-font-color;
1847
+ }
1848
+ }
1849
+
1850
+ .e-outline.e-input-group:hover:not(.e-input-focus):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
1851
+ .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),
1852
+ .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),
1853
+ .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),
1854
+ .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),
1855
+ .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),
1856
+ .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),
1857
+ .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) {
1858
+ @if $input-skin-name == 'material' {
1859
+ border-color: $outline-hover-border-color;
1860
+ color: $outline-hover-font-color;
1861
+ }
1862
+ }
1863
+
1864
+ .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,
1865
+ .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,
1866
+ .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,
1867
+ .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,
1868
+ .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,
1869
+ .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,
1870
+ .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,
1871
+ .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,
1872
+ .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,
1873
+ .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,
1874
+ .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,
1875
+ .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,
1876
+ .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,
1877
+ .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,
1878
+ .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,
1879
+ .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 {
1880
+ @if $input-skin-name == 'material' {
1881
+ border-color: $outline-hover-border-color;
1882
+ }
1883
+ }
1884
+
1885
+ .e-outline.e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error),
1886
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
1887
+ @if $input-skin-name == 'material' {
1888
+ border-color: $input-active-border-color;
1889
+ box-shadow: inset 1px 1px $input-active-border-color, inset -1px 0 $input-active-border-color, inset 0 -1px $input-active-border-color;
1890
+ }
1891
+ }
1892
+
1893
+ .e-outline.e-input-group:not(.e-input-focus),
1894
+ .e-outline.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left):not(.e-input-focus),
1895
+ .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),
1896
+ .e-outline.e-input-group.e-float-icon-left:not(.e-input-focus),
1897
+ .e-outline.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-input-focus) {
1898
+ @if $input-skin-name == 'material' {
1899
+ border-color: $outline-border-color;
1900
+ }
1901
+ }
1902
+
1903
+ .e-outline.e-input-group.e-error,
1904
+ .e-outline.e-input-group.e-control-wrapper.e-error,
1905
+ .e-outline.e-input-group.e-error:not(.e-float-icon-left),
1906
+ .e-outline.e-input-group.e-control-wrapper.e-error:not(.e-float-icon-left),
1907
+ .e-outline.e-float-input.e-error,
1908
+ .e-outline.e-float-input.e-input-group.e-error,
1909
+ .e-outline.e-float-input.e-control-wrapper.e-error,
1910
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-error {
1911
+ @if $input-skin-name == 'material' {
1912
+ border-color: $input-error-color;
1913
+ }
1914
+ }
1915
+
1916
+ .e-outline.e-float-input.e-success.e-input-focus,
1917
+ .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus,
1918
+ .e-outline.e-float-input.e-input-group.e-success.e-input-focus,
1919
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-success.e-input-focus,
1920
+ .e-outline.e-float-input.e-input-group.e-success.e-input-focus:not(.e-float-icon-left),
1921
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-success.e-input-focus:not(.e-float-icon-left),
1922
+ .e-outline.e-float-input.e-warning.e-input-focus,
1923
+ .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus,
1924
+ .e-outline.e-float-input.e-input-group.e-warning.e-input-focus,
1925
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-warning.e-input-focus,
1926
+ .e-outline.e-float-input.e-input-group.e-warning.e-input-focus:not(.e-float-icon-left),
1927
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-warning.e-input-focus:not(.e-float-icon-left),
1928
+ .e-outline.e-float-input.e-error.e-input-focus,
1929
+ .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus,
1930
+ .e-outline.e-float-input.e-input-group.e-error.e-input-focus,
1931
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-error.e-input-focus,
1932
+ .e-outline.e-float-input.e-input-group.e-error.e-input-focus:not(.e-float-icon-left),
1933
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-error.e-input-focus:not(.e-float-icon-left) {
1934
+ @if $input-skin-name == 'material' {
1935
+ border-top-color: transparent;
1936
+ }
1937
+ }
1938
+
1939
+ .e-outline.e-input-group.e-success,
1940
+ .e-outline.e-input-group.e-control-wrapper.e-success,
1941
+ .e-outline.e-input-group.e-success:not(.e-float-icon-left),
1942
+ .e-outline.e-input-group.e-control-wrapper.e-success:not(.e-float-icon-left),
1943
+ .e-outline.e-float-input.e-success,
1944
+ .e-outline.e-float-input.e-input-group.e-success,
1945
+ .e-outline.e-float-input.e-control-wrapper.e-success,
1946
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-success {
1947
+ @if $input-skin-name == 'material' {
1948
+ border-color: $input-success-color;
1949
+ }
1950
+ }
1951
+
1952
+ .e-outline.e-input-group.e-warning,
1953
+ .e-outline.e-input-group.e-control-wrapper.e-warning,
1954
+ .e-outline.e-input-group.e-warning:not(.e-float-icon-left),
1955
+ .e-outline.e-input-group.e-control-wrapper.e-warning:not(.e-float-icon-left),
1956
+ .e-outline.e-float-input.e-warning,
1957
+ .e-outline.e-float-input.e-input-group.e-warning,
1958
+ .e-outline.e-float-input.e-control-wrapper.e-warning,
1959
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-warning {
1960
+ @if $input-skin-name == 'material' {
1961
+ border-color: $input-warning-color;
1962
+ }
1963
+ }
1964
+
1965
+ .e-outline.e-input-group.e-input-focus.e-error:not(.e-success):not(.e-warning),
1966
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus.e-error:not(.e-success):not(.e-warning) {
1967
+ @if $input-skin-name == 'material' {
1968
+ box-shadow: inset 1px 1px $input-error-color, inset -1px $zero-value $input-error-color, inset $zero-value -1px $input-error-color;
1969
+ }
1970
+ }
1971
+
1972
+ .e-outline.e-input-group.e-input-focus.e-success:not(.e-error):not(.e-warning),
1973
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus.e-success:not(.e-error):not(.e-warning) {
1974
+ @if $input-skin-name == 'material' {
1975
+ box-shadow: inset 1px 1px $input-success-color, inset -1px $zero-value $input-success-color, inset $zero-value -1px $input-success-color;
1976
+ }
1977
+ }
1978
+
1979
+ .e-outline.e-input-group.e-input-focus.e-warning:not(.e-error):not(.e-success),
1980
+ .e-outline.e-input-group.e-control-wrapper.e-input-focus.e-warning:not(.e-error):not(.e-success) {
1981
+ @if $input-skin-name == 'material' {
1982
+ box-shadow: inset 1px 1px $input-warning-color, inset -1px $zero-value $input-warning-color, inset $zero-value -1px $input-warning-color;
1983
+ }
1984
+ }
1985
+
1986
+ .e-outline.e-float-input.e-input-focus.e-error:not(.e-success):not(.e-warning),
1987
+ .e-outline.e-float-input.e-control-wrapper.e-input-focus.e-error:not(.e-success):not(.e-warning),
1988
+ .e-outline.e-float-input.e-input-group.e-input-focus.e-error:not(.e-success):not(.e-warning),
1989
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-input-focus.e-error:not(.e-success):not(.e-warning) {
1990
+ @if $input-skin-name == 'material' {
1991
+ box-shadow: inset 1px $zero-value $input-error-color, inset -1px $zero-value $input-error-color, inset $zero-value -1px $input-error-color;
1992
+ }
1993
+ }
1994
+
1995
+ .e-outline.e-float-input.e-input-focus.e-success:not(.e-error):not(.e-warning),
1996
+ .e-outline.e-float-input.e-control-wrapper.e-input-focus.e-success:not(.e-error):not(.e-warning),
1997
+ .e-outline.e-float-input.e-input-group.e-input-focus.e-success:not(.e-error):not(.e-warning),
1998
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-input-focus.e-success:not(.e-error):not(.e-warning) {
1999
+ @if $input-skin-name == 'material' {
2000
+ box-shadow: inset 1px $zero-value $input-success-color, inset -1px $zero-value $input-success-color, inset $zero-value -1px $input-success-color;
2001
+ }
2002
+ }
2003
+
2004
+ .e-outline.e-float-input.e-input-focus.e-warning:not(.e-error):not(.e-success),
2005
+ .e-outline.e-float-input.e-control-wrapper.e-input-focus.e-warning:not(.e-error):not(.e-success),
2006
+ .e-outline.e-float-input.e-input-group.e-input-focus.e-warning:not(.e-error):not(.e-success),
2007
+ .e-outline.e-float-input.e-input-group.e-control-wrapper.e-input-focus.e-warning:not(.e-error):not(.e-success) {
2008
+ @if $input-skin-name == 'material' {
2009
+ box-shadow: inset 1px $zero-value $input-warning-color, inset -1px $zero-value $input-warning-color, inset $zero-value -1px $input-warning-color;
2010
+ }
2011
+ }
2012
+
2013
+ .e-outline.e-input-group.e-disabled:not(.e-input-focus),
2014
+ .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),
2015
+ .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),
2016
+ .e-outline.e-input-group.e-disabled.e-float-icon-left:not(.e-input-focus),
2017
+ .e-outline.e-input-group.e-disabled.e-control-wrapper.e-float-icon-left:not(.e-input-focus) {
2018
+ @if $input-skin-name == 'material' {
2019
+ border-color: $outline-disabled-border-color;
2020
+ }
2021
+ }
2022
+
2023
+ .e-outline.e-float-input.e-success.e-input-focus input:focus ~ label.e-float-text,
2024
+ .e-outline.e-float-input.e-input-group.e-success.e-valid-input label.e-float-text.e-label-top,
2025
+ .e-outline.e-float-input.e-bigger.e-success.e-input-focus input:focus ~ label.e-float-text,
2026
+ .e-bigger .e-outline.e-float-input.e-success.e-input-focus input:focus ~ label.e-float-text,
2027
+ .e-outline.e-float-input.e-small.e-success.e-input-focus input:focus ~ label.e-float-text,
2028
+ .e-small .e-outline.e-float-input.e-success input:focus ~ label.e-float-text,
2029
+ .e-outline.e-float-input.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
2030
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-success) input:focus ~ label.e-float-text,
2031
+ .e-outline.e-float-input.e-success textarea:focus ~ label.e-float-text,
2032
+ .e-outline.e-float-input.e-bigger.e-success textarea:focus ~ label.e-float-text,
2033
+ .e-bigger .e-outline.e-float-input.e-success textarea:focus ~ label.e-float-text,
2034
+ .e-outline.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
2035
+ .e-small .e-outline.e-float-input.e-success textarea:focus ~ label.e-float-text,
2036
+ .e-outline.e-float-input.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
2037
+ .e-bigger .e-outline.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
2038
+ .e-outline.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2039
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-success input:focus ~ label.e-float-text,
2040
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2041
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
2042
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2043
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
2044
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
2045
+ .e-outline.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2046
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-success textarea:focus ~ label.e-float-text,
2047
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2048
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
2049
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2050
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
2051
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
2052
+ .e-outline.e-float-input.e-success label.e-float-text.e-label-top,
2053
+ .e-outline.e-float-input.e-input-group.e-success label.e-float-text.e-label-top,
2054
+ .e-outline.e-float-input.e-control-wrapper.e-success label.e-float-text.e-label-top,
2055
+ .e-outline.e-float-input.e-valid-input.e-success:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
2056
+ .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,
2057
+ .e-outline.e-float-input.e-valid-input.e-success:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
2058
+ .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,
2059
+ .e-outline.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2060
+ .e-outline.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2061
+ .e-bigger .e-outline.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2062
+ .e-outline.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
2063
+ .e-small .e-outline.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2064
+ .e-outline.e-float-input.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2065
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-success).e-input-focus input ~ label.e-float-text,
2066
+ .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
2067
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2068
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
2069
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text,
2070
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
2071
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
2072
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text {
2073
+ @if $input-skin-name == 'material' {
2074
+ color: $input-success-color;
2075
+ }
2076
+ }
2077
+
2078
+ .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
2079
+ .e-outline.e-float-input.e-input-group.e-error.e-valid-input label.e-label-top.e-float-text,
2080
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input:focus ~ label.e-float-text,
2081
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input:focus ~ label.e-float-text,
2082
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input:focus ~ label.e-float-text,
2083
+ .e-small .e-outline.e-float-input.e-error input:focus ~ label.e-float-text,
2084
+ .e-outline.e-float-input.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
2085
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2086
+ .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
2087
+ .e-outline.e-float-input.e-bigger.e-error textarea:focus ~ label.e-float-text,
2088
+ .e-bigger .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
2089
+ .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
2090
+ .e-small .e-outline.e-float-input.e-error textarea:focus ~ label.e-float-text,
2091
+ .e-outline.e-float-input.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
2092
+ .e-bigger .e-outline.e-float-input.e-small.e-error textarea:focus ~ label.e-float-text,
2093
+ .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2094
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error input:focus ~ label.e-float-text,
2095
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2096
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
2097
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2098
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error input:focus ~ label.e-float-text,
2099
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error input:focus ~ label.e-float-text,
2100
+ .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2101
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error textarea:focus ~ label.e-float-text,
2102
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2103
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
2104
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2105
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error textarea:focus ~ label.e-float-text,
2106
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error textarea:focus ~ label.e-float-text,
2107
+ .e-outline.e-float-input.e-error label.e-float-text.e-label-top,
2108
+ .e-outline.e-float-input.e-input-group.e-error label.e-float-text.e-label-top,
2109
+ .e-outline.e-float-input.e-control-wrapper.e-error label.e-float-text.e-label-top,
2110
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
2111
+ .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,
2112
+ .e-outline.e-float-input.e-valid-input.e-error:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
2113
+ .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,
2114
+ .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2115
+ .e-outline.e-float-input.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2116
+ .e-bigger .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2117
+ .e-outline.e-float-input.e-small.e-error.e-input-focus input ~ label.e-float-text,
2118
+ .e-small .e-outline.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2119
+ .e-outline.e-float-input.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2120
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2121
+ .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
2122
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2123
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
2124
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text,
2125
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text,
2126
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-error.e-input-focus input ~ label.e-float-text,
2127
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-error.e-input-focus input ~ label.e-float-text {
2128
+ @if $input-skin-name == 'material' {
2129
+ color: $input-error-color;
2130
+ }
2131
+ }
2132
+
2133
+ .e-outline.e-float-input.e-warning.e-input-focus input:focus ~ label.e-float-text,
2134
+ .e-outline.e-float-input.e-input-group.e-warning.e-valid-input label.e-label-top.e-float-text,
2135
+ .e-outline.e-float-input.e-bigger.e-warning.e-input-focus input:focus ~ label.e-float-text,
2136
+ .e-bigger .e-outline.e-float-input.e-warning.e-input-focus input:focus ~ label.e-float-text,
2137
+ .e-outline.e-float-input.e-small.e-warning.e-input-focus input:focus ~ label.e-float-text,
2138
+ .e-small .e-outline.e-float-input.e-warning input:focus ~ label.e-float-text,
2139
+ .e-outline.e-float-input.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
2140
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-warning) input:focus ~ label.e-float-text,
2141
+ .e-outline.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2142
+ .e-outline.e-float-input.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2143
+ .e-bigger .e-outline.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2144
+ .e-outline.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
2145
+ .e-small .e-outline.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2146
+ .e-outline.e-float-input.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2147
+ .e-bigger .e-outline.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
2148
+ .e-outline.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2149
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-warning input:focus ~ label.e-float-text,
2150
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2151
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
2152
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2153
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
2154
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
2155
+ .e-outline.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2156
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2157
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2158
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
2159
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2160
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
2161
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
2162
+ .e-outline.e-float-input.e-warning label.e-float-text.e-label-top,
2163
+ .e-outline.e-float-input.e-input-group.e-warning label.e-float-text.e-label-top,
2164
+ .e-outline.e-float-input.e-control-wrapper.e-warning label.e-float-text.e-label-top,
2165
+ .e-outline.e-float-input.e-valid-input.e-warning:not(.e-input-focus) input:valid ~ label.e-float-text.e-label-top,
2166
+ .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,
2167
+ .e-outline.e-float-input.e-valid-input.e-warning:not(.e-input-focus) textarea:valid ~ label.e-float-text.e-label-top,
2168
+ .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,
2169
+ .e-outline.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2170
+ .e-outline.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2171
+ .e-bigger .e-outline.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2172
+ .e-outline.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
2173
+ .e-small .e-outline.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2174
+ .e-outline.e-float-input.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2175
+ .e-bigger .e-outline.e-float-input.e-small:not(.e-warning).e-input-focus input ~ label.e-float-text,
2176
+ .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
2177
+ .e-outline.e-float-input.e-control-wrapper.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2178
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
2179
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text,
2180
+ .e-small .e-outline.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
2181
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
2182
+ .e-bigger .e-outline.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text {
2183
+ @if $input-skin-name == 'material' {
2184
+ color: $input-warning-color;
2185
+ }
2186
+ }
2187
+
2188
+ .e-outline.e-float-input.e-input-group.e-valid-input.e-input-focus label.e-label-top,
2189
+ .e-outline.e-float-input.e-input-group.e-input-focus label.e-label-top,
2190
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-valid-input.e-input-focus label.e-label-top,
2191
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-input-focus label.e-label-top {
2192
+ @if $input-skin-name == 'material' {
2193
+ color: $input-active-border-color;
2194
+ }
2195
+ }
2196
+
2197
+ .e-outline.e-input[disabled],
2198
+ .e-outline.e-input-group .e-input[disabled],
2199
+ .e-outline.e-input-group.e-control-wrapper .e-input[disabled],
2200
+ .e-outline.e-input-group.e-disabled,
2201
+ .e-outline.e-input-group.e-control-wrapper.e-disabled,
2202
+ .e-outline.e-float-input input[disabled],
2203
+ .e-outline.e-float-input.e-control-wrapper input[disabled],
2204
+ .e-outline.e-float-input textarea[disabled],
2205
+ .e-outline.e-float-input.e-control-wrapper textarea[disabled],
2206
+ .e-outline.e-float-input.e-disabled,
2207
+ .e-outline.e-float-input.e-control-wrapper.e-disabled,
2208
+ .e-outline.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
2209
+ .e-outline.e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap,
2210
+ .e-outline.e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
2211
+ .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 {
2212
+ @if $input-skin-name == 'material' {
2213
+ background-image: none;
2214
+ border-bottom-color: $outline-disabled-border-color;
2215
+ border-color: $outline-disabled-border-color;
2216
+ }
2217
+ }
2218
+
2219
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-input-focus),
2220
+ .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),
2221
+ .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) {
2222
+ @if $input-skin-name == 'material' {
2223
+ border-top-color: transparent;
2224
+ }
2225
+ }
2226
+
2227
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2228
+ .e-outline.e-float-input.e-input-group.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::after,
2229
+ .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,
2230
+ .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,
2231
+ .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,
2232
+ .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,
2233
+ .e-outline.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2234
+ .e-outline.e-disabled.e-valid-input:not(.e-input-focus) label.e-float-text::after,
2235
+ .e-outline.e-disabled.e-float-input.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2236
+ .e-outline.e-disabled.e-float-input.e-valid-input:not(.e-input-focus) label.e-float-text::after,
2237
+ .e-outline.e-disabled.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) label.e-float-text::before,
2238
+ .e-outline.e-disabled.e-float-input.e-control-wrapper.e-valid-input:not(.e-input-focus) label.e-float-text::after {
2239
+ @if $input-skin-name == 'material' {
2240
+ border-color: $outline-disabled-border-color;
2241
+ }
2242
+ }
2243
+
2244
+ .e-outline.e-float-input.e-input-group.e-disabled .e-float-text,
2245
+ .e-outline.e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
2246
+ .e-outline.e-float-input input[disabled] ~ label.e-float-text,
2247
+ .e-outline.e-float-input input[disabled] ~ label.e-label-top.e-float-text,
2248
+ .e-outline.e-float-input.e-disabled label.e-float-text,
2249
+ .e-outline.e-float-input.e-disabled label.e-float-text.e-label-top,
2250
+ .e-outline.e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
2251
+ .e-outline.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2252
+ .e-outline.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2253
+ .e-outline.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2254
+ .e-outline.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2255
+ .e-outline.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2256
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2257
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
2258
+ @if $input-skin-name == 'material' {
2259
+ color: $outline-float-label-disbale-font-color;
2260
+ }
2261
+ }
2262
+
2263
+ .e-outline.e-float-input textarea[disabled] ~ label.e-float-text,
2264
+ .e-outline.e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
2265
+ .e-outline.e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
2266
+ .e-outline.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2267
+ .e-outline.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2268
+ .e-outline.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2269
+ .e-outline.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2270
+ .e-outline.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2271
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2272
+ .e-outline.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
2273
+ @if $input-skin-name == 'material' {
2274
+ color: $outline-float-label-disbale-font-color;
2275
+ }
2276
+ }
2277
+
2278
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
2279
+ .e-outline.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
2280
+ .e-outline.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
2281
+ .e-outline.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
2282
+ .e-outline.e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
2283
+ .e-outline.e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
2284
+ .e-outline.e-float-input.e-control-wrapper.e-disabled label.e-float-text,
2285
+ .e-outline.e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
2286
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
2287
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2288
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2289
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2290
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2291
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2292
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2293
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2294
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
2295
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2296
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2297
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2298
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2299
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2300
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
2301
+ .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 {
2302
+ @if $input-skin-name == 'material' {
2303
+ color: $outline-float-label-disbale-font-color;
2304
+ }
2305
+ }
2306
+
2307
+ .e-outline.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
2308
+ .e-outline.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
2309
+ .e-outline.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
2310
+ .e-outline.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
2311
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
2312
+ .e-outline.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2313
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2314
+ .e-outline.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2315
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2316
+ .e-outline.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2317
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2318
+ .e-outline.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2319
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
2320
+ .e-outline.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2321
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2322
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2323
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2324
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2325
+ .e-outline.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
2326
+ .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 {
2327
+ @if $input-skin-name == 'material' {
2328
+ color: $outline-float-label-disbale-font-color;
2329
+ }
2330
+ }
2331
+
2332
+ .e-outline.e-input-group.e-disabled .e-input-group-icon,
2333
+ .e-outline.e-input-group.e-control-wrapper.e-disabled .e-input-group-icon {
2334
+ @if $input-skin-name == 'material' {
2335
+ color: $outline-input-group-disabled-color;
2336
+ }
2337
+ }
2338
+
2339
+ // Outline input clear icon
2340
+
2341
+ .e-outline.e-float-input:not(.e-disabled) .e-clear-icon:hover,
2342
+ .e-outline.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover,
2343
+ .e-outline.e-input-group:not(.e-disabled) .e-clear-icon:hover,
2344
+ .e-outline.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover {
2345
+ @if $input-skin-name == 'material' {
2346
+ color: $outline-input-clear-icon-hover-color;
2347
+ }
2348
+ }
2349
+
2350
+ .e-outline.e-float-input:not(.e-disabled) .e-clear-icon:active,
2351
+ .e-outline.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:active,
2352
+ .e-outline.e-input-group:not(.e-disabled) .e-clear-icon:active,
2353
+ .e-outline.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:active {
2354
+ @if $input-skin-name == 'material' {
2355
+ color: $outline-input-clear-icon-active-color;
2356
+ }
2357
+ }
2358
+
2359
+ // Filled input background color changes
2360
+
2361
+ .e-filled.e-input-group,
2362
+ .e-filled.e-input-group.e-control-wrapper,
2363
+ .e-filled.e-float-input,
2364
+ .e-filled.e-float-input.e-input-group,
2365
+ .e-filled.e-float-input.e-control-wrapper,
2366
+ .e-filled.e-float-input.e-input-group.e-control-wrapper {
2367
+ @if $input-skin-name == 'material' {
2368
+ background: $filled-input-bg-color;
2369
+ transition: $background-color-transition;
2370
+ }
2371
+ }
2372
+
2373
+ .e-filled.e-input-group:hover,
2374
+ .e-filled.e-input-group.e-control-wrapper:hover,
2375
+ .e-filled.e-float-input:hover,
2376
+ .e-filled.e-float-input.e-input-group:hover,
2377
+ .e-filled.e-float-input.e-control-wrapper:hover,
2378
+ .e-filled.e-float-input.e-input-group.e-control-wrapper:hover {
2379
+ @if $input-skin-name == 'material' {
2380
+ background: $filled-input-overlay-focused-bg-color;
2381
+ transition: $background-color-transition;
2382
+ }
2383
+ }
2384
+
2385
+ .e-filled.e-input-group.e-input-focus,
2386
+ .e-filled.e-input-group.e-control-wrapper.e-input-focus,
2387
+ .e-filled.e-float-input.e-input-focus,
2388
+ .e-filled.e-float-input.e-input-group.e-input-focus,
2389
+ .e-filled.e-float-input.e-control-wrapper.e-input-focus,
2390
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-input-focus,
2391
+ .e-filled.e-input-group:hover.e-input-focus,
2392
+ .e-filled.e-input-group:hover.e-control-wrapper.e-input-focus,
2393
+ .e-filled.e-float-input:hover.e-input-focus,
2394
+ .e-filled.e-float-input:hover.e-input-group.e-input-focus,
2395
+ .e-filled.e-float-input:hover.e-control-wrapper.e-input-focus,
2396
+ .e-filled.e-float-input:hover.e-input-group.e-control-wrapper.e-input-focus {
2397
+ @if $input-skin-name == 'material' {
2398
+ background: $filled-input-overlay-activated-bg-color;
2399
+ transition: $background-color-transition;
2400
+ }
2401
+ }
2402
+
2403
+ // Filled input border color changes
2404
+
2405
+ .e-filled.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2406
+ .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),
2407
+ .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),
2408
+ .e-filled.e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled):not(.e-float-icon-left),
2409
+ .e-filled.e-float-input:hover:not(.e-input-group):not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled),
2410
+ .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) {
2411
+ @if $input-skin-name == 'material' {
2412
+ border-color: $filled-input-hover-border-color;
2413
+ }
2414
+ }
2415
+
2416
+ .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),
2417
+ .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),
2418
+ .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),
2419
+ .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),
2420
+ .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),
2421
+ .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) {
2422
+ @if $input-skin-name == 'material' {
2423
+ border-color: $filled-input-hover-border-color;
2424
+ }
2425
+ }
2426
+
2427
+ .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),
2428
+ .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),
2429
+ .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),
2430
+ .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),
2431
+ .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),
2432
+ .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) {
2433
+ @if $input-skin-name == 'material' {
2434
+ border-color: $filled-input-hover-border-color;
2435
+ }
2436
+ }
2437
+
2438
+ .e-filled.e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error),
2439
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error) {
2440
+ @if $input-skin-name == 'material' {
2441
+ border-color: $input-group-full-border-color;
2442
+ }
2443
+ }
2444
+
2445
+ .e-filled.e-float-input:not(.e-success):not(.e-warning):not(.e-error),
2446
+ .e-filled.e-float-input.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error) {
2447
+ @if $input-skin-name == 'material' {
2448
+ border-color: $input-group-full-border-color;
2449
+ }
2450
+ }
2451
+
2452
+ .e-filled.e-float-input.e-success,
2453
+ .e-filled.e-float-input.e-control-wrapper.e-success,
2454
+ .e-filled.e-input-group.e-float-icon-left.e-success,
2455
+ .e-filled.e-input-group.e-float-icon-left.e-control-wrapper.e-success {
2456
+ @if $input-skin-name == 'material' {
2457
+ @include input-state-color ($input-success-color);
2458
+ }
2459
+ }
2460
+
2461
+ .e-filled.e-float-input.e-warning,
2462
+ .e-filled.e-float-input.e-control-wrapper.e-warning,
2463
+ .e-filled.e-input-group.e-float-icon-left.e-warning,
2464
+ .e-filled.e-input-group.e-float-icon-left.e-control-wrapper.e-warning {
2465
+ @if $input-skin-name == 'material' {
2466
+ @include input-state-color ($input-warning-color);
2467
+ }
2468
+ }
2469
+
2470
+ .e-filled.e-float-input.e-error,
2471
+ .e-filled.e-float-input.e-control-wrapper.e-error,
2472
+ .e-filled.e-input-group.e-float-icon-left.e-error,
2473
+ .e-filled.e-input-group.e-float-icon-left.e-control-wrapper.e-error {
2474
+ @if $input-skin-name == 'material' {
2475
+ @include input-state-color ($input-error-color);
2476
+ }
2477
+ }
2478
+
2479
+ // Filled input floating label color configuration
2480
+
2481
+ .e-filled label.e-float-text,
2482
+ .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2483
+ .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,
2484
+ .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,
2485
+ .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,
2486
+ .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,
2487
+ .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,
2488
+ .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,
2489
+ .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,
2490
+ .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,
2491
+ .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,
2492
+ .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,
2493
+ .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,
2494
+ .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,
2495
+ .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 {
2496
+ @if $input-skin-name == 'material' {
2497
+ color: $filled-input-float-label-color;
2498
+ }
2499
+ }
2500
+
2501
+ .e-filled.e-float-input.e-error label.e-float-text,
2502
+ .e-filled.e-float-input.e-control-wrapper.e-error label.e-float-text,
2503
+ .e-filled.e-float-input.e-error input:focus ~ label.e-float-text,
2504
+ .e-filled.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
2505
+ .e-filled.e-float-input.e-error textarea:focus ~ label.e-float-text,
2506
+ .e-filled.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
2507
+ .e-filled.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
2508
+ .e-filled.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text {
2509
+ @if $input-skin-name == 'material' {
2510
+ color: $input-error-color;
2511
+ }
2512
+ }
2513
+
2514
+ .e-filled.e-float-input.e-success label.e-float-text,
2515
+ .e-filled.e-float-input.e-control-wrapper.e-success label.e-float-text,
2516
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
2517
+ .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
2518
+ .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
2519
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
2520
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
2521
+ .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text {
2522
+ @if $input-skin-name == 'material' {
2523
+ color: $input-success-color;
2524
+ }
2525
+ }
2526
+
2527
+ .e-filled.e-float-input.e-warning label.e-float-text,
2528
+ .e-filled.e-float-input.e-control-wrapper.e-warning label.e-float-text,
2529
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
2530
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
2531
+ .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
2532
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
2533
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
2534
+ .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text {
2535
+ @if $input-skin-name == 'material' {
2536
+ color: $input-warning-color;
2537
+ }
2538
+ }
2539
+
2540
+ .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2541
+ .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2542
+ .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2543
+ .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2544
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2545
+ .e-filled.e-float-input:not(.e-error) input label.e-float-text.e-label-top,
2546
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2547
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2548
+ .e-filled.e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2549
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2550
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2551
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2552
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2553
+ .e-bigger .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2554
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2555
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2556
+ .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2557
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2558
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
2559
+ @if $input-skin-name == 'material' {
2560
+ color: $filled-input-float-label-color;
2561
+ }
2562
+ }
2563
+
2564
+ .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2565
+ .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2566
+ .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2567
+ .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2568
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2569
+ .e-filled.e-float-input:not(.e-error) input label.e-float-text.e-label-top,
2570
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2571
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2572
+ .e-filled.e-float-input.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2573
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2574
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2575
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2576
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2577
+ .e-bigger .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2578
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2579
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2580
+ .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2581
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2582
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text {
2583
+ @if $input-skin-name == 'material' {
2584
+ color: $filled-input-float-label-color;
2585
+ }
2586
+ }
2587
+
2588
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2589
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
2590
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
2591
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2592
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2593
+ .e-filled.e-float-input .e-control-wrapper:not(.e-error) input label.e-float-text.e-label-top,
2594
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2595
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2596
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2597
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2598
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2599
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2600
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
2601
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
2602
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2603
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2604
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2605
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2606
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text {
2607
+ @if $input-skin-name == 'material' {
2608
+ color: $filled-input-float-label-color;
2609
+ }
2610
+ }
2611
+
2612
+ .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2613
+ .e-filled.e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
2614
+ .e-filled.e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2615
+ .e-filled.e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
2616
+ .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2617
+ .e-small .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2618
+ .e-small .e-filled.e-float-input:not(.e-error) input:valid ~ label.e-float-text,
2619
+ .e-small .e-filled.e-float-input:not(.e-error) input ~ label.e-label-top.e-float-text,
2620
+ .e-small .e-filled.e-float-input:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
2621
+ .e-small .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2622
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2623
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2624
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2625
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2626
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2627
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2628
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input:valid ~ label.e-float-text,
2629
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2630
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2631
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2632
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2633
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2634
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2635
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
2636
+ @if $input-skin-name == 'material' {
2637
+ color: $filled-input-float-label-color;
2638
+ }
2639
+ }
2640
+
2641
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2642
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
2643
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2644
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-float-text,
2645
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
2646
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2647
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:valid ~ label.e-float-text,
2648
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input ~ label.e-label-top.e-float-text,
2649
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly] ~ label.e-float-text.e-label-top,
2650
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
2651
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2652
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:valid ~ label.e-float-text,
2653
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input ~ label.e-label-top.e-float-text,
2654
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2655
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2656
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2657
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:valid ~ label.e-float-text,
2658
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input ~ label.e-label-top.e-float-text,
2659
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly] ~ label.e-label-top.e-float-text,
2660
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
2661
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2662
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2663
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2664
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
2665
+ @if $input-skin-name == 'material' {
2666
+ color: $filled-input-float-label-color;
2667
+ }
2668
+ }
2669
+
2670
+ .e-filled.e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2671
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2672
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2673
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2674
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2675
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2676
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2677
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2678
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2679
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2680
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2681
+ .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,
2682
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
2683
+ .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 {
2684
+ @if $input-skin-name == 'material' {
2685
+ color: $filled-input-float-label-color;
2686
+ }
2687
+ }
2688
+
2689
+ .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),
2690
+ .e-filled.e-float-input:not(.e-input-focus) textarea:not(:focus):not(:valid) ~ label.e-float-text:not(.e-label-top),
2691
+ .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) {
2692
+ @if $input-skin-name == 'material' {
2693
+ color: $filled-input-float-label-color;
2694
+ }
2695
+ }
2696
+
2697
+ .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2698
+ .e-filled.e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
2699
+ .e-filled.e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2700
+ .e-filled.e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2701
+ .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2702
+ .e-filled.e-float-input:not(.e-error) textarea label.e-float-text.e-label-top,
2703
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2704
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2705
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2706
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2707
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2708
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2709
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
2710
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2711
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2712
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2713
+ @if $input-skin-name == 'material' {
2714
+ color: $filled-input-float-label-color;
2715
+ }
2716
+ }
2717
+
2718
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2719
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
2720
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2721
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2722
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2723
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea label.e-float-text.e-label-top,
2724
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2725
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2726
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2727
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2728
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2729
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2730
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
2731
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2732
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2733
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2734
+ @if $input-skin-name == 'material' {
2735
+ color: $filled-input-float-label-color;
2736
+ }
2737
+ }
2738
+
2739
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2740
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2741
+ .e-filled.e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2742
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
2743
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2744
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2745
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:valid ~ label.e-float-text,
2746
+ .e-small .e-filled.e-float-input:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2747
+ .e-small .e-filled.e-float-input:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
2748
+ .e-small .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2749
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2750
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2751
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2752
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2753
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2754
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2755
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2756
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2757
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2758
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2759
+ @if $input-skin-name == 'material' {
2760
+ color: $filled-input-float-label-color;
2761
+ }
2762
+ }
2763
+
2764
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2765
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2766
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2767
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-float-text,
2768
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
2769
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2770
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:valid ~ label.e-float-text,
2771
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2772
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly] ~ label.e-float-text.e-label-top,
2773
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
2774
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2775
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:valid ~ label.e-float-text,
2776
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2777
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2778
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
2779
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2780
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:valid ~ label.e-float-text,
2781
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea ~ label.e-label-top.e-float-text,
2782
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly] ~ label.e-label-top.e-float-text,
2783
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text {
2784
+ @if $input-skin-name == 'material' {
2785
+ color: $filled-input-float-label-color;
2786
+ }
2787
+ }
2788
+
2789
+ .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2790
+ .e-filled.e-float-input.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2791
+ .e-bigger .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2792
+ .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2793
+ .e-small .e-filled.e-float-input:not(.e-error) input:focus ~ label.e-float-text,
2794
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2795
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input:focus ~ label.e-float-text,
2796
+ .e-filled.e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2797
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2798
+ .e-bigger .e-filled.e-float-input:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2799
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2800
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2801
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2802
+ .e-filled.e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
2803
+ .e-small .e-filled.e-float-input:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
2804
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2805
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) input[readonly]:focus ~ label.e-label-top.e-float-text,
2806
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[readonly]:focus ~ label.e-float-text,
2807
+ .e-small .e-float-input.e-control-wrapper:not(.e-error) input[readonly]:focus ~ label.e-float-text.e-label-top,
2808
+ .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,
2809
+ .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,
2810
+ .e-filled.e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2811
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2812
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2813
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2814
+ .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,
2815
+ .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,
2816
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
2817
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text.e-label-top,
2818
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2819
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-label-top.e-float-text,
2820
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input[readonly] ~ label.e-float-text,
2821
+ .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,
2822
+ .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,
2823
+ .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,
2824
+ .e-filled.e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2825
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2826
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2827
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2828
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2829
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2830
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
2831
+ .e-small .e-filled.e-float-input:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
2832
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text,
2833
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-label-top.e-float-text
2834
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[readonly]:focus ~ label.e-float-text,
2835
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[readonly]:focus ~ label.e-float-text.e-label-top,
2836
+ .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,
2837
+ .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,
2838
+ .e-filled.e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2839
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2840
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2841
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text,
2842
+ .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,
2843
+ .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,
2844
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
2845
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text.e-label-top,
2846
+ .e-filled.e-float-input.e-small.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-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-label-top.e-float-text
2848
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus textarea[readonly] ~ label.e-float-text,
2849
+ .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,
2850
+ .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,
2851
+ .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,
2852
+ .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2853
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2854
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2855
+ .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2856
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:focus ~ label.e-float-text,
2857
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2858
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2859
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2860
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2861
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2862
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2863
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) input:focus ~ label.e-float-text,
2864
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input:focus ~ label.e-float-text,
2865
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input:focus ~ label.e-float-text,
2866
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2867
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2868
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2869
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2870
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea:focus ~ label.e-float-text,
2871
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea:focus ~ label.e-float-text,
2872
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea:focus ~ label.e-float-text,
2873
+ .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2874
+ .e-filled.e-float-input.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2875
+ .e-bigger .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2876
+ .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2877
+ .e-small .e-filled.e-float-input:not(.e-error).e-input-focus input ~ label.e-float-text,
2878
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2879
+ .e-bigger .e-filled.e-float-input.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2880
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2881
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2882
+ .e-bigger .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2883
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text,
2884
+ .e-small .e-filled.e-float-input.e-control-wrapper:not(.e-error).e-input-focus input ~ label.e-float-text,
2885
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error).e-input-focus input ~ label.e-float-text,
2886
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error).e-input-focus input ~ label.e-float-text {
2887
+ @if $input-skin-name == 'material' {
2888
+ color: $input-active-accent-color;
2889
+ }
2890
+ }
2891
+
2892
+ .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
2893
+ .e-bigger .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
2894
+ .e-bigger.e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
2895
+ .e-small .e-filled.e-float-input:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
2896
+ .e-small.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.e-small:not(.e-error):not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
2898
+ .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,
2899
+ .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,
2900
+ .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,
2901
+ .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,
2902
+ .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,
2903
+ .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,
2904
+ .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,
2905
+ .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,
2906
+ .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,
2907
+ .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 {
2908
+ @if $input-skin-name == 'material' {
2909
+ color: $filled-input-float-label-color;
2910
+ }
2911
+ }
2912
+
2913
+ .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2914
+ .e-bigger .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2915
+ .e-bigger.e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2916
+ .e-small .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2917
+ .e-small.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.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2919
+ .e-bigger.e-small .e-filled.e-float-input:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2920
+ .e-filled.e-float-input.e-bigger.e-small:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2921
+ .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2922
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2923
+ .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2924
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2925
+ .e-small.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-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text,
2927
+ .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,
2928
+ .e-filled.e-bigger.e-small.e-control-wrapper.e-autofill:not(.e-error) textarea:not(:focus):-webkit-autofill~label.e-float-text {
2929
+ @if $input-skin-name == 'material' {
2930
+ color: $filled-input-float-label-color;
2931
+ }
2932
+ }
2933
+
2934
+ // sass-lint:disable no-vendor-prefixes
2935
+ input.e-filled.e-input#{$css}:-moz-placeholder {
2936
+ @if $input-skin-name == 'material' {
2937
+ color: $filled-input-float-label-color;
2938
+ }
2939
+ }
2940
+
2941
+ // sass-lint:disable no-vendor-prefixes
2942
+ .e-input-group.e-filled input.e-input:-moz-placeholder {
2943
+ @if $input-skin-name == 'material' {
2944
+ color: $filled-input-float-label-color;
2945
+ }
2946
+ }
2947
+
2948
+ // sass-lint:disable no-vendor-prefixes
2949
+ .e-input-group.e-filled input.e-input:-moz-placeholder,
2950
+ .e-input-group.e-filled.e-control-wrapper input.e-input:-moz-placeholder {
2951
+ @if $input-skin-name == 'material' {
2952
+ color: $filled-input-float-label-color;
2953
+ }
2954
+ }
2955
+
2956
+ // sass-lint:disable no-vendor-prefixes
2957
+ input.e-filled.e-input#{$css}:-moz-placeholder {
2958
+ @if $input-skin-name == 'material' {
2959
+ color: $filled-input-float-label-color;
2960
+ }
2961
+ }
2962
+
2963
+ // sass-lint:disable no-vendor-prefixes
2964
+ .e-input-group.e-filled input.e-input:-moz-placeholder {
2965
+ @if $input-skin-name == 'material' {
2966
+ color: $filled-input-float-label-color;
2967
+ }
2968
+ }
2969
+
2970
+ // sass-lint:disable no-vendor-prefixes
2971
+ .e-input-group.e-filled.e-control-wrapper input.e-input:-moz-placeholder {
2972
+ @if $input-skin-name == 'material' {
2973
+ color: $filled-input-float-label-color;
2974
+ }
2975
+ }
2976
+
2977
+ // sass-lint:disable no-vendor-prefixes
2978
+ textarea.e-filled.e-input#{$css}:-moz-placeholder {
2979
+ @if $input-skin-name == 'material' {
2980
+ color: $filled-input-float-label-color;
2981
+ }
2982
+ }
2983
+
2984
+ // sass-lint:disable no-vendor-prefixes
2985
+ .e-input-group.e-filled textarea.e-input:-moz-placeholder {
2986
+ @if $input-skin-name == 'material' {
2987
+ color: $filled-input-float-label-color;
2988
+ }
2989
+ }
2990
+
2991
+ // sass-lint:disable no-vendor-prefixes
2992
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input:-moz-placeholder {
2993
+ @if $input-skin-name == 'material' {
2994
+ color: $filled-input-float-label-color;
2995
+ }
2996
+ }
2997
+
2998
+ // sass-lint:disable no-vendor-prefixes
2999
+ input.e-filled.e-input#{$css}::-moz-placeholder {
3000
+ @if $input-skin-name == 'material' {
3001
+ color: $filled-input-float-label-color;
3002
+ }
3003
+ }
3004
+
3005
+ // sass-lint:disable no-vendor-prefixes
3006
+ .e-input-group.e-filled input.e-input::-moz-placeholder {
3007
+ @if $input-skin-name == 'material' {
3008
+ color: $filled-input-float-label-color;
3009
+ }
3010
+ }
3011
+
3012
+ // sass-lint:disable no-vendor-prefixes
3013
+ .e-input-group.e-filled.e-control-wrapper input.e-input::-moz-placeholder {
3014
+ @if $input-skin-name == 'material' {
3015
+ color: $filled-input-float-label-color;
3016
+ }
3017
+ }
3018
+
3019
+ // sass-lint:disable no-vendor-prefixes
3020
+ textarea.e-filled.e-input#{$css}::-moz-placeholder {
3021
+ @if $input-skin-name == 'material' {
3022
+ color: $filled-input-float-label-color;
3023
+ }
3024
+ }
3025
+
3026
+ // sass-lint:disable no-vendor-prefixes
3027
+ .e-input-group.e-filled textarea.e-input::-moz-placeholder {
3028
+ @if $input-skin-name == 'material' {
3029
+ color: $filled-input-float-label-color;
3030
+ }
3031
+ }
3032
+
3033
+ // sass-lint:disable no-vendor-prefixes
3034
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input::-moz-placeholder {
3035
+ @if $input-skin-name == 'material' {
3036
+ color: $filled-input-float-label-color;
3037
+ }
3038
+ }
3039
+
3040
+ // sass-lint:disable no-vendor-prefixes
3041
+ input.e-filled.e-input#{$css}:-ms-input-placeholder {
3042
+ @if $input-skin-name == 'material' {
3043
+ color: $filled-input-float-label-color;
3044
+ }
3045
+ }
3046
+
3047
+ // sass-lint:disable no-vendor-prefixes
3048
+ .e-input-group.e-filled input.e-input:-ms-input-placeholder {
3049
+ @if $input-skin-name == 'material' {
3050
+ color: $filled-input-float-label-color;
3051
+ }
3052
+ }
3053
+
3054
+ // sass-lint:disable no-vendor-prefixes
3055
+ .e-input-group.e-filled.e-control-wrapper input.e-input:-ms-input-placeholder {
3056
+ @if $input-skin-name == 'material' {
3057
+ color: $filled-input-float-label-color;
3058
+ }
3059
+ }
3060
+
3061
+ // sass-lint:disable no-vendor-prefixes
3062
+ textarea.e-filled.e-input#{$css}:-ms-input-placeholder {
3063
+ @if $input-skin-name == 'material' {
3064
+ color: $filled-input-float-label-color;
3065
+ }
3066
+ }
3067
+
3068
+ // sass-lint:disable no-vendor-prefixes
3069
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input:-ms-input-placeholder {
3070
+ @if $input-skin-name == 'material' {
3071
+ color: $filled-input-float-label-color;
3072
+ }
3073
+ }
3074
+
3075
+ // sass-lint:disable no-vendor-prefixes
3076
+ .e-input-group textarea.e-input:-ms-input-placeholder {
3077
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3078
+ color: $input-placeholder-color;
3079
+ }
3080
+ }
3081
+
3082
+ // sass-lint:disable no-vendor-prefixes
3083
+ .e-input-group textarea.e-input:-moz-placeholder {
3084
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3085
+ color: $input-placeholder-color;
3086
+ }
3087
+ }
3088
+
3089
+ // sass-lint:disable no-vendor-prefixes
3090
+ .e-input-group .e-input:-ms-input-placeholder {
3091
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3092
+ color: $input-placeholder-color;
3093
+ }
3094
+ }
3095
+
3096
+ // sass-lint:disable no-vendor-prefixes
3097
+ input.e-input#{$css}::-webkit-input-placeholder {
3098
+ @if $input-skin-name == 'tailwind' or $input-skin-name == 'bootstrap5' {
3099
+ color: $input-placeholder-color;
3100
+ }
3101
+ }
3102
+
3103
+ // sass-lint:disable no-vendor-prefixes
3104
+ .e-input-group.e-filled textarea.e-input:-ms-input-placeholder {
3105
+ @if $input-skin-name == 'material' {
3106
+ color: $filled-input-float-label-color;
3107
+ }
3108
+ }
3109
+
3110
+ // sass-lint:disable no-vendor-prefixes
3111
+ input.e-filled.e-input#{$css}::-webkit-input-placeholder {
3112
+ @if $input-skin-name == 'material' {
3113
+ color: $filled-input-float-label-color;
3114
+ }
3115
+ }
3116
+
3117
+ // sass-lint:disable no-vendor-prefixes
3118
+ .e-input-group.e-filled.e-control-wrapper input.e-input::-webkit-input-placeholder {
3119
+ @if $input-skin-name == 'material' {
3120
+ color: $filled-input-float-label-color;
3121
+ }
3122
+ }
3123
+
3124
+ // sass-lint:disable no-vendor-prefixes
3125
+ .e-input-group.e-filled input.e-input::-webkit-input-placeholder {
3126
+ @if $input-skin-name == 'material' {
3127
+ color: $filled-input-float-label-color;
3128
+ }
3129
+ }
3130
+
3131
+ // sass-lint:disable no-vendor-prefixes
3132
+ textarea.e-filled.e-input#{$css}::-webkit-input-placeholder {
3133
+ @if $input-skin-name == 'material' {
3134
+ color: $filled-input-float-label-color;
3135
+ }
3136
+ }
3137
+
3138
+ // sass-lint:disable no-vendor-prefixes
3139
+ .e-input-group.e-filled textarea.e-input::-webkit-input-placeholder {
3140
+ @if $input-skin-name == 'material' {
3141
+ color: $filled-input-float-label-color;
3142
+ }
3143
+ }
3144
+
3145
+ // sass-lint:disable no-vendor-prefixes
3146
+ .e-input-group.e-filled.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
3147
+ @if $input-skin-name == 'material' {
3148
+ color: $filled-input-float-label-color;
3149
+ }
3150
+ }
3151
+
3152
+ // Filled input clear icon states
3153
+
3154
+ .e-filled.e-float-input:not(.e-disabled) .e-clear-icon:hover,
3155
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover,
3156
+ .e-filled.e-input-group:not(.e-disabled) .e-clear-icon:hover,
3157
+ .e-filled.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:hover {
3158
+ @if $input-skin-name == 'material' {
3159
+ color: $filled-input-clear-icon-hover-color;
3160
+ }
3161
+ }
3162
+
3163
+ .e-filled.e-float-input:not(.e-disabled) .e-clear-icon:active,
3164
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) .e-clear-icon:active,
3165
+ .e-filled.e-input-group:not(.e-disabled) .e-clear-icon:active,
3166
+ .e-filled.e-input-group.e-control-wrapper:not(.e-disabled) .e-clear-icon:active {
3167
+ @if $input-skin-name == 'material' {
3168
+ color: $filled-input-clear-icon-active-color;
3169
+ }
3170
+ }
3171
+
3172
+ // Filled input disabled configuration
3173
+
3174
+ .e-filled.e-float-input.e-disabled .e-clear-icon,
3175
+ .e-filled.e-float-input.e-control-wrapper.e-disabled .e-clear-icon,
3176
+ .e-input-group.e-filled.e-disabled .e-clear-icon,
3177
+ .e-input-group.e-filled.e-control-wrapper.e-disabled .e-clear-icon,
3178
+ .e-input-group.e-filled.e-disabled .e-input-group-icon,
3179
+ .e-input-group.e-filled.e-control-wrapper.e-disabled .e-input-group-icon {
3180
+ @if $input-skin-name == 'material' {
3181
+ color: $filled-input-disabled-font-color;
3182
+ }
3183
+ }
3184
+
3185
+ .e-filled.e-input#{$css}[disabled],
3186
+ .e-input-group.e-filled .e-input[disabled],
3187
+ .e-input-group.e-filled.e-control-wrapper .e-input[disabled],
3188
+ .e-input-group.e-filled.e-disabled,
3189
+ .e-input-group.e-filled.e-control-wrapper.e-disabled,
3190
+ .e-filled.e-float-input input[disabled],
3191
+ .e-filled.e-float-input.e-control-wrapper input[disabled],
3192
+ .e-filled.e-float-input textarea[disabled],
3193
+ .e-filled.e-float-input.e-control-wrapper textarea[disabled],
3194
+ .e-filled.e-float-input.e-disabled,
3195
+ .e-filled.e-float-input.e-control-wrapper.e-disabled {
3196
+ @if $input-skin-name == 'material' {
3197
+ background: $filled-input-disabled-bg-color;
3198
+ background-image: none;
3199
+ background-position: initial;
3200
+ background-repeat: no-repeat;
3201
+ background-size: $zero-value;
3202
+ border-color: $filled-input-disabled-border-color;
3203
+ color: $filled-input-disabled-font-color;
3204
+ }
3205
+ }
3206
+
3207
+ .e-filled.e-float-input.e-disabled:not(.e-success):not(.e-warning):not(.e-error),
3208
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-success):not(.e-warning):not(.e-error) {
3209
+ @if $input-skin-name == 'material' {
3210
+ border-color: $filled-input-disabled-border-color;
3211
+ }
3212
+ }
3213
+
3214
+ .e-filled.e-input-group:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
3215
+ .e-filled.e-input-group.e-float-icon-left:not(.e-success):not(.e-warning):not(.e-error).e-disabled .e-input-in-wrap,
3216
+ .e-filled.e-input-group.e-control-wrapper:not(.e-success):not(.e-warning):not(.e-error):not(.e-float-icon-left).e-disabled,
3217
+ .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 {
3218
+ @if $input-skin-name == 'material' {
3219
+ background: $filled-input-disabled-bg-color;
3220
+ background-image: none;
3221
+ background-position: initial;
3222
+ background-repeat: no-repeat;
3223
+ background-size: $zero-value;
3224
+ border-color: $filled-input-disabled-border-color;
3225
+ color: $filled-input-disabled-font-color;
3226
+ }
3227
+ }
3228
+
3229
+ .e-filled.e-float-input:not(.e-disabled) input[disabled],
3230
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) input[disabled],
3231
+ .e-filled.e-float-input:not(.e-disabled) textarea[disabled],
3232
+ .e-filled.e-float-input.e-control-wrapper:not(.e-disabled) textarea[disabled] {
3233
+ @if $input-skin-name == 'material' {
3234
+ color: $filled-input-disabled-font-color;
3235
+ }
3236
+ }
3237
+
3238
+ .e-filled.e-float-input.e-input-group.e-disabled .e-float-text,
3239
+ .e-filled.e-float-input.e-input-group.e-disabled .e-float-text.e-label-top,
3240
+ .e-filled.e-float-input input[disabled] ~ label.e-float-text,
3241
+ .e-filled.e-float-input input[disabled] ~ label.e-label-top.e-float-text,
3242
+ .e-filled.e-float-input.e-disabled label.e-float-text,
3243
+ .e-filled.e-float-input.e-disabled label.e-float-text.e-label-top,
3244
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-float-text,
3245
+ .e-filled.e-float-input:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
3246
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3247
+ .e-filled.e-float-input.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3248
+ .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
3249
+ .e-filled.e-float-input.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3250
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3251
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top {
3252
+ @if $input-skin-name == 'material' {
3253
+ color: $filled-input-disabled-font-color;
3254
+ }
3255
+ }
3256
+
3257
+ .e-filled.e-float-input textarea[disabled] ~ label.e-float-text,
3258
+ .e-filled.e-float-input textarea[disabled] ~ label.e-label-top.e-float-text,
3259
+ .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-float-text,
3260
+ .e-filled.e-float-input:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
3261
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3262
+ .e-filled.e-float-input.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3263
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
3264
+ .e-filled.e-float-input.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3265
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3266
+ .e-filled.e-float-input.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top {
3267
+ @if $input-skin-name == 'material' {
3268
+ color: $filled-input-disabled-font-color;
3269
+ }
3270
+ }
3271
+
3272
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text,
3273
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-disabled .e-float-text.e-label-top,
3274
+ .e-filled.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-float-text,
3275
+ .e-filled.e-float-input.e-control-wrapper.e-disabled input[disabled] ~ label.e-label-top.e-float-text,
3276
+ .e-filled.e-float-input.e-control-wrapper input[disabled] ~ label.e-float-text,
3277
+ .e-filled.e-float-input.e-control-wrapper input[disabled] ~ label.e-label-top.e-float-text,
3278
+ .e-filled.e-float-input.e-control-wrapper.e-disabled label.e-float-text,
3279
+ .e-filled.e-float-input.e-control-wrapper.e-disabled label.e-float-text.e-label-top,
3280
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-float-text,
3281
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
3282
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3283
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3284
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
3285
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3286
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3287
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3288
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-float-text,
3289
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) input[disabled] ~ label.e-label-top.e-float-text,
3290
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3291
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3292
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text,
3293
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) input[disabled] ~ label.e-float-text.e-label-top,
3294
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) input[disabled] ~ label.e-float-text,
3295
+ .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 {
3296
+ @if $input-skin-name == 'material' {
3297
+ color: $filled-input-disabled-font-color;
3298
+ }
3299
+ }
3300
+
3301
+ .e-filled.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-float-text,
3302
+ .e-filled.e-float-input.e-control-wrapper.e-disabled textarea[disabled] ~ label.e-label-top.e-float-text,
3303
+ .e-filled.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-float-text,
3304
+ .e-filled.e-float-input.e-control-wrapper textarea[disabled] ~ label.e-label-top.e-float-text,
3305
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-float-text,
3306
+ .e-filled.e-float-input.e-control-wrapper:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
3307
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3308
+ .e-filled.e-float-input.e-control-wrapper.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3309
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
3310
+ .e-filled.e-float-input.e-control-wrapper.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3311
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3312
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3313
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-float-text,
3314
+ .e-filled.e-float-input.e-control-wrapper.e-disabled:not(.e-error) textarea[disabled] ~ label.e-label-top.e-float-text,
3315
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3316
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3317
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text,
3318
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small:not(.e-error) textarea[disabled] ~ label.e-float-text.e-label-top,
3319
+ .e-filled.e-float-input.e-control-wrapper.e-disabled.e-small.e-bigger:not(.e-error) textarea[disabled] ~ label.e-float-text,
3320
+ .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 {
3321
+ @if $input-skin-name == 'material' {
3322
+ color: $filled-input-disabled-font-color;
3323
+ }
3324
+ }
3325
+
3326
+ // sass-lint:disable no-vendor-prefixes
3327
+ input.e-filled.e-disabled.e-input#{$css}:-moz-placeholder {
3328
+ @if $input-skin-name == 'material' {
3329
+ color: $filled-input-disabled-font-color;
3330
+ }
3331
+ }
3332
+
3333
+ // sass-lint:disable no-vendor-prefixes
3334
+ .e-input-group.e-filled.e-disabled input.e-input:-moz-placeholder {
3335
+ @if $input-skin-name == 'material' {
3336
+ color: $filled-input-disabled-font-color;
3337
+ }
3338
+ }
3339
+
3340
+ // sass-lint:disable no-vendor-prefixes
3341
+ .e-input-group.e-filled.e-disabled input.e-input:-moz-placeholder,
3342
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input:-moz-placeholder {
3343
+ @if $input-skin-name == 'material' {
3344
+ color: $filled-input-disabled-font-color;
3345
+ }
3346
+ }
3347
+
3348
+ // sass-lint:disable no-vendor-prefixes
3349
+ input.e-filled.e-disabled.e-input#{$css}:-moz-placeholder {
3350
+ @if $input-skin-name == 'material' {
3351
+ color: $filled-input-disabled-font-color;
3352
+ }
3353
+ }
3354
+
3355
+ // sass-lint:disable no-vendor-prefixes
3356
+ .e-input-group.e-filled.e-disabled input.e-input:-moz-placeholder {
3357
+ @if $input-skin-name == 'material' {
3358
+ color: $filled-input-disabled-font-color;
3359
+ }
3360
+ }
3361
+
3362
+ // sass-lint:disable no-vendor-prefixes
3363
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input:-moz-placeholder {
3364
+ @if $input-skin-name == 'material' {
3365
+ color: $filled-input-disabled-font-color;
3366
+ }
3367
+ }
3368
+
3369
+ // sass-lint:disable no-vendor-prefixes
3370
+ textarea.e-filled.e-disabled.e-input#{$css}:-moz-placeholder {
3371
+ @if $input-skin-name == 'material' {
3372
+ color: $filled-input-disabled-font-color;
3373
+ }
3374
+ }
3375
+
3376
+ // sass-lint:disable no-vendor-prefixes
3377
+ .e-input-group.e-filled.e-disabled textarea.e-input:-moz-placeholder {
3378
+ @if $input-skin-name == 'material' {
3379
+ color: $filled-input-disabled-font-color;
3380
+ }
3381
+ }
3382
+
3383
+ // sass-lint:disable no-vendor-prefixes
3384
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input:-moz-placeholder {
3385
+ @if $input-skin-name == 'material' {
3386
+ color: $filled-input-disabled-font-color;
3387
+ }
3388
+ }
3389
+
3390
+ // sass-lint:disable no-vendor-prefixes
3391
+ input.e-filled.e-disabled.e-input#{$css}::-moz-placeholder {
3392
+ @if $input-skin-name == 'material' {
3393
+ color: $filled-input-disabled-font-color;
3394
+ }
3395
+ }
3396
+
3397
+ // sass-lint:disable no-vendor-prefixes
3398
+ .e-input-group.e-filled.e-disabled input.e-input::-moz-placeholder {
3399
+ @if $input-skin-name == 'material' {
3400
+ color: $filled-input-disabled-font-color;
3401
+ }
3402
+ }
3403
+
3404
+ // sass-lint:disable no-vendor-prefixes
3405
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input::-moz-placeholder {
3406
+ @if $input-skin-name == 'material' {
3407
+ color: $filled-input-disabled-font-color;
3408
+ }
3409
+ }
3410
+
3411
+ // sass-lint:disable no-vendor-prefixes
3412
+ textarea.e-filled.e-disabled.e-input#{$css}::-moz-placeholder {
3413
+ @if $input-skin-name == 'material' {
3414
+ color: $filled-input-disabled-font-color;
3415
+ }
3416
+ }
3417
+
3418
+ // sass-lint:disable no-vendor-prefixes
3419
+ .e-input-group.e-filled.e-disabled textarea.e-input::-moz-placeholder {
3420
+ @if $input-skin-name == 'material' {
3421
+ color: $filled-input-disabled-font-color;
3422
+ }
3423
+ }
3424
+
3425
+ // sass-lint:disable no-vendor-prefixes
3426
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input::-moz-placeholder {
3427
+ @if $input-skin-name == 'material' {
3428
+ color: $filled-input-disabled-font-color;
3429
+ }
3430
+ }
3431
+
3432
+ // sass-lint:disable no-vendor-prefixes
3433
+ input.e-filled.e-disabled.e-input#{$css}:-ms-input-placeholder {
3434
+ @if $input-skin-name == 'material' {
3435
+ color: $filled-input-disabled-font-color;
3436
+ }
3437
+ }
3438
+
3439
+ // sass-lint:disable no-vendor-prefixes
3440
+ .e-input-group.e-filled.e-disabled input.e-input:-ms-input-placeholder {
3441
+ @if $input-skin-name == 'material' {
3442
+ color: $filled-input-disabled-font-color;
3443
+ }
3444
+ }
3445
+
3446
+ // sass-lint:disable no-vendor-prefixes
3447
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input:-ms-input-placeholder {
3448
+ @if $input-skin-name == 'material' {
3449
+ color: $filled-input-disabled-font-color;
3450
+ }
3451
+ }
3452
+
3453
+ // sass-lint:disable no-vendor-prefixes
3454
+ textarea.e-filled.e-disabled.e-input#{$css}:-ms-input-placeholder {
3455
+ @if $input-skin-name == 'material' {
3456
+ color: $filled-input-disabled-font-color;
3457
+ }
3458
+ }
3459
+
3460
+ // sass-lint:disable no-vendor-prefixes
3461
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input:-ms-input-placeholder {
3462
+ @if $input-skin-name == 'material' {
3463
+ color: $filled-input-disabled-font-color;
3464
+ }
3465
+ }
3466
+
3467
+ // sass-lint:disable no-vendor-prefixes
3468
+ .e-input-group.e-filled.e-disabled textarea.e-input:-ms-input-placeholder {
3469
+ @if $input-skin-name == 'material' {
3470
+ color: $filled-input-disabled-font-color;
3471
+ }
3472
+ }
3473
+
3474
+ // sass-lint:disable no-vendor-prefixes
3475
+ input.e-filled.e-disabled.e-input#{$css}::-webkit-input-placeholder {
3476
+ @if $input-skin-name == 'material' {
3477
+ color: $filled-input-disabled-font-color;
3478
+ }
3479
+ }
3480
+
3481
+ // sass-lint:disable no-vendor-prefixes
3482
+ .e-input-group.e-filled.e-disabled.e-control-wrapper input.e-input::-webkit-input-placeholder {
3483
+ @if $input-skin-name == 'material' {
3484
+ color: $filled-input-disabled-font-color;
3485
+ }
3486
+ }
3487
+
3488
+ // sass-lint:disable no-vendor-prefixes
3489
+ .e-input-group.e-filled.e-disabled input.e-input::-webkit-input-placeholder {
3490
+ @if $input-skin-name == 'material' {
3491
+ color: $filled-input-disabled-font-color;
3492
+ }
3493
+ }
3494
+
3495
+ // sass-lint:disable no-vendor-prefixes
3496
+ textarea.e-filled.e-disabled.e-input#{$css}::-webkit-input-placeholder {
3497
+ @if $input-skin-name == 'material' {
3498
+ color: $filled-input-disabled-font-color;
3499
+ }
3500
+ }
3501
+
3502
+ // sass-lint:disable no-vendor-prefixes
3503
+ .e-input-group.e-filled.e-disabled textarea.e-input::-webkit-input-placeholder {
3504
+ @if $input-skin-name == 'material' {
3505
+ color: $filled-input-disabled-font-color;
3506
+ }
3507
+ }
3508
+
3509
+ // sass-lint:disable no-vendor-prefixes
3510
+ .e-input-group.e-filled.e-disabled.e-control-wrapper textarea.e-input::-webkit-input-placeholder {
3511
+ @if $input-skin-name == 'material' {
3512
+ color: $filled-input-disabled-font-color;
3513
+ }
3514
+ }
3515
+
3516
+ // Filled input ripple action
3517
+
3518
+ .e-filled.e-input-group.e-float-icon-left:not(.e-float-input)::before,
3519
+ .e-filled.e-input-group.e-float-icon-left:not(.e-float-input)::after,
3520
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::before,
3521
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left:not(.e-float-input)::after {
3522
+ @if $input-skin-name == 'material' {
3523
+ @include input-group-animation-bg;
3524
+ }
3525
+ }
3526
+
3527
+ .e-filled.e-float-input.e-input-group.e-float-icon-left .e-float-line::before,
3528
+ .e-filled.e-float-input.e-input-group.e-float-icon-left .e-float-line::after,
3529
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::before,
3530
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left .e-float-line::after {
3531
+ @if $input-skin-name == 'material' {
3532
+ @include input-group-animation-bg;
3533
+ }
3534
+ }
3535
+
3536
+ .e-filled.e-input-group.e-float-icon-left.e-success:not(.e-float-input)::before,
3537
+ .e-filled.e-input-group.e-float-icon-left.e-success:not(.e-float-input)::after,
3538
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input)::before,
3539
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-success:not(.e-float-input)::after {
3540
+ @if $input-skin-name == 'material' {
3541
+ @include input-group-success-animation-bg;
3542
+ }
3543
+ }
3544
+
3545
+
3546
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-success .e-float-line::before,
3547
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-success .e-float-line::after,
3548
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-float-line::before,
3549
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-success .e-float-line::after,
3550
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-float-line::before,
3551
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-success .e-float-line::after {
3552
+ @if $input-skin-name == 'material' {
3553
+ @include input-group-success-animation-bg;
3554
+ }
3555
+ }
3556
+
3557
+ .e-filled.e-input-group.e-float-icon-left.e-warning:not(.e-float-input)::before,
3558
+ .e-filled.e-input-group.e-float-icon-left.e-warning:not(.e-float-input)::after,
3559
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input)::before,
3560
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-warning:not(.e-float-input)::after,
3561
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-float-line::before,
3562
+ .e-filled.e-float-input.e-control-wrapper.e-input-group.e-float-icon-left.e-warning .e-float-line::after {
3563
+ @if $input-skin-name == 'material' {
3564
+ @include input-group-warning-animation-bg;
3565
+ }
3566
+ }
3567
+
3568
+ .e-filled.e-input-group.e-float-icon-left.e-error:not(.e-float-input)::before,
3569
+ .e-filled.e-input-group.e-float-icon-left.e-error:not(.e-float-input)::after,
3570
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input)::before,
3571
+ .e-filled.e-input-group.e-control-wrapper.e-float-icon-left.e-error:not(.e-float-input)::after {
3572
+ @if $input-skin-name == 'material' {
3573
+ @include input-group-error-animation-bg;
3574
+ }
3575
+ }
3576
+
3577
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-error .e-float-line::before,
3578
+ .e-filled.e-float-input.e-input-group.e-float-icon-left.e-error .e-float-line::after,
3579
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-float-line::before,
3580
+ .e-filled.e-float-input.e-input-group.e-control-wrapper.e-float-icon-left.e-error .e-float-line::after {
3581
+ @if $input-skin-name == 'material' {
3582
+ @include input-group-error-animation-bg;
3583
+ }
3584
+ }
3585
+
3586
+ .e-filled.e-input-group:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left,
3587
+ .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,
3588
+ .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,
3589
+ .e-filled.e-float-input:hover:not(.e-success):not(.e-warning):not(.e-error):not(.e-disabled).e-float-icon-left {
3590
+ @if $input-skin-name == 'material' {
3591
+ border-color: $filled-input-hover-border-color;
3592
+ }
3593
+ }
3594
+
3595
+ .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,
3596
+ .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,
3597
+ .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,
3598
+ .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 {
3599
+ @if $input-skin-name == 'material' {
3600
+ border-color: $filled-input-hover-border-color;
3601
+ }
3602
+ }
3603
+
3604
+ .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,
3605
+ .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,
3606
+ .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,
3607
+ .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 {
3608
+ @if $input-skin-name == 'material' {
3609
+ border-color: $filled-input-hover-border-color;
3610
+ }
3611
+ }
3612
+
3613
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3614
+ .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3615
+ .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3616
+ .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3617
+ .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3618
+ .e-filled.e-float-input.e-success input label.e-float-text.e-label-top,
3619
+ .e-filled.e-float-input.e-bigger.e-success input:focus ~ label.e-float-text,
3620
+ .e-filled.e-float-input.e-bigger.e-success input:valid ~ label.e-float-text,
3621
+ .e-filled.e-float-input.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3622
+ .e-filled.e-float-input.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3623
+ .e-filled.e-float-input.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3624
+ .e-bigger .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3625
+ .e-bigger .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3626
+ .e-bigger .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3627
+ .e-bigger .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3628
+ .e-bigger .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3629
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3630
+ .e-filled.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3631
+ .e-bigger .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text {
3632
+ @if $input-skin-name == 'material' {
3633
+ color: $input-success-color;
3634
+ }
3635
+ }
3636
+
3637
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3638
+ .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3639
+ .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3640
+ .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3641
+ .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3642
+ .e-filled.e-float-input.e-warning input label.e-float-text.e-label-top,
3643
+ .e-filled.e-float-input.e-bigger.e-warning input:focus ~ label.e-float-text,
3644
+ .e-filled.e-float-input.e-bigger.e-warning input:valid ~ label.e-float-text,
3645
+ .e-filled.e-float-input.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
3646
+ .e-filled.e-float-input.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3647
+ .e-filled.e-float-input.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3648
+ .e-bigger .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3649
+ .e-bigger .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3650
+ .e-bigger .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3651
+ .e-bigger .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3652
+ .e-bigger .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3653
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
3654
+ .e-filled.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
3655
+ .e-bigger .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text {
3656
+ @if $input-skin-name == 'material' {
3657
+ color: $input-warning-color;
3658
+ }
3659
+ }
3660
+
3661
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3662
+ .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3663
+ .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3664
+ .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3665
+ .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3666
+ .e-filled.e-float-input.e-success input label.e-float-text.e-label-top,
3667
+ .e-filled.e-float-input.e-bigger.e-success input:focus ~ label.e-float-text,
3668
+ .e-filled.e-float-input.e-bigger.e-success input:valid ~ label.e-float-text,
3669
+ .e-filled.e-float-input.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3670
+ .e-filled.e-float-input.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3671
+ .e-filled.e-float-input.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3672
+ .e-bigger .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3673
+ .e-bigger .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3674
+ .e-bigger .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3675
+ .e-bigger .e-filled.e-float-input.e-success input[readonly] ~ label.e-label-top.e-float-text,
3676
+ .e-bigger .e-filled.e-float-input.e-success input[disabled] ~ label.e-label-top.e-float-text,
3677
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3678
+ .e-filled.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3679
+ .e-bigger .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text {
3680
+ @if $input-skin-name == 'material' {
3681
+ color: $input-success-color;
3682
+ }
3683
+ }
3684
+
3685
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3686
+ .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3687
+ .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3688
+ .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3689
+ .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3690
+ .e-filled.e-float-input.e-warning input label.e-float-text.e-label-top,
3691
+ .e-filled.e-float-input.e-bigger.e-warning input:focus ~ label.e-float-text,
3692
+ .e-filled.e-float-input.e-bigger.e-warning input:valid ~ label.e-float-text,
3693
+ .e-filled.e-float-input.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
3694
+ .e-filled.e-float-input.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3695
+ .e-filled.e-float-input.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3696
+ .e-bigger .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
3697
+ .e-bigger .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
3698
+ .e-bigger .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
3699
+ .e-bigger .e-filled.e-float-input.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3700
+ .e-bigger .e-filled.e-float-input.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3701
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
3702
+ .e-filled.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
3703
+ .e-bigger .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text {
3704
+ @if $input-skin-name == 'material' {
3705
+ color: $input-warning-color;
3706
+ }
3707
+ }
3708
+
3709
+ .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3710
+ .e-filled.e-float-input.e-control-wrapper.e-success input:valid ~ label.e-float-text,
3711
+ .e-filled.e-float-input.e-control-wrapper.e-success input ~ label.e-label-top.e-float-text,
3712
+ .e-filled.e-float-input.e-control-wrapper.e-success input[readonly] ~ label.e-label-top.e-float-text,
3713
+ .e-filled.e-float-input.e-control-wrapper.e-success input[disabled] ~ label.e-label-top.e-float-text,
3714
+ .e-filled.e-float-input .e-control-wrapper.e-success input label.e-float-text.e-label-top,
3715
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input:focus ~ label.e-float-text,
3716
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input:valid ~ label.e-float-text,
3717
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3718
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3719
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3720
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3721
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input:valid ~ label.e-float-text,
3722
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input ~ label.e-label-top.e-float-text,
3723
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input[readonly] ~ label.e-label-top.e-float-text,
3724
+ .e-bigger .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.e-input-focus input ~ label.e-float-text,
3726
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3727
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text {
3728
+ @if $input-skin-name == 'material' {
3729
+ color: $input-success-color;
3730
+ }
3731
+ }
3732
+
3733
+ .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3734
+ .e-filled.e-float-input.e-small.e-success input:valid ~ label.e-float-text,
3735
+ .e-filled.e-float-input.e-small.e-success input ~ label.e-label-top.e-float-text,
3736
+ .e-filled.e-float-input.e-small.e-success input[readonly] ~ label.e-float-text,
3737
+ .e-filled.e-float-input.e-small.e-success input[disabled] ~ label.e-float-text,
3738
+ .e-small .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3739
+ .e-small .e-filled.e-float-input.e-success input:valid ~ label.e-float-text,
3740
+ .e-small .e-filled.e-float-input.e-success input ~ label.e-label-top.e-float-text,
3741
+ .e-small .e-filled.e-float-input.e-success input[readonly] ~ label.e-float-text.e-label-top,
3742
+ .e-small .e-filled.e-float-input.e-success input[disabled] ~ label.e-float-text.e-label-top,
3743
+ .e-filled.e-float-input.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3744
+ .e-filled.e-float-input.e-small.e-bigger.e-success input:valid ~ label.e-float-text,
3745
+ .e-filled.e-float-input.e-small.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3746
+ .e-filled.e-float-input.e-small.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3747
+ .e-filled.e-float-input.e-small.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3748
+ .e-bigger .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3749
+ .e-bigger .e-filled.e-float-input.e-small.e-success input:valid ~ label.e-float-text,
3750
+ .e-bigger .e-filled.e-float-input.e-small.e-success input ~ label.e-label-top.e-float-text,
3751
+ .e-bigger .e-filled.e-float-input.e-small.e-success input[readonly] ~ label.e-label-top.e-float-text,
3752
+ .e-bigger .e-filled.e-float-input.e-small.e-success input[disabled] ~ label.e-label-top.e-float-text,
3753
+ .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
3754
+ .e-small .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3755
+ .e-filled.e-float-input.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3756
+ .e-bigger .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text {
3757
+ @if $input-skin-name == 'material' {
3758
+ color: $input-success-color;
3759
+ }
3760
+ }
3761
+
3762
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3763
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:valid ~ label.e-float-text,
3764
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input ~ label.e-label-top.e-float-text,
3765
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[readonly] ~ label.e-float-text,
3766
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[disabled] ~ label.e-float-text,
3767
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3768
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input:valid ~ label.e-float-text,
3769
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input ~ label.e-label-top.e-float-text,
3770
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input[readonly] ~ label.e-float-text.e-label-top,
3771
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input[disabled] ~ label.e-float-text.e-label-top,
3772
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3773
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:valid ~ label.e-float-text,
3774
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input ~ label.e-label-top.e-float-text,
3775
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input[readonly] ~ label.e-label-top.e-float-text,
3776
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input[disabled] ~ label.e-label-top.e-float-text,
3777
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3778
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:valid ~ label.e-float-text,
3779
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input ~ label.e-label-top.e-float-text,
3780
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[readonly] ~ label.e-label-top.e-float-text,
3781
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input[disabled] ~ label.e-label-top.e-float-text,
3782
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text,
3783
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3784
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3785
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text {
3786
+ @if $input-skin-name == 'material' {
3787
+ color: $input-success-color;
3788
+ }
3789
+ }
3790
+
3791
+ .e-filled.e-float-input.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3792
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3793
+ .e-filled.e-float-input.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3794
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3795
+ .e-bigger .e-filled.e-float-input.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3796
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3797
+ .e-filled.e-float-input.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3798
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3799
+ .e-small .e-filled.e-float-input.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3800
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3801
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3802
+ .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,
3803
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
3804
+ .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 {
3805
+ @if $input-skin-name == 'material' {
3806
+ color: $input-success-color;
3807
+ }
3808
+ }
3809
+
3810
+ .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3811
+ .e-filled.e-float-input.e-success textarea:valid ~ label.e-float-text,
3812
+ .e-filled.e-float-input.e-success textarea ~ label.e-label-top.e-float-text,
3813
+ .e-filled.e-float-input.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3814
+ .e-filled.e-float-input.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3815
+ .e-filled.e-float-input.e-success textarea label.e-float-text.e-label-top,
3816
+ .e-filled.e-float-input.e-bigger.e-success textarea:focus ~ label.e-float-text,
3817
+ .e-filled.e-float-input.e-bigger.e-success textarea:valid ~ label.e-float-text,
3818
+ .e-filled.e-float-input.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3819
+ .e-filled.e-float-input.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3820
+ .e-filled.e-float-input.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3821
+ .e-bigger .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3822
+ .e-bigger .e-filled.e-float-input.e-success textarea:valid ~ label.e-float-text,
3823
+ .e-bigger .e-filled.e-float-input.e-success textarea ~ label.e-label-top.e-float-text,
3824
+ .e-bigger .e-filled.e-float-input.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3825
+ .e-bigger .e-filled.e-float-input.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3826
+ @if $input-skin-name == 'material' {
3827
+ color: $input-success-color;
3828
+ }
3829
+ }
3830
+
3831
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3832
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:valid ~ label.e-float-text,
3833
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea ~ label.e-label-top.e-float-text,
3834
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3835
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3836
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea label.e-float-text.e-label-top,
3837
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:focus ~ label.e-float-text,
3838
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:valid ~ label.e-float-text,
3839
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3840
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3841
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3842
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3843
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:valid ~ label.e-float-text,
3844
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea ~ label.e-label-top.e-float-text,
3845
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3846
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3847
+ @if $input-skin-name == 'material' {
3848
+ color: $input-success-color;
3849
+ }
3850
+ }
3851
+
3852
+ .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3853
+ .e-filled.e-float-input.e-small.e-success textarea:valid ~ label.e-float-text,
3854
+ .e-filled.e-float-input.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3855
+ .e-filled.e-float-input.e-small.e-success textarea[readonly] ~ label.e-float-text,
3856
+ .e-filled.e-float-input.e-small.e-success textarea[disabled] ~ label.e-float-text,
3857
+ .e-small .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3858
+ .e-small .e-filled.e-float-input.e-success textarea:valid ~ label.e-float-text,
3859
+ .e-small .e-filled.e-float-input.e-success textarea ~ label.e-label-top.e-float-text,
3860
+ .e-small .e-filled.e-float-input.e-success textarea[readonly] ~ label.e-float-text.e-label-top,
3861
+ .e-small .e-filled.e-float-input.e-success textarea[disabled] ~ label.e-float-text.e-label-top,
3862
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3863
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:valid ~ label.e-float-text,
3864
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3865
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3866
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3867
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3868
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:valid ~ label.e-float-text,
3869
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3870
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3871
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3872
+ @if $input-skin-name == 'material' {
3873
+ color: $input-success-color;
3874
+ }
3875
+ }
3876
+
3877
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3878
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:valid ~ label.e-float-text,
3879
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3880
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[readonly] ~ label.e-float-text,
3881
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[disabled] ~ label.e-float-text,
3882
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3883
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:valid ~ label.e-float-text,
3884
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea ~ label.e-label-top.e-float-text,
3885
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea[readonly] ~ label.e-float-text.e-label-top,
3886
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea[disabled] ~ label.e-float-text.e-label-top,
3887
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3888
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:valid ~ label.e-float-text,
3889
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea ~ label.e-label-top.e-float-text,
3890
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3891
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea[disabled] ~ label.e-label-top.e-float-text,
3892
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3893
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:valid ~ label.e-float-text,
3894
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea ~ label.e-label-top.e-float-text,
3895
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[readonly] ~ label.e-label-top.e-float-text,
3896
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea[disabled] ~ label.e-label-top.e-float-text {
3897
+ @if $input-skin-name == 'material' {
3898
+ color: $input-success-color;
3899
+ }
3900
+ }
3901
+
3902
+ .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3903
+ .e-filled.e-float-input.e-bigger.e-success input:focus ~ label.e-float-text,
3904
+ .e-bigger .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3905
+ .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3906
+ .e-small .e-filled.e-float-input.e-success input:focus ~ label.e-float-text,
3907
+ .e-filled.e-float-input.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3908
+ .e-bigger .e-filled.e-float-input.e-small.e-success input:focus ~ label.e-float-text,
3909
+ .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3910
+ .e-filled.e-float-input.e-bigger.e-success textarea:focus ~ label.e-float-text,
3911
+ .e-bigger .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3912
+ .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3913
+ .e-small .e-filled.e-float-input.e-success textarea:focus ~ label.e-float-text,
3914
+ .e-filled.e-float-input.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3915
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:focus ~ label.e-float-text,
3916
+ .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3917
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success input:focus ~ label.e-float-text,
3918
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3919
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3920
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success input:focus ~ label.e-float-text,
3921
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success input:focus ~ label.e-float-text,
3922
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success input:focus ~ label.e-float-text,
3923
+ .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3924
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success textarea:focus ~ label.e-float-text,
3925
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3926
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3927
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success textarea:focus ~ label.e-float-text,
3928
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success textarea:focus ~ label.e-float-text,
3929
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success textarea:focus ~ label.e-float-text,
3930
+ .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3931
+ .e-filled.e-float-input.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3932
+ .e-bigger .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3933
+ .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
3934
+ .e-small .e-filled.e-float-input.e-success.e-input-focus input ~ label.e-float-text,
3935
+ .e-filled.e-float-input.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3936
+ .e-bigger .e-filled.e-float-input.e-small.e-success.e-input-focus input ~ label.e-float-text,
3937
+ .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3938
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3939
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3940
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text,
3941
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-success.e-input-focus input ~ label.e-float-text,
3942
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-success.e-input-focus input ~ label.e-float-text,
3943
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-success.e-input-focus input ~ label.e-float-text {
3944
+ @if $input-skin-name == 'material' {
3945
+ color: $input-success-color;
3946
+ }
3947
+ }
3948
+
3949
+ .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
3950
+ .e-bigger .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
3951
+ .e-bigger.e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
3952
+ .e-small .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
3953
+ .e-small.e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
3954
+ .e-bigger .e-filled.e-float-input.e-small.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
3955
+ .e-bigger.e-small .e-filled.e-float-input.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
3956
+ .e-filled.e-float-input.e-bigger.e-small.e-success:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
3957
+ .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,
3958
+ .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,
3959
+ .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,
3960
+ .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,
3961
+ .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,
3962
+ .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,
3963
+ .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,
3964
+ .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 {
3965
+ @if $input-skin-name == 'material' {
3966
+ color: $input-success-color;
3967
+ }
3968
+ }
3969
+
3970
+ .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3971
+ .e-bigger .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3972
+ .e-bigger.e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3973
+ .e-small .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3974
+ .e-small.e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3975
+ .e-bigger .e-filled.e-float-input.e-small.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3976
+ .e-bigger.e-small .e-filled.e-float-input.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3977
+ .e-filled.e-float-input.e-bigger.e-small.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3978
+ .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3979
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3980
+ .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3981
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3982
+ .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text,
3983
+ .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,
3984
+ .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,
3985
+ .e-filled.e-bigger.e-small.e-control-wrapper.e-autofill.e-success textarea:not(:focus):-webkit-autofill~label.e-float-text {
3986
+ @if $input-skin-name == 'material' {
3987
+ color: $input-success-color;
3988
+ }
3989
+ }
3990
+
3991
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
3992
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:valid ~ label.e-float-text,
3993
+ .e-filled.e-float-input.e-control-wrapper.e-warning input ~ label.e-label-top.e-float-text,
3994
+ .e-filled.e-float-input.e-control-wrapper.e-warning input[readonly] ~ label.e-label-top.e-float-text,
3995
+ .e-filled.e-float-input.e-control-wrapper.e-warning input[disabled] ~ label.e-label-top.e-float-text,
3996
+ .e-filled.e-float-input .e-control-wrapper.e-warning input label.e-float-text.e-label-top,
3997
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input:focus ~ label.e-float-text,
3998
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input:valid ~ label.e-float-text,
3999
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
4000
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4001
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4002
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4003
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input:valid ~ label.e-float-text,
4004
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input ~ label.e-label-top.e-float-text,
4005
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4006
+ .e-bigger .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.e-input-focus input ~ label.e-float-text,
4008
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4009
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text {
4010
+ @if $input-skin-name == 'material' {
4011
+ color: $input-warning-color;
4012
+ }
4013
+ }
4014
+
4015
+ .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4016
+ .e-filled.e-float-input.e-small.e-warning input:valid ~ label.e-float-text,
4017
+ .e-filled.e-float-input.e-small.e-warning input ~ label.e-label-top.e-float-text,
4018
+ .e-filled.e-float-input.e-small.e-warning input[readonly] ~ label.e-float-text,
4019
+ .e-filled.e-float-input.e-small.e-warning input[disabled] ~ label.e-float-text,
4020
+ .e-small .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4021
+ .e-small .e-filled.e-float-input.e-warning input:valid ~ label.e-float-text,
4022
+ .e-small .e-filled.e-float-input.e-warning input ~ label.e-label-top.e-float-text,
4023
+ .e-small .e-filled.e-float-input.e-warning input[readonly] ~ label.e-float-text.e-label-top,
4024
+ .e-small .e-filled.e-float-input.e-warning input[disabled] ~ label.e-float-text.e-label-top,
4025
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4026
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input:valid ~ label.e-float-text,
4027
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
4028
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4029
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4030
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4031
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input:valid ~ label.e-float-text,
4032
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input ~ label.e-label-top.e-float-text,
4033
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4034
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4035
+ .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4036
+ .e-small .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4037
+ .e-filled.e-float-input.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4038
+ .e-bigger .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text {
4039
+ @if $input-skin-name == 'material' {
4040
+ color: $input-warning-color;
4041
+ }
4042
+ }
4043
+
4044
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4045
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:valid ~ label.e-float-text,
4046
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input ~ label.e-label-top.e-float-text,
4047
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[readonly] ~ label.e-float-text,
4048
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[disabled] ~ label.e-float-text,
4049
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4050
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input:valid ~ label.e-float-text,
4051
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input ~ label.e-label-top.e-float-text,
4052
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input[readonly] ~ label.e-float-text.e-label-top,
4053
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input[disabled] ~ label.e-float-text.e-label-top,
4054
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4055
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:valid ~ label.e-float-text,
4056
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input ~ label.e-label-top.e-float-text,
4057
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4058
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4059
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4060
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:valid ~ label.e-float-text,
4061
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input ~ label.e-label-top.e-float-text,
4062
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[readonly] ~ label.e-label-top.e-float-text,
4063
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input[disabled] ~ label.e-label-top.e-float-text,
4064
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4065
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4066
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4067
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text {
4068
+ @if $input-skin-name == 'material' {
4069
+ color: $input-warning-color;
4070
+ }
4071
+ }
4072
+
4073
+ .e-filled.e-float-input.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4074
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4075
+ .e-filled.e-float-input.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4076
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4077
+ .e-bigger .e-filled.e-float-input.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4078
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4079
+ .e-filled.e-float-input.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4080
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4081
+ .e-small .e-filled.e-float-input.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4082
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4083
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4084
+ .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,
4085
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:not(:focus):valid ~ label.e-float-text.e-label-bottom,
4086
+ .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 {
4087
+ @if $input-skin-name == 'material' {
4088
+ color: $input-warning-color;
4089
+ }
4090
+ }
4091
+
4092
+ .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4093
+ .e-filled.e-float-input.e-warning textarea:valid ~ label.e-float-text,
4094
+ .e-filled.e-float-input.e-warning textarea ~ label.e-label-top.e-float-text,
4095
+ .e-filled.e-float-input.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4096
+ .e-filled.e-float-input.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4097
+ .e-filled.e-float-input.e-warning textarea label.e-float-text.e-label-top,
4098
+ .e-filled.e-float-input.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4099
+ .e-filled.e-float-input.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4100
+ .e-filled.e-float-input.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4101
+ .e-filled.e-float-input.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4102
+ .e-filled.e-float-input.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4103
+ .e-bigger .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4104
+ .e-bigger .e-filled.e-float-input.e-warning textarea:valid ~ label.e-float-text,
4105
+ .e-bigger .e-filled.e-float-input.e-warning textarea ~ label.e-label-top.e-float-text,
4106
+ .e-bigger .e-filled.e-float-input.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4107
+ .e-bigger .e-filled.e-float-input.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4108
+ @if $input-skin-name == 'material' {
4109
+ color: $input-warning-color;
4110
+ }
4111
+ }
4112
+
4113
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4114
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:valid ~ label.e-float-text,
4115
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea ~ label.e-label-top.e-float-text,
4116
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4117
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4118
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea label.e-float-text.e-label-top,
4119
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4120
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4121
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4122
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4123
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4124
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4125
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:valid ~ label.e-float-text,
4126
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea ~ label.e-label-top.e-float-text,
4127
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4128
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4129
+ @if $input-skin-name == 'material' {
4130
+ color: $input-warning-color;
4131
+ }
4132
+ }
4133
+
4134
+ .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4135
+ .e-filled.e-float-input.e-small.e-warning textarea:valid ~ label.e-float-text,
4136
+ .e-filled.e-float-input.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4137
+ .e-filled.e-float-input.e-small.e-warning textarea[readonly] ~ label.e-float-text,
4138
+ .e-filled.e-float-input.e-small.e-warning textarea[disabled] ~ label.e-float-text,
4139
+ .e-small .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4140
+ .e-small .e-filled.e-float-input.e-warning textarea:valid ~ label.e-float-text,
4141
+ .e-small .e-filled.e-float-input.e-warning textarea ~ label.e-label-top.e-float-text,
4142
+ .e-small .e-filled.e-float-input.e-warning textarea[readonly] ~ label.e-float-text.e-label-top,
4143
+ .e-small .e-filled.e-float-input.e-warning textarea[disabled] ~ label.e-float-text.e-label-top,
4144
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4145
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4146
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4147
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4148
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4149
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4150
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:valid ~ label.e-float-text,
4151
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4152
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4153
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4154
+ @if $input-skin-name == 'material' {
4155
+ color: $input-warning-color;
4156
+ }
4157
+ }
4158
+
4159
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4160
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:valid ~ label.e-float-text,
4161
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4162
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[readonly] ~ label.e-float-text,
4163
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[disabled] ~ label.e-float-text,
4164
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4165
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:valid ~ label.e-float-text,
4166
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea ~ label.e-label-top.e-float-text,
4167
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea[readonly] ~ label.e-float-text.e-label-top,
4168
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea[disabled] ~ label.e-float-text.e-label-top,
4169
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4170
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:valid ~ label.e-float-text,
4171
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea ~ label.e-label-top.e-float-text,
4172
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4173
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea[disabled] ~ label.e-label-top.e-float-text,
4174
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4175
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:valid ~ label.e-float-text,
4176
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea ~ label.e-label-top.e-float-text,
4177
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[readonly] ~ label.e-label-top.e-float-text,
4178
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea[disabled] ~ label.e-label-top.e-float-text {
4179
+ @if $input-skin-name == 'material' {
4180
+ color: $input-warning-color;
4181
+ }
4182
+ }
4183
+
4184
+ .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4185
+ .e-filled.e-float-input.e-bigger.e-warning input:focus ~ label.e-float-text,
4186
+ .e-bigger .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4187
+ .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4188
+ .e-small .e-filled.e-float-input.e-warning input:focus ~ label.e-float-text,
4189
+ .e-filled.e-float-input.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4190
+ .e-bigger .e-filled.e-float-input.e-small.e-warning input:focus ~ label.e-float-text,
4191
+ .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4192
+ .e-filled.e-float-input.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4193
+ .e-bigger .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4194
+ .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4195
+ .e-small .e-filled.e-float-input.e-warning textarea:focus ~ label.e-float-text,
4196
+ .e-filled.e-float-input.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4197
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:focus ~ label.e-float-text,
4198
+ .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4199
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning input:focus ~ label.e-float-text,
4200
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4201
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4202
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning input:focus ~ label.e-float-text,
4203
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning input:focus ~ label.e-float-text,
4204
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning input:focus ~ label.e-float-text,
4205
+ .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4206
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4207
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4208
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4209
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning textarea:focus ~ label.e-float-text,
4210
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning textarea:focus ~ label.e-float-text,
4211
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning textarea:focus ~ label.e-float-text,
4212
+ .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4213
+ .e-filled.e-float-input.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4214
+ .e-bigger .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4215
+ .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4216
+ .e-small .e-filled.e-float-input.e-warning.e-input-focus input ~ label.e-float-text,
4217
+ .e-filled.e-float-input.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4218
+ .e-bigger .e-filled.e-float-input.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4219
+ .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus inputs ~ label.e-float-text,
4220
+ .e-filled.e-float-input.e-control-wrapper.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4221
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4222
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text,
4223
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-warning.e-input-focus input ~ label.e-float-text,
4224
+ .e-filled.e-float-input.e-control-wrapper.e-small.e-bigger.e-warning.e-input-focus input ~ label.e-float-text,
4225
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-small.e-warning.e-input-focus input ~ label.e-float-text {
4226
+ @if $input-skin-name == 'material' {
4227
+ color: $input-warning-color;
4228
+ }
4229
+ }
4230
+
4231
+ .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
4232
+ .e-bigger .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
4233
+ .e-bigger.e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
4234
+ .e-small .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
4235
+ .e-small.e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
4236
+ .e-bigger .e-filled.e-float-input.e-small.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
4237
+ .e-bigger.e-small .e-filled.e-float-input.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
4238
+ .e-filled.e-float-input.e-bigger.e-small.e-warning:not(.e-input-focus) input:not(:focus):-webkit-autofill~label.e-float-text,
4239
+ .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,
4240
+ .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,
4241
+ .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,
4242
+ .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,
4243
+ .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,
4244
+ .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,
4245
+ .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,
4246
+ .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 {
4247
+ @if $input-skin-name == 'material' {
4248
+ color: $input-warning-color;
4249
+ }
4250
+ }
4251
+
4252
+ .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4253
+ .e-bigger .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4254
+ .e-bigger.e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4255
+ .e-small .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4256
+ .e-small.e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4257
+ .e-bigger .e-filled.e-float-input.e-small.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4258
+ .e-bigger.e-small .e-filled.e-float-input.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4259
+ .e-filled.e-float-input.e-bigger.e-small.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4260
+ .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4261
+ .e-bigger .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4262
+ .e-bigger.e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4263
+ .e-small .e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4264
+ .e-small.e-filled.e-float-input.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text,
4265
+ .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,
4266
+ .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,
4267
+ .e-filled.e-bigger.e-small.e-control-wrapper.e-autofill.e-warning textarea:not(:focus):-webkit-autofill~label.e-float-text {
4268
+ @if $input-skin-name == 'material' {
4269
+ color: $input-warning-color;
4270
+ }
4271
+ }
4272
+ }