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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui_lazy/flameChart.css

Issue 1468163003: DevTools: Make tracking entry info on flame chart work with pan/zoom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
OLDNEW
1 .flame-chart-main-pane { 1 .flame-chart-main-pane {
2 overflow: hidden; 2 overflow: hidden;
3 } 3 }
4 4
5 .flame-chart-marker-highlight-element { 5 .flame-chart-marker-highlight-element {
6 position: absolute; 6 position: absolute;
7 top: 0; 7 top: 0;
8 height: 20px; 8 height: 20px;
9 width: 4px; 9 width: 4px;
10 margin: 0 -2px; 10 margin: 0 -2px;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 53
54 .flame-chart-selection-overlay .time-span { 54 .flame-chart-selection-overlay .time-span {
55 white-space: nowrap; 55 white-space: nowrap;
56 position: absolute; 56 position: absolute;
57 left: 0; 57 left: 0;
58 right: 0; 58 right: 0;
59 bottom: 0; 59 bottom: 0;
60 } 60 }
61 61
62 .flame-chart-entry-info:not(:empty) { 62 .flame-chart-entry-info:not(:empty) {
63 z-index: 100; 63 z-index: 200;
64 margin: 6px 10px; 64 margin: 6px 10px;
65 position: absolute; 65 position: absolute;
66 background-color: white; 66 background-color: white;
67 pointer-events: none; 67 pointer-events: none;
68 padding: 2px; 68 padding: 2px;
69 box-shadow: hsla(0, 0%, 0%, 0.4) 1px 1px 8px; 69 box-shadow: hsla(0, 0%, 0%, 0.4) 1px 1px 8px;
70 } 70 }
71 71
72 .flame-chart-entry-info table tr td:empty { 72 .flame-chart-entry-info table tr td:empty {
73 padding: 0; 73 padding: 0;
(...skipping 12 matching lines...) Expand all
86 margin-right: 5px; 86 margin-right: 5px;
87 } 87 }
88 88
89 .flame-chart-entry-info table tr td span.timeline-network-info-duration { 89 .flame-chart-entry-info table tr td span.timeline-network-info-duration {
90 color: darkgreen; 90 color: darkgreen;
91 } 91 }
92 92
93 .flame-chart-entry-info table tr td span.timeline-network-info-method { 93 .flame-chart-entry-info table tr td span.timeline-network-info-method {
94 color: darkblue; 94 color: darkblue;
95 } 95 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698