1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

rename agilebits stuff to bitwarden

This commit is contained in:
Kyle Spearrin
2018-04-13 22:42:32 -04:00
parent 9ec9a6cf88
commit 5c9618b0a8
2 changed files with 23 additions and 16 deletions

View File

@@ -1,32 +1,32 @@
@-webkit-keyframes onepasswordfill {
@-webkit-keyframes bitwardenfill {
0% {
-webkit-transform: scale(1.0,1.0);
-webkit-transform: scale(1.0, 1.0);
}
50% {
-webkit-transform: scale(1.2,1.2);
-webkit-transform: scale(1.2, 1.2);
}
100% {
-webkit-transform: scale(1.0,1.0);
-webkit-transform: scale(1.0, 1.0);
}
}
@-moz-keyframes onepasswordfill {
@-moz-keyframes bitwardenfill {
0% {
transform: scale(1.0,1.0);
transform: scale(1.0, 1.0);
}
50% {
transform: scale(1.2,1.2);
transform: scale(1.2, 1.2);
}
100% {
transform: scale(1.0,1.0);
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;
.com-bitwarden-browser-animated-fill {
animation: bitwardenfill 200ms ease-in-out 0ms 1;
-webkit-animation: bitwardenfill 200ms ease-in-out 0ms 1;
}