OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2010 Apple Inc. All rights reserved. | 3 * Copyright (C) 2010 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 | 139 |
140 .heap-snapshot-view .data-grid { | 140 .heap-snapshot-view .data-grid { |
141 flex: auto; | 141 flex: auto; |
142 } | 142 } |
143 | 143 |
144 .heap-snapshot-view .heap-tracking-overview { | 144 .heap-snapshot-view .heap-tracking-overview { |
145 flex: 0 0 80px; | 145 flex: 0 0 80px; |
146 height: 80px; | 146 height: 80px; |
147 } | 147 } |
148 | 148 |
| 149 .heap-snapshot-view .retaining-paths-view { |
| 150 overflow: hidden; |
| 151 } |
| 152 |
149 .heap-snapshot-view .retainers-view-header { | 153 .heap-snapshot-view .retainers-view-header { |
150 background-image: url(Images/statusbarResizerVertical.png); | 154 background-image: url(Images/statusbarResizerVertical.png); |
151 background-color: rgb(236, 236, 236); | 155 background-color: rgb(236, 236, 236); |
152 border-bottom: 1px solid rgb(179, 179, 179); | 156 border-bottom: 1px solid rgb(179, 179, 179); |
153 background-repeat: no-repeat; | 157 background-repeat: no-repeat; |
154 background-position: right center, center; | 158 background-position: right center, center; |
155 height: 21px; | 159 flex: 0 0 21px; |
156 } | 160 } |
157 | 161 |
158 .heap-snapshot-view .retainers-view-header .title > span { | 162 .heap-snapshot-view .retainers-view-header .title > span { |
159 display: inline-block; | 163 display: inline-block; |
160 padding-top: 3px; | 164 padding-top: 3px; |
161 vertical-align: middle; | 165 vertical-align: middle; |
162 margin-left: 4px; | 166 margin-left: 4px; |
163 margin-right: 8px; | 167 margin-right: 8px; |
164 } | 168 } |
165 | 169 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 .heap-snapshot-stats-name, | 238 .heap-snapshot-stats-name, |
235 .heap-snapshot-stats-size { | 239 .heap-snapshot-stats-size { |
236 display: inline-block; | 240 display: inline-block; |
237 margin-left: 6px; | 241 margin-left: 6px; |
238 } | 242 } |
239 | 243 |
240 .heap-snapshot-stats-size { | 244 .heap-snapshot-stats-size { |
241 float: right; | 245 float: right; |
242 text-align: right; | 246 text-align: right; |
243 } | 247 } |
OLD | NEW |