@clopezochoa/detect-autofill-react
Version:
React hook to detect browser's autofill
2 lines (1 loc) • 541 B
CSS
@keyframes onAutoFillStart{0%{opacity:1}to{opacity:1}}@keyframes onAutoFillCancel{0%{opacity:1}to{opacity:1}}input,select,textarea{transition:background-color 50000s ease-in-out,color 50000s ease-in-out}input:-webkit-autofill,input:autofill,select:-webkit-autofill,select:autofill,textarea:-webkit-autofill,textarea:autofill{animation:onAutoFillStart 1ms forwards}input:not(:-webkit-autofill):not(:autofill),select:not(:-webkit-autofill):not(:autofill),textarea:not(:-webkit-autofill):not(:autofill){animation:onAutoFillCancel 1ms forwards}