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

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

Issue 12677002: Adds animation on a hovered directory/volume when dragging files in Files.app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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
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 c4d6c4543fb56877a8911a7debcbce32950fb5af..bade8ada52a66d2f3d06509dc5d8d5836adacdca 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -848,6 +848,20 @@ body[type='full-page'] .thumbnail-grid .thumbnail-bottom {
border-color: transparent;
}
+#roots-list > .accepts,
+#list-container list > .accepts,
+#list-container grid > .accepts {
+ -webkit-animation: acceptsBlink 200ms linear 1s 3;
+}
+
+@-webkit-keyframes acceptsBlink {
+ 0% {
+ background-color: transparent;
+ }
+ 50% {
+ }
+}
+
.table-row-cell .filename-label,
.thumbnail-item .filename-label,
/* Show ellipsis in cells. The name column has different structure and overrides

Powered by Google App Engine
This is Rietveld 408576698