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

Side by Side Diff: chrome/browser/resources/file_manager/css/file_manager.css

Issue 10832177: Revert 145560 - 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, 4 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 { 5 html {
6 height: 100%; 6 height: 100%;
7 } 7 }
8 8
9 html.col-resize * { 9 html.col-resize * {
10 cursor: col-resize !important; 10 cursor: col-resize !important;
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 } 133 }
134 134
135 #butter-bar.error { 135 #butter-bar.error {
136 background-color: rgba(221, 75, 57, 0.2); 136 background-color: rgba(221, 75, 57, 0.2);
137 border: 1px solid rgba(221, 75, 57, 0.5); 137 border: 1px solid rgba(221, 75, 57, 0.5);
138 border-radius: 2px; 138 border-radius: 2px;
139 padding: 2px 1em; 139 padding: 2px 1em;
140 } 140 }
141 141
142 .progress-bar { 142 .progress-bar {
143 background-image: -webkit-linear-gradient(top, #e9e9e9 0, #f9f9f9 100%); 143 border: 1px solid #999;
144 border: 1px solid #a1a1a1;
145 border-radius: 3px;
146 margin-bottom: 2px; 144 margin-bottom: 2px;
147 margin-top: 3px; 145 margin-top: 3px;
146 padding: 1px;
148 width: 320px; 147 width: 320px;
149 } 148 }
150 149
151 .progress-track { 150 .progress-track {
152 background-color: rgb(76, 86, 106); 151 -webkit-animation-duration: 800ms;
153 border: 1px solid black; 152 -webkit-animation-iteration-count: infinite;
154 border-radius: 3px; 153 -webkit-animation-name: bg;
155 height: 6px; 154 -webkit-animation-timing-function: linear;
156 margin: -1px; 155 background-color: #ccc;
157 } 156 background-image: -webkit-linear-gradient(315deg, transparent,
158 157 transparent 33%, rgba(0, 0, 0, 0.12) 33%, rgba(0, 0, 0, 0.12) 66%,
159 .progress-track:before { 158 transparent 66%, transparent);
160 background-image: -webkit-linear-gradient(top, rgb(89, 103, 128) 0, 159 background-position: 0 0;
161 rgb(76, 86, 106) 100%); 160 background-repeat: repeat-x;
162 border: 1px solid rgb(124, 133, 147); 161 background-size: 16px 8px;
163 border-bottom-color: rgb(116, 124, 136); 162 height: 5px;
164 border-radius: 3px;
165 border-top-color: rgb(173, 181, 195);
166 content: '';
167 display: block;
168 height: 4px;
169 } 163 }
170 164
171 @-webkit-keyframes bg { 165 @-webkit-keyframes bg {
172 0% { background-position: 0 0; } 166 0% { background-position: 0 0; }
173 100% { background-position: -16px 0; } 167 100% { background-position: -16px 0; }
174 } 168 }
175 169
176 /* The top title of the dialog. */ 170 /* The top title of the dialog. */
177 .dialog-title { 171 .dialog-title {
178 -webkit-box-sizing: border-box; 172 -webkit-box-sizing: border-box;
(...skipping 1343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1522 height: 100%; 1516 height: 100%;
1523 } 1517 }
1524 1518
1525 #list-container .table-header-cell:hover { 1519 #list-container .table-header-cell:hover {
1526 background-color: #f2f2f2; 1520 background-color: #f2f2f2;
1527 } 1521 }
1528 1522
1529 button:focus { 1523 button:focus {
1530 outline-color: rgb(77, 144, 254); 1524 outline-color: rgb(77, 144, 254);
1531 } 1525 }
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