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

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

Issue 899943002: Rework update model to eliminate a "flicker" resulting from the brief update to zero results when a… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't use drive icon in dialog for now, since this breaks funcitonal tests. Created 5 years, 10 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 911855e7af5348cbb1c05a4de8f6b6e65d8a5649..ad40a1b66fda98c065ab4ae55d5ab4dabc84a8db 100644
--- a/ui/file_manager/file_manager/foreground/css/file_manager.css
+++ b/ui/file_manager/file_manager/foreground/css/file_manager.css
@@ -337,6 +337,33 @@ div.splitter {
margin: 8px;
}
+#cloud-import-details-button {
+ margin-left: -15px;
+}
+
+#cloud-import-details {
+ background-color: white;
+ height: 300px;
+ opacity: .85;
+ padding: 10px;
+ position: absolute;
+ right: 0px;
+ top: 49px;
+ transition: all 0.2s ease;
+ width: 250px;
+ z-index: 5;
+}
+
+#cloud-import-details.offscreen {
+ opacity: 0;
+ right: -202px;
+}
+
+#cloud-import-details div {
+ border: 0px 0px 1px 0px solid gray;
+ padding: 10px;
+};
+
#files-selected-label {
/* TODO(fukino): Move dynamically with the navigation area's separator. */
left: 252px;

Powered by Google App Engine
This is Rietveld 408576698