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

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: 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 aa22019f8ec895001df96b97341b3a8b81dd8132..f2ea0448b908c76ae186ba76081b4703e95eb5d3 100644
--- a/ui/file_manager/file_manager/foreground/css/file_manager.css
+++ b/ui/file_manager/file_manager/foreground/css/file_manager.css
@@ -302,7 +302,8 @@ div.splitter {
}
#gear-button,
-#cloud-import-button {
+#cloud-import-button,
+#cloud-import-details-button {
-webkit-app-region: no-drag;
-webkit-margin-end: 10px;
background-color: transparent;
@@ -319,6 +320,34 @@ div.splitter {
width: 32px;
}
+#cloud-import-details-button {
+ width: 10px;
+ margin-left: -15px;
+}
+
+#cloud-import-details {
+ height: 300px;
Ben Kwa 2015/02/05 14:54:26 alpha sort these
Steve McKay 2015/02/05 15:46:46 Done.
+ width: 250px;
+ background-color: white;
+ position: absolute;
+ padding: 10px;
+ z-index: 5;
+ right: 0px;
+ top: 49px;
+ opacity: .85;
+ transition: all 0.2s ease;
+}
+
+#cloud-import-details.offscreen {
+ opacity: 0;
+ right: -202px;
+}
+
+#cloud-import-details div {
+ padding: 10px;
Ben Kwa 2015/02/05 14:54:27 alpha sort these
Steve McKay 2015/02/05 15:46:46 Done.
+ border: 0px 0px 1px 0px solid gray
+};
+
#gear-button > core-icon,
#cloud-import-button > core-icon {
margin: 8px;

Powered by Google App Engine
This is Rietveld 408576698