| 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 58c45655dbc5e7e3806ab3f23a4961e62730756e..53c36994b0354255a19562a60b72c8f8192e5977 100644
|
| --- a/chrome/browser/resources/file_manager/css/photo_import.css
|
| +++ b/chrome/browser/resources/file_manager/css/photo_import.css
|
| @@ -152,6 +152,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;
|
| }
|
|
|