| 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 | 5 |
| 6 .trash { | 6 .trash { |
| 7 -webkit-appearance: none; |
| 8 background: none; |
| 9 border: none; |
| 7 cursor: pointer; | 10 cursor: pointer; |
| 8 display: inline-block; | 11 display: inline-block; |
| 9 outline: none; | 12 outline: none; |
| 13 padding: 0; |
| 10 position: relative; | 14 position: relative; |
| 11 width: 30px; | 15 width: 30px; |
| 12 } | 16 } |
| 13 | 17 |
| 14 .trash > span { | 18 .trash > span { |
| 15 display: inline-block; | 19 display: inline-block; |
| 16 } | 20 } |
| 17 | 21 |
| 18 .trash > .can, | 22 .trash > .can, |
| 19 .trash > .lid { | 23 .trash > .lid { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 49 .trash > .can { | 53 .trash > .can { |
| 50 background-position: -1px -4px; | 54 background-position: -1px -4px; |
| 51 height: 12px; | 55 height: 12px; |
| 52 /* The margins match the background position offsets. */ | 56 /* The margins match the background position offsets. */ |
| 53 margin-left: 1px; | 57 margin-left: 1px; |
| 54 /* The right margin is one greater due to a shadow on the trash image. */ | 58 /* The right margin is one greater due to a shadow on the trash image. */ |
| 55 margin-right: 2px; | 59 margin-right: 2px; |
| 56 margin-top: 4px; | 60 margin-top: 4px; |
| 57 width: 11px; | 61 width: 11px; |
| 58 } | 62 } |
| OLD | NEW |