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

Side by Side 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, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html.col-resize * { 5 html.col-resize * {
6 cursor: col-resize !important; 6 cursor: col-resize !important;
7 } 7 }
8 8
9 /* Outer frame of the dialog. */ 9 /* Outer frame of the dialog. */
10 body { 10 body {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 } 128 }
129 129
130 .butter-bar.error { 130 .butter-bar.error {
131 background-color: rgba(221, 75, 57, 0.2); 131 background-color: rgba(221, 75, 57, 0.2);
132 border: 1px solid rgba(221, 75, 57, 0.5); 132 border: 1px solid rgba(221, 75, 57, 0.5);
133 border-radius: 2px; 133 border-radius: 2px;
134 padding: 2px 1em; 134 padding: 2px 1em;
135 } 135 }
136 136
137 .progress-bar { 137 .progress-bar {
138 border: 1px solid #999; 138 background-image: -webkit-linear-gradient(top, #e9e9e9 0, #f9f9f9 100%);
139 border: 1px solid #a1a1a1;
140 border-radius: 3px;
139 margin-top: 3px; 141 margin-top: 3px;
140 padding: 1px;
141 width: 320px; 142 width: 320px;
142 } 143 }
143 144
144 .progress-track { 145 .progress-track {
145 -webkit-animation-duration: 800ms; 146 background-color: rgb(76, 86, 106);
146 -webkit-animation-iteration-count: infinite; 147 border: 1px solid black;
147 -webkit-animation-name: bg; 148 border-radius: 3px;
148 -webkit-animation-timing-function: linear; 149 height: 6px;
149 background-color: #ccc; 150 margin: -1px;
150 background-image: -webkit-linear-gradient(315deg, transparent, 151 }
151 transparent 33%, rgba(0, 0, 0, 0.12) 33%, rgba(0, 0, 0, 0.12) 66%, 152
152 transparent 66%, transparent); 153 .progress-track:before {
153 background-position: 0 0; 154 background-image: -webkit-linear-gradient(top, rgb(89, 103, 128) 0,
154 background-repeat: repeat-x; 155 rgb(76, 86, 106) 100%);
155 background-size: 16px 8px; 156 border: 1px solid rgb(124, 133, 147);
156 height: 5px; 157 border-bottom-color: rgb(116, 124, 136);
158 border-radius: 3px;
159 border-top-color: rgb(173, 181, 195);
160 content: '';
161 display: block;
162 height: 4px;
157 } 163 }
158 164
159 @-webkit-keyframes bg { 165 @-webkit-keyframes bg {
160 0% { background-position: 0 0; } 166 0% { background-position: 0 0; }
161 100% { background-position: -16px 0; } 167 100% { background-position: -16px 0; }
162 } 168 }
163 169
164 /* The top title of the dialog. */ 170 /* The top title of the dialog. */
165 .dialog-title { 171 .dialog-title {
166 -webkit-box-sizing: border-box; 172 -webkit-box-sizing: border-box;
(...skipping 1252 matching lines...) Expand 10 before | Expand all | Expand 10 after
1419 left: 0; 1425 left: 0;
1420 padding: 10px; 1426 padding: 10px;
1421 position: absolute; 1427 position: absolute;
1422 right: 0; 1428 right: 0;
1423 top: 28px; /* Leave room for the file list header. */ 1429 top: 28px; /* Leave room for the file list header. */
1424 } 1430 }
1425 1431
1426 .dialog-container:not([gdrive-welcome='page']) #no-search-results[show] { 1432 .dialog-container:not([gdrive-welcome='page']) #no-search-results[show] {
1427 display: block; 1433 display: block;
1428 } 1434 }
OLDNEW
« 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