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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 .timeline-tree-item.selected .data.dimmed { | 258 .timeline-tree-item.selected .data.dimmed { |
259 color: rgba(255, 255, 255, 0.8); | 259 color: rgba(255, 255, 255, 0.8); |
260 pointer-events: auto; | 260 pointer-events: auto; |
261 } | 261 } |
262 | 262 |
263 .timeline-tree-item.selected .timeline-tree-item-expand-arrow { | 263 .timeline-tree-item.selected .timeline-tree-item-expand-arrow { |
264 background-color: white; | 264 background-color: white; |
265 } | 265 } |
266 | 266 |
267 #timeline-overview-events, | 267 #timeline-overview-events, |
268 #timeline-overview-memory { | 268 #timeline-overview-memory, |
| 269 #timeline-overview-power { |
269 position: absolute; | 270 position: absolute; |
270 left: 0; | 271 left: 0; |
271 right: 0; | 272 right: 0; |
272 bottom: 0; | 273 bottom: 0; |
273 top: 20px; | 274 top: 20px; |
274 z-index: 160; | 275 z-index: 160; |
275 } | 276 } |
276 | 277 |
277 #timeline-overview-memory { | 278 #timeline-overview-memory, |
| 279 #timeline-overview-power { |
278 top: 25px; | 280 top: 25px; |
279 } | 281 } |
280 | 282 |
281 #timeline-overview-pane { | 283 #timeline-overview-pane { |
282 flex: 0 0 80px; | 284 flex: 0 0 80px; |
283 position: relative; | 285 position: relative; |
284 overflow: hidden; | 286 overflow: hidden; |
285 } | 287 } |
286 | 288 |
287 #timeline-overview-container { | 289 #timeline-overview-container { |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
467 } | 469 } |
468 | 470 |
469 .timeline-overview-sidebar-frames .icon { | 471 .timeline-overview-sidebar-frames .icon { |
470 -webkit-mask-position: -160px -48px; | 472 -webkit-mask-position: -160px -48px; |
471 } | 473 } |
472 | 474 |
473 .timeline-overview-sidebar-memory .icon { | 475 .timeline-overview-sidebar-memory .icon { |
474 -webkit-mask-position: -224px -48px; | 476 -webkit-mask-position: -224px -48px; |
475 } | 477 } |
476 | 478 |
| 479 .timeline-overview-sidebar-power .icon { |
| 480 -webkit-mask-position: -64px -120px; |
| 481 } |
| 482 |
477 .memory-graph-label { | 483 .memory-graph-label { |
478 position: absolute; | 484 position: absolute; |
479 left: 5px; | 485 left: 5px; |
480 font-size: 9px; | 486 font-size: 9px; |
481 color: rgb(50%, 50%, 50%); | 487 color: rgb(50%, 50%, 50%); |
482 white-space: nowrap; | 488 white-space: nowrap; |
483 } | 489 } |
484 | 490 |
485 .max.memory-graph-label { | 491 .max.memory-graph-label { |
486 top: 5px; | 492 top: 5px; |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
801 display: none; | 807 display: none; |
802 } | 808 } |
803 | 809 |
804 .timeline-flamechart-view .flame-chart-main-pane .resources-divider-label { | 810 .timeline-flamechart-view .flame-chart-main-pane .resources-divider-label { |
805 text-align: center; | 811 text-align: center; |
806 } | 812 } |
807 | 813 |
808 .timeline-flamechart { | 814 .timeline-flamechart { |
809 overflow: hidden; | 815 overflow: hidden; |
810 } | 816 } |
OLD | NEW |