OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
6 html { | 6 html { |
7 font-family: segoe ui, arial, helvetica, sans-serif; | 7 font-family: segoe ui, arial, helvetica, sans-serif; |
8 font-size: 14px; | 8 font-size: 14px; |
9 /* It's necessary to put this here instead of in body in order to get the | 9 /* It's necessary to put this here instead of in body in order to get the |
10 background-size of 100% to work properly */ | 10 background-size of 100% to work properly */ |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 -webkit-transition-delay: 0, 0.2s; | 209 -webkit-transition-delay: 0, 0.2s; |
210 } | 210 } |
211 | 211 |
212 #footer.showing-trash-mode #trash { | 212 #footer.showing-trash-mode #trash { |
213 opacity: 1; | 213 opacity: 1; |
214 top: 0; | 214 top: 0; |
215 -webkit-transition-delay: 0, 0; | 215 -webkit-transition-delay: 0, 0; |
216 } | 216 } |
217 | 217 |
218 #trash > span { | 218 #trash > span { |
219 background-image: url('./trash.png'); | 219 background-image: url('images/trash.png'); |
220 background-position: 7px; | 220 background-position: 7px; |
221 background-repeat: no-repeat; | 221 background-repeat: no-repeat; |
222 border: 1px dashed #7f7f7f; | 222 border: 1px dashed #7f7f7f; |
223 border-radius: 4px; | 223 border-radius: 4px; |
224 display: inline-block; | 224 display: inline-block; |
225 font-size: 84%; | 225 font-size: 84%; |
226 padding-bottom: 9px; | 226 padding-bottom: 9px; |
227 padding-top: 10px; | 227 padding-top: 10px; |
228 position: relative; | 228 position: relative; |
229 top: 7px; | 229 top: 7px; |
(...skipping 11 matching lines...) Expand all Loading... |
241 padding: 0; | 241 padding: 0; |
242 position: absolute; | 242 position: absolute; |
243 margin: 0; | 243 margin: 0; |
244 max-width: 150px; | 244 max-width: 150px; |
245 min-width: 90px; | 245 min-width: 90px; |
246 outline: none; | 246 outline: none; |
247 top: 0; | 247 top: 0; |
248 z-index: 5; | 248 z-index: 5; |
249 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 249 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
250 } | 250 } |
OLD | NEW |