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

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

Issue 10700079: File manager copy progress indicator made looking like uber tray sync indicator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/css/file_manager.css
diff --git a/chrome/browser/resources/file_manager/css/file_manager.css b/chrome/browser/resources/file_manager/css/file_manager.css
index f88abbb070a35b0425cd97ec1ccf855fff5d5b81..10ca3c79717ebfd17e5757d26dcc1dca6a57968c 100644
--- a/chrome/browser/resources/file_manager/css/file_manager.css
+++ b/chrome/browser/resources/file_manager/css/file_manager.css
@@ -135,25 +135,31 @@ input[type='submit'][disabled]:hover {
}
.progress-bar {
- border: 1px solid #999;
+ background-image: -webkit-linear-gradient(top, #e9e9e9 0, #f9f9f9 100%);
+ border: 1px solid #a1a1a1;
+ border-radius: 3px;
margin-top: 3px;
- padding: 1px;
width: 320px;
}
.progress-track {
- -webkit-animation-duration: 800ms;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-name: bg;
- -webkit-animation-timing-function: linear;
- background-color: #ccc;
- background-image: -webkit-linear-gradient(315deg, transparent,
- transparent 33%, rgba(0, 0, 0, 0.12) 33%, rgba(0, 0, 0, 0.12) 66%,
- transparent 66%, transparent);
- background-position: 0 0;
- background-repeat: repeat-x;
- background-size: 16px 8px;
- height: 5px;
+ background-color: rgb(76, 86, 106);
+ border: 1px solid black;
+ border-radius: 3px;
+ height: 6px;
+ margin: -1px;
+}
+
+.progress-track:before {
+ background-image: -webkit-linear-gradient(top, rgb(89, 103, 128) 0,
+ rgb(76, 86, 106) 100%);
+ border: 1px solid rgb(124, 133, 147);
+ border-bottom-color: rgb(116, 124, 136);
+ border-radius: 3px;
+ border-top-color: rgb(173, 181, 195);
+ content: '';
+ display: block;
+ height: 4px;
}
@-webkit-keyframes bg {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698