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; |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 font-weight: bold; | 44 font-weight: bold; |
45 } | 45 } |
46 | 46 |
47 .function-title-link-container { | 47 .function-title-link-container { |
48 display: flex; | 48 display: flex; |
49 align-items: center; | 49 align-items: center; |
50 position: relative; | 50 position: relative; |
51 margin-left: 10px; | 51 margin-left: 10px; |
52 } | 52 } |
53 | 53 |
| 54 .function-title-link-container .devtools-link { |
| 55 white-space: nowrap; |
| 56 overflow: hidden; |
| 57 } |
| 58 |
54 .function-location-step-into { | 59 .function-location-step-into { |
55 position: relative; | 60 position: relative; |
56 height: 14px; | 61 height: 14px; |
57 transform: rotate(-90deg); | 62 transform: rotate(-90deg); |
58 } | 63 } |
OLD | NEW |