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

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

Issue 10444060: Use chrome_html structure for shared_resources and options2 page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use chrome_html for all shared_resources and options page, specify background image sizes. 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 unified diff | Download patch | Annotate | Revision Log
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 #downloads-summary { 5 #downloads-summary {
6 background-color: rgb(235, 239, 249); 6 background-color: rgb(235, 239, 249);
7 border-top: 1px solid rgb(156, 194, 239); 7 border-top: 1px solid rgb(156, 194, 239);
8 margin-bottom: 6px; 8 margin-bottom: 6px;
9 margin-top: 12px; 9 margin-top: 12px;
10 padding: 3px; 10 padding: 3px;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 width: 48px; 100 width: 48px;
101 } 101 }
102 102
103 html[dir=rtl] .progress { 103 html[dir=rtl] .progress {
104 left: auto; 104 left: auto;
105 right: 0; 105 right: 0;
106 } 106 }
107 107
108 .progress.background { 108 .progress.background {
109 background: url('chrome://theme/IDR_DOWNLOAD_PROGRESS_BACKGROUND_32'); 109 background: url('chrome://theme/IDR_DOWNLOAD_PROGRESS_BACKGROUND_32');
110 background-size: 48px;
110 } 111 }
111 112
112 .progress.foreground { 113 .progress.foreground {
113 background: url('chrome://theme/IDR_DOWNLOAD_PROGRESS_FOREGROUND_32'); 114 background: url('chrome://theme/IDR_DOWNLOAD_PROGRESS_FOREGROUND_32');
115 background-size: 48px;
114 } 116 }
115 117
116 .name { 118 .name {
117 -webkit-padding-end: 16px; 119 -webkit-padding-end: 16px;
118 display: none; 120 display: none;
119 max-width: 450px; 121 max-width: 450px;
120 word-break: break-all; 122 word-break: break-all;
121 } 123 }
122 124
123 .interrupted { 125 .interrupted {
(...skipping 19 matching lines...) Expand all
143 145
144 .controls a { 146 .controls a {
145 -webkit-margin-end: 16px; 147 -webkit-margin-end: 16px;
146 color: #777; 148 color: #777;
147 } 149 }
148 150
149 #downloads-pagination { 151 #downloads-pagination {
150 -webkit-margin-start: 18px; 152 -webkit-margin-start: 18px;
151 padding-top: 24px; 153 padding-top: 24px;
152 } 154 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698