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

Side by Side Diff: tools/turbolizer/turbo-visualizer.css

Issue 2230313002: [turbolizer] Enlarge node labels and bubbles. Fix dead node display on old JSON. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@t-p2-base
Patch Set: Fix arrowheads. Fix dead nodes on old JSONs. Created 4 years, 4 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
« no previous file with comments | « tools/turbolizer/node.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 .visible-transition { 1 .visible-transition {
2 transition-delay: 0s; 2 transition-delay: 0s;
3 transition-duration: 1s; 3 transition-duration: 1s;
4 transition-property: all; 4 transition-property: all;
5 transition-timing-function: ease; 5 transition-timing-function: ease;
6 } 6 }
7 7
8 .collapse-pane { 8 .collapse-pane {
9 background: #A0A0A0; 9 background: #A0A0A0;
10 bottom: 0; 10 bottom: 0;
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 .prof-low { 332 .prof-low {
333 color: #888; 333 color: #888;
334 } 334 }
335 335
336 .prof-med { 336 .prof-med {
337 color: #080; 337 color: #080;
338 } 338 }
339 339
340 .prof-high { 340 .prof-high {
341 color: #800; 341 color: #800;
342 }
343
344 tspan {
345 font-size: 500%;
346 font-family: sans-serif;
347 }
348
349 text {
350 dominant-baseline: text-before-edge;
342 } 351 }
OLDNEW
« no previous file with comments | « tools/turbolizer/node.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698