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 |
7 .thread-item { | 21 .thread-item { |
8 padding: 3px 8px 3px 20px; | 22 padding: 3px 8px 3px 20px; |
9 position: relative; | 23 position: relative; |
10 min-height: 18px; | 24 min-height: 18px; |
11 line-height: 15px; | 25 line-height: 15px; |
12 display: flex; | 26 display: flex; |
13 flex-wrap: wrap; | 27 flex-wrap: wrap; |
14 } | 28 } |
15 | 29 |
16 .thread-item + .thread-item { | 30 .thread-item + .thread-item { |
(...skipping 21 matching lines...) Expand all Loading... |
38 display: none; | 52 display: none; |
39 position: absolute; | 53 position: absolute; |
40 top: 5px; | 54 top: 5px; |
41 left: 4px; | 55 left: 4px; |
42 } | 56 } |
43 | 57 |
44 .thread-item.selected .selected-thread-icon { | 58 .thread-item.selected .selected-thread-icon { |
45 display: block; | 59 display: block; |
46 } | 60 } |
47 | 61 |
OLD | NEW |