| Index: chrome/browser/resources/file_manager/css/photo_import.css
|
| diff --git a/chrome/browser/resources/file_manager/css/photo_import.css b/chrome/browser/resources/file_manager/css/photo_import.css
|
| index 565419ff146f164ed583955c714231cb34f19a27..41a1254f8c4e8bf055e24b4103404f0e061387b6 100644
|
| --- a/chrome/browser/resources/file_manager/css/photo_import.css
|
| +++ b/chrome/browser/resources/file_manager/css/photo_import.css
|
| @@ -151,6 +151,21 @@ button.import {
|
| position: absolute;
|
| }
|
|
|
| +.img-container > img:not(.cached) {
|
| + -webkit-animation: fadeIn ease-in 1;
|
| + -webkit-animation-duration: 100ms;
|
| + -webkit-animation-fill-mode: forwards;
|
| +}
|
| +
|
| +@-webkit-keyframes fadeIn {
|
| + from {
|
| + opacity: 0;
|
| + }
|
| + to {
|
| + opacity :1;
|
| + }
|
| +}
|
| +
|
| .grid-item[lead] {
|
| border: 2px solid transparent !important;
|
| }
|
|
|