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

Unified Diff: chrome/browser/resources/file_manager/css/common.css

Issue 14167008: Restyled the butter bar in Files.app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/css/file_manager.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/css/common.css
diff --git a/chrome/browser/resources/file_manager/css/common.css b/chrome/browser/resources/file_manager/css/common.css
index d94a533533c64fddedbe44b1e1ebb740160a259f..83d29d292fb60e8dd0eb7c9c15e6bffdea659ac5 100644
--- a/chrome/browser/resources/file_manager/css/common.css
+++ b/chrome/browser/resources/file_manager/css/common.css
@@ -380,7 +380,7 @@ input[type='submit'][disabled]:hover {
}
/* Blue progress bar. */
-.progress-bar {
+body:not([new-ui]) .progress-bar {
background-color: #e6e6e6;
border: 1px solid #ddd;
border-radius: 2px;
@@ -388,7 +388,7 @@ input[type='submit'][disabled]:hover {
margin: 2px 0;
}
-.progress-track {
+body:not([new-ui]) .progress-track {
background-image: -webkit-linear-gradient(
rgb(110, 188, 249) 1px, rgb(86, 167, 247) 2px,
rgb(76, 148, 245) 11px, rgb(41, 112, 211) 12px);
@@ -398,6 +398,18 @@ input[type='submit'][disabled]:hover {
margin: -1px;
}
+body[new-ui] .progress-bar {
+ background-color: #e6e6e6;
+ border-radius: 3px;
+ height: 6px;
+}
+
+body[new-ui] .progress-track {
+ background-color: #888;
+ border-radius: 3px;
+ height: 6px;
+}
+
.progress-track.smoothed {
-webkit-transition: width 1s linear;
}
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/css/file_manager.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698