Skip to content

Commit

Permalink
add highlight effect on jump-to-node
Browse files Browse the repository at this point in the history
add computational complexity + memory requirements
add TOTAL row in summary table
pretty-print large numbers
  • Loading branch information
dgschwend committed Mar 22, 2016
1 parent fdd4bc9 commit 64b66d4
Show file tree
Hide file tree
Showing 4 changed files with 286 additions and 63 deletions.
12 changes: 12 additions & 0 deletions assets/css/netscope.css
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,18 @@ h1, h2, h3 {
color: #FFF;
}

@-webkit-keyframes highlight {
from {color: #fff;}
to {color: #000;}
}
@keyframes highlight {
from {color: #fff;}
to {color: #000;}
}
.node-highlight {
animation: highlight 0.3s linear 0 4 alternate
}

.edgePath path {
stroke: #554037;
fill: #554037;
Expand Down
Loading

0 comments on commit 64b66d4

Please sign in to comment.