diff options
author | Steve Beaver <sbeaver@netgate.com> | 2017-06-23 08:58:39 -0400 |
---|---|---|
committer | Steve Beaver <sbeaver@netgate.com> | 2017-06-23 08:58:39 -0400 |
commit | 58d471e9834a312a2bd67b5aebf38ac572b3e973 (patch) | |
tree | 90d17a96491e7c390aebcece3580e9992089f2c3 /src | |
parent | 81b22639e7a6d3a25af585cd15d1249216b0bf77 (diff) | |
download | pfsense-58d471e9834a312a2bd67b5aebf38ac572b3e973.zip pfsense-58d471e9834a312a2bd67b5aebf38ac572b3e973.tar.gz |
Restyle autocomplete on webkit browsers to remove the yellow background used by Chrome
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/local/www/css/login.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/usr/local/www/css/login.css b/src/usr/local/www/css/login.css index 977aeac..1e2c582 100644 --- a/src/usr/local/www/css/login.css +++ b/src/usr/local/www/css/login.css @@ -171,3 +171,15 @@ form.login a:hover .logoCol { height: 100%; } + +@-webkit-keyframes autofill { + to { + color: white; + background: transparent; + } +} + +input:-webkit-autofill { + -webkit-animation-name: autofill; + -webkit-animation-fill-mode: both; +} |