Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5860)

Unified Diff: chrome/browser/resources/file_manager/css/gallery.css

Issue 12316118: Enabled Mosaic view on each volume. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/css/photo_import.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/css/gallery.css
diff --git a/chrome/browser/resources/file_manager/css/gallery.css b/chrome/browser/resources/file_manager/css/gallery.css
index bea91d1cef1cdf2c081ca995e768c848fcb8372e..8d820b278410e3da6f3114358205a378a6c19267 100644
--- a/chrome/browser/resources/file_manager/css/gallery.css
+++ b/chrome/browser/resources/file_manager/css/gallery.css
@@ -1228,9 +1228,20 @@ body {
top: 0;
}
-.mosaic-tile img {
- -webkit-user-drag: none;
- position: absolute;
+.mosaic-tile .img-wrapper[generic-thumbnail],
+.mosaic-tile .img-wrapper:not([generic-thumbnail]) canvas {
+ -webkit-animation: fadeIn ease-in 1;
+ -webkit-animation-duration: 500ms;
+ -webkit-animation-fill-mode: forwards;
+}
+
+@-webkit-keyframes fadeIn {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
}
/* In order to do mode animated transitions smoothly we keep both mosaic and
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/css/photo_import.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698