1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Added auto fill animation. (#341)

* New Crowdin translations (#338)

* New translations messages.json (Chinese Simplified)

* New translations messages.json (Portuguese, Brazilian)

* New translations messages.json (Romanian)

* New translations copy.resx (Romanian)

* New translations messages.json (Russian)

* New translations messages.json (Slovak)

* New translations messages.json (Spanish)

* New translations messages.json (Swedish)

* New translations messages.json (Thai)

* New translations messages.json (Turkish)

* New translations messages.json (Ukrainian)

* New translations messages.json (Danish)

* New translations messages.json (Vietnamese)

* New translations messages.json (Portuguese)

* New translations messages.json (Polish)

* New translations copy.resx (Chinese Simplified)

* New translations messages.json (French)

* New translations messages.json (Chinese Traditional)

* New translations messages.json (Croatian)

* New translations messages.json (Czech)

* New translations messages.json (Dutch)

* New translations messages.json (Finnish)

* New translations messages.json (German)

* New translations messages.json (Hindi)

* New translations messages.json (Hungarian)

* New translations messages.json (Indonesian)

* New translations messages.json (Italian)

* New translations messages.json (Japanese)

* version bump

* subtitle for folder listing. folder icon.

* version bump

* subtitle should be searchable

* Added autofill animation.
This commit is contained in:
Ahmed Tarek
2017-11-02 22:35:10 +02:00
committed by Kyle Spearrin
parent eb8c4063ca
commit 3061f276c5
33 changed files with 16725 additions and 16625 deletions

16
src/content/autofill.css Normal file
View File

@@ -0,0 +1,16 @@
@-webkit-keyframes onepasswordfill {
0% { -webkit-transform: scale(1.0,1.0); }
50% { -webkit-transform: scale(1.2,1.2); }
100% { -webkit-transform: scale(1.0,1.0); }
}
@-moz-keyframes onepasswordfill {
0% { transform: scale(1.0,1.0); }
50% { transform: scale(1.2,1.2); }
100% { transform: scale(1.0,1.0); }
}
.com-agilebits-onepassword-extension-animated-fill {
animation: onepasswordfill 200ms ease-in-out 0ms 1;
-webkit-animation: onepasswordfill 200ms ease-in-out 0ms 1;
}