| 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: 2px 8px 3px 8px; | 8 padding: 2px 8px 3px 8px; |
| 9 position: relative; | 9 position: relative; |
| 10 min-height: 18px; | 10 min-height: 26px; |
| 11 white-space: nowrap; | 11 white-space: nowrap; |
| 12 align-items: center; |
| 13 display: flex; |
| 12 } | 14 } |
| 13 | 15 |
| 14 .list-item:nth-of-type(2n) { | 16 .list-item:nth-of-type(2n) { |
| 15 background-color: #f8f8f8; | 17 background-color: #f8f8f8; |
| 16 } | 18 } |
| 17 | 19 |
| 18 .list-item.selected { | 20 .list-item.selected { |
| 19 background-color: #dadada; | 21 background-color: #dadada; |
| 20 } | 22 } |
| 21 | 23 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 .list-item.label .subtitle { | 55 .list-item.label .subtitle { |
| 54 font-style: italic; | 56 font-style: italic; |
| 55 font-weight: bold; | 57 font-weight: bold; |
| 56 color: #999; | 58 color: #999; |
| 57 } | 59 } |
| 58 | 60 |
| 59 .list-item.dimmed { | 61 .list-item.dimmed { |
| 60 opacity: 0.6; | 62 opacity: 0.6; |
| 61 font-style: italic; | 63 font-style: italic; |
| 62 } | 64 } |
| OLD | NEW |