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

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: 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 d5be452b034eaff28226a3ce2d1ad427c43b4878..3e5228cd930ab836050292cb0208beea0969395c 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -1225,7 +1225,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;
@@ -1264,6 +1263,22 @@ body[new-ui] .preview-thumbnails > .thumbnail > .img-container {
width: 35px;
}
+body[new-ui] .preview-thumbnails > .thumbnail > .img-container >
+ img.not(.cached) {
+ -webkit-animation: fadeIn ease-in 1;
yoshiki 2013/04/20 01:49:20 nit: they should be separated to keep consistency
mtomasz 2013/04/22 02:51:44 I've moved it to a one line, since it is more freq
+ -webkit-animation-duration: 500ms;
+ -webkit-animation-fill-mode: forwards;
+}
+
+@-webkit-keyframes fadeIn {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+
.preview-thumbnails > .popup {
-webkit-transform: translate(0, 3px) scale(0.95);
background-color: #f2f2f2;
@@ -2045,3 +2060,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