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

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

Issue 1174653002: Show progress bar during scanning. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Normalize statics object naming. Created 5 years, 6 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 85338657c0b7c41c42cd50e1eb4ecefda88a396d..3bfb07c5972717858e18e4bf7a33ef9c2449c6a0 100644
--- a/ui/file_manager/file_manager/foreground/css/file_manager.css
+++ b/ui/file_manager/file_manager/foreground/css/file_manager.css
@@ -505,6 +505,22 @@ html[dir='rtl'] #cloud-import-details {
cursor: pointer;
}
+#cloud-import-details .progress {
+ height: 4px;
+ background-color: #E0E0E0;
+ border-radius: 2px;
+ margin-top: 14px;
+ width: 100%;
+}
+
+#cloud-import-details .progress .value {
+ background-color: #1AC222;
+ border-radius: 2px;
+ height: 4px;
+ transition: width 0.1s linear;
+ width: 0%;
+}
+
#cloud-import-details paper-button {
align-self: flex-end;
color: white;

Powered by Google App Engine
This is Rietveld 408576698