1.0.0 • Published 8 years ago

webkit-autofill v1.0.0

Weekly downloads
56
License
MIT
Repository
github
Last release
8 years ago

webkit-autofill

A simple scss file with mixins to styling autofill. More info about autofill in WebKit browsers: CSS-Tricks

Install

In your project install a package:

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

disableAutoFill

Default style

input:-webkit-autofill {
  @include disableAutoFill;
}

backgroundColorAutoFill(color)

Default style

input:-webkit-autofill {
  ...
  @include backgroundColorAutoFill(#2196F3);
}

textColorAutoFill(color)

Default style

input:-webkit-autofill {
  ...
  @include textColorAutoFill(#FFFFFF);
}

hoverBackgroundColorAutoFill(color)

Default style

input:-webkit-autofill {
  ...
  @include hoverBackgroundColorAutoFill(#FF5722);
}

hoverTextColorAutoFill(color)

Default style

input:-webkit-autofill {
  ...
  @include hoverTextColorAutoFill(#212121);
}