bitwarden-estensione-browser/apps/browser/src/content/autofill.css

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
593 B
CSS
Raw Normal View History

2018-04-14 04:42:32 +02:00
@-webkit-keyframes bitwardenfill {
2017-11-02 21:46:40 +01:00
0% {
2018-04-14 04:42:32 +02:00
-webkit-transform: scale(1, 1);
2017-11-02 21:46:40 +01:00
}
50% {
2018-04-14 04:42:32 +02:00
-webkit-transform: scale(1.2, 1.2);
2017-11-02 21:46:40 +01:00
}
100% {
2018-04-14 04:42:32 +02:00
-webkit-transform: scale(1, 1);
2017-11-02 21:46:40 +01:00
}
}
2018-04-14 04:42:32 +02:00
@-moz-keyframes bitwardenfill {
2017-11-02 21:46:40 +01:00
0% {
2018-04-14 04:42:32 +02:00
transform: scale(1, 1);
2017-11-02 21:46:40 +01:00
}
50% {
2018-04-14 04:42:32 +02:00
transform: scale(1.2, 1.2);
2017-11-02 21:46:40 +01:00
}
100% {
2018-04-14 04:42:32 +02:00
transform: scale(1, 1);
2017-11-02 21:46:40 +01:00
}
}
span[data-bwautofill].com-bitwarden-browser-animated-fill {
display: inline-block;
}
2018-04-14 04:42:32 +02:00
.com-bitwarden-browser-animated-fill {
animation: bitwardenfill 200ms ease-in-out 0ms 1;
-webkit-animation: bitwardenfill 200ms ease-in-out 0ms 1;
2017-11-02 21:46:40 +01:00
}