Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: Source/devtools/front_end/timelinePanel.css

Issue 61923003: Timeline: show impl-side frames on the Timeline overview (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 .timeline-frame-overview #timeline-overview-grid { 59 .timeline-frame-overview #timeline-overview-grid {
60 display: none; 60 display: none;
61 } 61 }
62 62
63 #timeline-overview-grid .resources-dividers-label-bar { 63 #timeline-overview-grid .resources-dividers-label-bar {
64 pointer-events: auto; 64 pointer-events: auto;
65 } 65 }
66 66
67 .timeline-frame-overview .overview-grid-window, 67 .timeline-frame-overview .overview-grid-window,
68 .timeline-frame-overview .overview-grid-dividers-background { 68 .timeline-frame-overview .overview-grid-dividers-background,
69 height: 100%; 69 .timeline-frame-overview .overview-grid-window-resizer {
70 height: 15px;
70 } 71 }
71 72
72 #timeline-overview-grid #resources-graphs { 73 #timeline-overview-grid #resources-graphs {
73 position: absolute; 74 position: absolute;
74 top: 0; 75 top: 0;
75 left: 0; 76 left: 0;
76 right: 0; 77 right: 0;
77 height: 80px; 78 height: 80px;
78 } 79 }
79 80
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 598
598 @-webkit-keyframes timeline_record_highlight { 599 @-webkit-keyframes timeline_record_highlight {
599 from {background-color: rgba(255, 255, 120, 1); } 600 from {background-color: rgba(255, 255, 120, 1); }
600 to { background-color: rgba(255, 255, 120, 0); } 601 to { background-color: rgba(255, 255, 120, 0); }
601 } 602 }
602 603
603 .timeline-filters-header { 604 .timeline-filters-header {
604 flex: 0 0 23px; 605 flex: 0 0 23px;
605 overflow: hidden; 606 overflow: hidden;
606 } 607 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698