| 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 3px 20px; | 8 padding: 3px 8px 3px 20px; |
| 9 position: relative; | 9 position: relative; |
| 10 min-height: 18px; | 10 min-height: 18px; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 overflow: hidden; | 31 overflow: hidden; |
| 32 white-space: nowrap; | 32 white-space: nowrap; |
| 33 } | 33 } |
| 34 | 34 |
| 35 .list-item > .subtitle { | 35 .list-item > .subtitle { |
| 36 color: #888; | 36 color: #888; |
| 37 margin-left: auto; | 37 margin-left: auto; |
| 38 padding: 0 10px 0 10px; | 38 padding: 0 10px 0 10px; |
| 39 } | 39 } |
| 40 | 40 |
| 41 .list-item > .subtitle a { | 41 .list-item > .subtitle .devtools-link { |
| 42 color: inherit; | 42 color: inherit; |
| 43 } | 43 } |
| 44 | 44 |
| 45 .list-item.label::before { | 45 .list-item.label::before { |
| 46 content: " "; | 46 content: " "; |
| 47 width: 100%; | 47 width: 100%; |
| 48 border-top: 1px solid #d8d8d8; | 48 border-top: 1px solid #d8d8d8; |
| 49 margin-top: 8px; | 49 margin-top: 8px; |
| 50 position: absolute; | 50 position: absolute; |
| 51 z-index: -1; | 51 z-index: -1; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 79 .list-item .action-link { | 79 .list-item .action-link { |
| 80 color: rgb(48, 57, 66); | 80 color: rgb(48, 57, 66); |
| 81 text-decoration: underline; | 81 text-decoration: underline; |
| 82 cursor: pointer; | 82 cursor: pointer; |
| 83 } | 83 } |
| 84 | 84 |
| 85 .list-item:hover .action-link { | 85 .list-item:hover .action-link { |
| 86 color: rgb(17, 85, 204); | 86 color: rgb(17, 85, 204); |
| 87 } | 87 } |
| 88 | 88 |
| OLD | NEW |