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

Unified Diff: ui/file_manager/file_manager/foreground/css/file_manager.css

Issue 2503513003: Show a label to describe some invalid drag-drop operations in Files app. (Closed)
Patch Set: Fix test failure of FileManagerJsTest.DirectoryTreeTest. Created 4 years 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: ui/file_manager/file_manager/foreground/css/file_manager.css
diff --git a/ui/file_manager/file_manager/foreground/css/file_manager.css b/ui/file_manager/file_manager/foreground/css/file_manager.css
index a94c9aeadc769fe2a7bb6d03f16e88b8a131551e..f94a4a87e526b63831af0a6b95836441d09b4ccf 100644
--- a/ui/file_manager/file_manager/foreground/css/file_manager.css
+++ b/ui/file_manager/file_manager/foreground/css/file_manager.css
@@ -2415,3 +2415,16 @@ files-toggle-ripple {
paper-input-container:unresolved {
display: none;
}
+
+#drop-label {
+ background-color: rgba(0, 0, 0, 0.8);
+ border-radius: 2px;
+ color: white;
+ display: none; /* hidden until activaed */
+ font-size: 12px;
+ height: 24px;
+ line-height: 24px;
+ padding: 0 8px;
+ position: absolute;
+ z-index: 1000; /* same height as files-tooltip */
+}

Powered by Google App Engine
This is Rietveld 408576698