| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2017 The Chromium Authors. All rights reserved. | 2 * Copyright 2017 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 .available-node-targets { | |
| 8 height: 22px; | |
| 9 display: flex; | |
| 10 align-items: center; | |
| 11 justify-content: flex-start; | |
| 12 padding-left: 20px; | |
| 13 border-top: 1px solid #eee; | |
| 14 font-style: italic; | |
| 15 } | |
| 16 | |
| 17 .available-node-targets > span { | |
| 18 margin-left: 5px; | |
| 19 } | |
| 20 | |
| 21 .thread-item { | 7 .thread-item { |
| 22 padding: 3px 8px 3px 20px; | 8 padding: 3px 8px 3px 20px; |
| 23 position: relative; | 9 position: relative; |
| 24 min-height: 18px; | 10 min-height: 18px; |
| 25 line-height: 15px; | 11 line-height: 15px; |
| 26 display: flex; | 12 display: flex; |
| 27 flex-wrap: wrap; | 13 flex-wrap: wrap; |
| 28 } | 14 } |
| 29 | 15 |
| 30 .thread-item + .thread-item { | 16 .thread-item + .thread-item { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 52 display: none; | 38 display: none; |
| 53 position: absolute; | 39 position: absolute; |
| 54 top: 5px; | 40 top: 5px; |
| 55 left: 4px; | 41 left: 4px; |
| 56 } | 42 } |
| 57 | 43 |
| 58 .thread-item.selected .selected-thread-icon { | 44 .thread-item.selected .selected-thread-icon { |
| 59 display: block; | 45 display: block; |
| 60 } | 46 } |
| 61 | 47 |
| OLD | NEW |