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

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

Issue 183763036: TimelineFlameChart: selectRecord implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: done Created 6 years, 9 months 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 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 overflow: hidden; 797 overflow: hidden;
798 } 798 }
799 799
800 .timeline-flamechart-view #timeline-overview-grid { 800 .timeline-flamechart-view #timeline-overview-grid {
801 display: none; 801 display: none;
802 } 802 }
803 803
804 .timeline-flamechart-view .flame-chart-main-pane .resources-divider-label { 804 .timeline-flamechart-view .flame-chart-main-pane .resources-divider-label {
805 text-align: center; 805 text-align: center;
806 } 806 }
807
808 .timeline-flamechart-selected-element {
809 position: absolute;
810 opacity: 0.5;
811 pointer-events: none;
812 border-color: red;
alph 2014/03/05 12:41:10 May I take a look at a screenshot? Might that happ
813 border-width: 2px;
814 border-style: solid;
815 }
816
817 .timeline-flamechart {
818 overflow: hidden;
819 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698