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

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

Issue 2174803002: [turbolizer] Add support for showing perf profiling information. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: [turbolizer] Add support for showing perf profiling information. 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/index.html ('k') | tools/turbolizer/turbo-visualizer.js » ('j') | 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 #disassembly-collapse { 275 #disassembly-collapse {
276 right: 0; 276 right: 0;
277 } 277 }
278 278
279 #source-collapse { 279 #source-collapse {
280 left: 0; 280 left: 0;
281 } 281 }
282 282
283 #graph-toolbox-anchor { 283 #graph-toolbox-anchor {
284 height: 0px; 284 height: 0px;
285
danno 2016/07/28 08:45:42 nit: Please remove this stray change.
285 } 286 }
286 287
287 #graph-toolbox { 288 #graph-toolbox {
288 position: relative; 289 position: relative;
289 top: 1em; 290 top: 1em;
290 left: 0.7em; 291 left: 0.7em;
291 border: 2px solid #eee8d5; 292 border: 2px solid #eee8d5;
292 border-radius: 5px; 293 border-radius: 5px;
293 padding: 0.7em; 294 padding: 0.7em;
294 z-index: 5; 295 z-index: 5;
295 background: rgba(100%, 100%, 100%, 0.7); 296 background: rgba(100%, 100%, 100%, 0.7);
296 } 297 }
297 298
299 #disassembly-toolbox {
300 position: relative;
301 top: 1em;
302 left: 0.7em;
303 border: 2px solid #eee8d5;
304 border-radius: 5px;
305 padding: 0.7em;
306 z-index: 5;
307 }
308
298 #load-file { 309 #load-file {
299 position: absolute; 310 position: absolute;
300 top: 0; 311 top: 0;
301 right: 0; 312 right: 0;
302 margin-top: 0.5em; 313 margin-top: 0.5em;
303 margin-right: 0.5em; 314 margin-right: 0.5em;
304 z-index: 5; 315 z-index: 5;
305 opacity: 0.7; 316 opacity: 0.7;
306 } 317 }
307 318
308 #load-file input { 319 #load-file input {
309 background: #A0A0A0; 320 background: #A0A0A0;
310 border-radius: 5px; 321 border-radius: 5px;
311 padding: 0.5em; 322 padding: 0.5em;
312 } 323 }
313 324
314 #hidden-file-upload{ 325 #hidden-file-upload {
315 display: none; 326 display: none;
316 } 327 }
317 328
329 .prof-low {
330 color: #888;
331 }
332
333 .prof-med {
334 color: #080;
335 }
336
337 .prof-high {
338 color: #800;
339 }
OLDNEW
« no previous file with comments | « tools/turbolizer/index.html ('k') | tools/turbolizer/turbo-visualizer.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698