OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |