Index: chrome/browser/resources/file_manager/css/file_manager.css |
diff --git a/chrome/browser/resources/file_manager/css/file_manager.css b/chrome/browser/resources/file_manager/css/file_manager.css |
index a317a5966b598662edc5969dda5b9bc8c1113b51..995a1dcd9c27cb6506e1aebd85e124e49c4008c1 100644 |
--- a/chrome/browser/resources/file_manager/css/file_manager.css |
+++ b/chrome/browser/resources/file_manager/css/file_manager.css |
@@ -1229,7 +1229,6 @@ body[new-ui] .preview-thumbnails { |
padding-left: 25px; |
} |
- |
.preview-thumbnails > .thumbnail { |
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); |
background-color: #f2f2f2; |
@@ -1268,6 +1267,20 @@ body[new-ui] .preview-thumbnails > .thumbnail > .img-container { |
width: 35px; |
} |
+body[new-ui] .preview-thumbnails > .thumbnail > .img-container > |
+ img.not(.cached) { |
+ -webkit-animation: fadeIn 500ms ease-in; |
+} |
+ |
+@-webkit-keyframes fadeIn { |
+ from { |
+ opacity: 0; |
+ } |
+ to { |
+ opacity: 1; |
+ } |
+} |
+ |
.preview-thumbnails > .popup { |
-webkit-transform: translate(0, 3px) scale(0.95); |
background-color: #f2f2f2; |
@@ -2049,3 +2062,13 @@ body[new-ui] menuitem#thumbnail-view { |
url('../images/files/ui/new-ui/button_mosaic_view.png') 1x, |
url('../images/files/ui/new-ui/2x/button_mosaic_view.png') 2x); |
} |
+ |
+body[new-ui] #iframe-drag-area { |
+ -webkit-app-region: drag; |
+ height: 45px; |
+ left: 64px; |
+ position: absolute; |
+ right: 0; |
+ top: 0; |
+ z-index: 101; |
+} |