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

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: Addressed comments. 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
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/file_transfer_controller.js » ('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 c4d6c4543fb56877a8911a7debcbce32950fb5af..8a0fc401e9ff4550b1ecb6a235fcc36fec42ed6e 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -684,6 +684,18 @@ body[type='full-page'] list .filename-label > :hover,
text-decoration: underline;
}
+.breadcrumb-path.accepts {
+ -webkit-animation: acceptsBlinkText 200ms linear 1s 3;
+}
+
+@-webkit-keyframes acceptsBlinkText {
+ 0% {
+ color: white;
+ }
+ 50% {
+ }
+}
+
.img-container > img {
-webkit-user-drag: none;
position: absolute;
@@ -848,6 +860,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
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/file_transfer_controller.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698