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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 -webkit-box-flex: 1; | 233 -webkit-box-flex: 1; |
234 } | 234 } |
235 | 235 |
236 #login-status-dismiss { | 236 #login-status-dismiss { |
237 min-width: 6em; | 237 min-width: 6em; |
238 } | 238 } |
239 | 239 |
240 /* Trash. *********************************************************************/ | 240 /* Trash. *********************************************************************/ |
241 | 241 |
242 #trash { | 242 #trash { |
| 243 color: #7F7F7F; |
243 height: 100%; | 244 height: 100%; |
244 position: absolute; | 245 position: absolute; |
245 opacity: 0; | 246 opacity: 0; |
246 right: 0; | 247 right: 0; |
247 top: 50px; | 248 top: 50px; |
248 -webkit-transition: top 200ms, opacity 0; | 249 -webkit-transition: top 200ms, opacity 0; |
249 -webkit-transition-delay: 0, 200ms; | 250 -webkit-transition-delay: 0, 200ms; |
250 } | 251 } |
251 | 252 |
252 #footer.showing-trash-mode #trash { | 253 #footer.showing-trash-mode #trash { |
(...skipping 28 matching lines...) Expand all Loading... |
281 padding: 0; | 282 padding: 0; |
282 position: absolute; | 283 position: absolute; |
283 margin: 0; | 284 margin: 0; |
284 max-width: 150px; | 285 max-width: 150px; |
285 min-width: 90px; | 286 min-width: 90px; |
286 outline: none; | 287 outline: none; |
287 top: 0; | 288 top: 0; |
288 z-index: 5; | 289 z-index: 5; |
289 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 290 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
290 } | 291 } |
OLD | NEW |