| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 The Chromium Authors. All rights reserved. | 2 * Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .list-item { | 7 .list-item { |
| 8 padding: 0 8px 0 0; | 8 padding: 0 8px 0 0; |
| 9 position: relative; | 9 position: relative; |
| 10 min-height: 18px; | 10 min-height: 18px; |
| 11 white-space: nowrap; | 11 white-space: nowrap; |
| 12 line-height: 20px; | 12 line-height: 20px; |
| 13 } |
| 14 |
| 15 .list-item:not(:last-child) { |
| 13 border-bottom: 1px solid #eee; | 16 border-bottom: 1px solid #eee; |
| 14 } | 17 } |
| 15 | 18 |
| 16 .list-item:not(.ignore-hover):hover { | 19 .list-item:not(.ignore-hover):hover { |
| 17 background-color: #eee; | 20 background-color: #eee; |
| 18 } | 21 } |
| 19 | 22 |
| 20 .list-item > .title { | 23 .list-item > .title { |
| 21 word-wrap: break-word; | 24 word-wrap: break-word; |
| 22 white-space: normal; | 25 white-space: normal; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 left: 4px; | 64 left: 4px; |
| 62 width: 10px; | 65 width: 10px; |
| 63 height: 10px; | 66 height: 10px; |
| 64 } | 67 } |
| 65 | 68 |
| 66 @media (-webkit-min-device-pixel-ratio: 1.5) { | 69 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 67 .list-item.selected::before { | 70 .list-item.selected::before { |
| 68 background-image: url(Images/smallIcons_2x.png); | 71 background-image: url(Images/smallIcons_2x.png); |
| 69 } | 72 } |
| 70 } /* media */ | 73 } /* media */ |
| OLD | NEW |