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

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

Issue 14320020: Initial restyle of the gallery. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments. Created 7 years, 8 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/gallery.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/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;
+}
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/css/gallery.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698