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

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

Issue 10830217: Fix alpha mask for download progress on high DPI displays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: JsDoc fixes. 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 | chrome/browser/resources/downloads/downloads.js » ('j') | 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 body { 5 body {
6 margin: 10px 10px 34px 10px; 6 margin: 10px 10px 34px 10px;
7 } 7 }
8 8
9 .header { 9 .header {
10 clear: both; 10 clear: both;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 html[dir=rtl] .progress { 127 html[dir=rtl] .progress {
128 left: auto; 128 left: auto;
129 right: 0; 129 right: 0;
130 } 130 }
131 131
132 .progress.background { 132 .progress.background {
133 background: url('chrome://theme/IDR_DOWNLOAD_PROGRESS_BACKGROUND_32'); 133 background: url('chrome://theme/IDR_DOWNLOAD_PROGRESS_BACKGROUND_32');
134 background-size: 48px; 134 background-size: 48px;
135 } 135 }
136 136
137 .progress.foreground {
138 background: url('chrome://theme/IDR_DOWNLOAD_PROGRESS_FOREGROUND_32');
139 background-size: 48px;
140 }
141
142 .name { 137 .name {
143 -webkit-padding-end: 16px; 138 -webkit-padding-end: 16px;
144 display: none; 139 display: none;
145 max-width: 450px; 140 max-width: 450px;
146 word-break: break-all; 141 word-break: break-all;
147 } 142 }
148 143
149 .interrupted { 144 .interrupted {
150 color: red; 145 color: red;
151 } 146 }
(...skipping 17 matching lines...) Expand all
169 164
170 .controls a { 165 .controls a {
171 -webkit-margin-end: 16px; 166 -webkit-margin-end: 16px;
172 color: #777; 167 color: #777;
173 } 168 }
174 169
175 #downloads-pagination { 170 #downloads-pagination {
176 -webkit-margin-start: 18px; 171 -webkit-margin-start: 18px;
177 padding-top: 24px; 172 padding-top: 24px;
178 } 173 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/downloads/downloads.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698