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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 -webkit-transition: top 200ms, opacity 0; | 243 -webkit-transition: top 200ms, opacity 0; |
244 -webkit-transition-delay: 0, 200ms; | 244 -webkit-transition-delay: 0, 200ms; |
245 color: #7F7F7F; | 245 color: #222; |
246 height: 100%; | 246 height: 100%; |
247 position: absolute; | 247 position: absolute; |
248 opacity: 0; | 248 opacity: 0; |
249 right: 0; | 249 right: 0; |
250 top: 50px; | 250 top: 50px; |
251 } | 251 } |
252 | 252 |
253 html[dir='rtl'] #trash { | 253 html[dir='rtl'] #trash { |
254 left: 0; | 254 left: 0; |
255 right: auto; | 255 right: auto; |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 padding: 0; | 336 padding: 0; |
337 position: absolute; | 337 position: absolute; |
338 margin: 0; | 338 margin: 0; |
339 max-width: 150px; | 339 max-width: 150px; |
340 min-width: 90px; | 340 min-width: 90px; |
341 outline: none; | 341 outline: none; |
342 top: 0; | 342 top: 0; |
343 z-index: 5; | 343 z-index: 5; |
344 -webkit-transition: width 150ms, right 150ms, background-color 150ms; | 344 -webkit-transition: width 150ms, right 150ms, background-color 150ms; |
345 } | 345 } |
OLD | NEW |