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 .object-popover-content { | 7 .object-popover-content { |
8 display: block; | 8 display: block; |
9 position: relative; | 9 position: relative; |
10 overflow: hidden; | 10 overflow: hidden; |
| 11 flex: 1 1 auto; |
11 } | 12 } |
12 | 13 |
13 .object-popover-title { | 14 .object-popover-title { |
14 text-overflow: ellipsis; | 15 text-overflow: ellipsis; |
15 overflow: hidden; | 16 overflow: hidden; |
16 white-space: nowrap; | 17 white-space: nowrap; |
17 font-weight: bold; | 18 font-weight: bold; |
18 padding-left: 18px; | 19 padding-left: 18px; |
19 padding-bottom: 2px; | 20 padding-bottom: 2px; |
20 } | 21 } |
(...skipping 27 matching lines...) Expand all Loading... |
48 align-items: center; | 49 align-items: center; |
49 position: relative; | 50 position: relative; |
50 margin-left: 10px; | 51 margin-left: 10px; |
51 } | 52 } |
52 | 53 |
53 .function-location-step-into { | 54 .function-location-step-into { |
54 position: relative; | 55 position: relative; |
55 height: 14px; | 56 height: 14px; |
56 transform: rotate(-90deg); | 57 transform: rotate(-90deg); |
57 } | 58 } |
OLD | NEW |