OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
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 | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 | 257 |
258 .text-button.load-profile { | 258 .text-button.load-profile { |
259 margin-left: 20px; | 259 margin-left: 20px; |
260 } | 260 } |
261 | 261 |
262 .text-button.load-profile.multi-target { | 262 .text-button.load-profile.multi-target { |
263 display: block; | 263 display: block; |
264 margin-top: 14px; | 264 margin-top: 14px; |
265 margin-left: 0px; | 265 margin-left: 0px; |
266 } | 266 } |
| 267 |
| 268 .cpu-profile-flame-chart-overview-container { |
| 269 overflow: hidden; |
| 270 position: absolute; |
| 271 top: 0; |
| 272 width: 100%; |
| 273 height: 80px; |
| 274 } |
| 275 |
| 276 #cpu-profile-flame-chart-overview-container { |
| 277 border-bottom: 1px solid rgba(0, 0, 0, 0.3); |
| 278 } |
| 279 |
| 280 .cpu-profile-flame-chart-overview-canvas { |
| 281 position: absolute; |
| 282 top: 20px; |
| 283 left: 0; |
| 284 right: 0; |
| 285 bottom: 0; |
| 286 } |
| 287 |
| 288 #cpu-profile-flame-chart-overview-grid .resources-dividers-label-bar { |
| 289 pointer-events: auto; |
| 290 } |
| 291 |
| 292 .cpu-profile-flame-chart-overview-pane { |
| 293 flex: 0 0 80px !important; |
| 294 } |
OLD | NEW |