| Index: chrome/common/extensions/docs/examples/api/document_scan/scan.css
|
| diff --git a/chrome/common/extensions/docs/examples/api/document_scan/scan.css b/chrome/common/extensions/docs/examples/api/document_scan/scan.css
|
| index 08a43853507bb861e66a4b5e2aa3d63df157b518..899b0f6f33459a262d8690d9211439ce0f187535 100644
|
| --- a/chrome/common/extensions/docs/examples/api/document_scan/scan.css
|
| +++ b/chrome/common/extensions/docs/examples/api/document_scan/scan.css
|
| @@ -22,7 +22,6 @@
|
| left: 50%;
|
| margin-left: -30px;
|
| margin-top: -30px;
|
| - -webkit-animation: rotation .6s infinite linear;
|
| animation: rotation .6s infinite linear;
|
| border-left:6px solid rgba(180,174,239,.15);
|
| border-right:6px solid rgba(180,174,239,.15);
|
| @@ -31,7 +30,7 @@
|
| border-radius:100%;
|
| }
|
|
|
| -@-webkit-keyframes rotation {
|
| - from {-webkit-transform: rotate(0deg);}
|
| - to {-webkit-transform: rotate(359deg);}
|
| +@keyframes rotation {
|
| + from {transform: rotate(0deg);}
|
| + to {transform: rotate(359deg);}
|
| }
|
|
|