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

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

Issue 1223693002: Add tooltips to the header buttons in Files app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests. Created 5 years, 5 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: 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 5a2b35a49d87ab5496670052e9ea3df5fb23cd3c..a4088c18d7c3c6cadee60c61ef9660f53773496a 100644
--- a/ui/file_manager/file_manager/foreground/css/file_manager.css
+++ b/ui/file_manager/file_manager/foreground/css/file_manager.css
@@ -2242,3 +2242,26 @@ files-toggle-ripple {
right: 0;
top: 0;
}
+
+#tooltip {
+ opacity: 0;
+ padding: 4px 6px 0;
+ pointer-events: none;
+ position: absolute;
+ transition: opacity 300ms;
+ z-index: 1000;
+}
+
+#tooltip[visible] {
+ opacity: .9;
+}
+
+#tooltip-label {
+ background-color: #323232;
+ border-radius: 2px;
+ color: white;
+ font-size: 12px;
+ line-height: 28px;
+ padding: 0 14px;
+ white-space: nowrap;
+}

Powered by Google App Engine
This is Rietveld 408576698