Mixins to webkit autofill styling
npm install webkit-autofill
npm install webkit-autofill
`
Usage
First, import autofill.scss file from node_modules to your .scss / .sass file in project. For example:
`
@import '../../node_modules/webkit-autofill/autofill'
`
Then you can use mixins from autofill.scss. For example:
`
input:-webkit-autofill {
@include backgroundColorAutoFill(#2196F3);
}
`
Examples (examples for .scss files)
A default style for autofill in Chrome with examples login data:
!Default style
$3
!Default style
`
input:-webkit-autofill {
@include disableAutoFill;
}
`
$3
!Default style
`
input:-webkit-autofill {
...
@include backgroundColorAutoFill(#2196F3);
}
`
$3
!Default style
`
input:-webkit-autofill {
...
@include textColorAutoFill(#FFFFFF);
}
`
$3
!Default style
`
input:-webkit-autofill {
...
@include hoverBackgroundColorAutoFill(#FF5722);
}
`
$3
!Default style
`
input:-webkit-autofill {
...
@include hoverTextColorAutoFill(#212121);
}
``