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

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

Issue 1474593002: DevTools: Make tracking flamechart info never go outside the window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove extra assignments. 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
65 position: absolute; 64 position: absolute;
66 background-color: white; 65 background-color: white;
67 pointer-events: none; 66 pointer-events: none;
68 padding: 2px; 67 padding: 2px;
69 box-shadow: hsla(0, 0%, 0%, 0.4) 1px 1px 8px; 68 box-shadow: hsla(0, 0%, 0%, 0.4) 1px 1px 8px;
70 } 69 }
71 70
72 .flame-chart-entry-info table tr td:empty { 71 .flame-chart-entry-info table tr td:empty {
73 padding: 0; 72 padding: 0;
74 } 73 }
(...skipping 11 matching lines...) Expand all
86 margin-right: 5px; 85 margin-right: 5px;
87 } 86 }
88 87
89 .flame-chart-entry-info table tr td span.timeline-network-info-duration { 88 .flame-chart-entry-info table tr td span.timeline-network-info-duration {
90 color: darkgreen; 89 color: darkgreen;
91 } 90 }
92 91
93 .flame-chart-entry-info table tr td span.timeline-network-info-method { 92 .flame-chart-entry-info table tr td span.timeline-network-info-method {
94 color: darkblue; 93 color: darkblue;
95 } 94 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/ui_lazy/FlameChart.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698