| 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: 3px 8px 4px 8px; | 8 padding: 2px 8px 3px 8px; |
| 9 position: relative; | 9 position: relative; |
| 10 min-height: 18px; | 10 min-height: 18px; |
| 11 white-space: nowrap; | 11 white-space: nowrap; |
| 12 } | 12 } |
| 13 | 13 |
| 14 .list-item:nth-of-type(2n) { | 14 .list-item:nth-of-type(2n) { |
| 15 background-color: #f8f8f8; | 15 background-color: #f8f8f8; |
| 16 } | 16 } |
| 17 | 17 |
| 18 .list-item.selected { | 18 .list-item.selected { |
| 19 background-color: rgb(212, 212, 212); | 19 background-color: #dadada; |
| 20 } | 20 } |
| 21 | 21 |
| 22 .list-item.selected > .title { | 22 .list-item.selected > .title { |
| 23 font-weight: bold; | 23 font-weight: bold; |
| 24 } | 24 } |
| 25 | 25 |
| 26 .list-item:hover { | 26 .list-item:hover { |
| 27 background-color: #eee; | 27 background-color: #eee; |
| 28 } | 28 } |
| 29 | 29 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 53 .list-item.label .subtitle { | 53 .list-item.label .subtitle { |
| 54 font-style: italic; | 54 font-style: italic; |
| 55 font-weight: bold; | 55 font-weight: bold; |
| 56 color: #999; | 56 color: #999; |
| 57 } | 57 } |
| 58 | 58 |
| 59 .list-item.dimmed { | 59 .list-item.dimmed { |
| 60 opacity: 0.6; | 60 opacity: 0.6; |
| 61 font-style: italic; | 61 font-style: italic; |
| 62 } | 62 } |
| OLD | NEW |