Skip to content
This repository has been archived by the owner on Sep 24, 2018. It is now read-only.

Commit

Permalink
Merge pull request #25 from ericboehs/master
Browse files Browse the repository at this point in the history
Highlight results as they are appended to the page
  • Loading branch information
yellis committed Feb 23, 2016
2 parents 913fc0f + 24cb1a2 commit b7889eb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions includes.css
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ float:right;
z-index: 2147483640;
border-bottom: 1px solid #888888;
background-color: #fff;
animation: new-entry 5s 1;
padding: 4px 7px;
text-align: right;
cursor: pointer;
Expand Down Expand Up @@ -493,3 +494,12 @@ table.profiler-results-index thead tr th { padding: 5px 15px;}
table.profiler-results-index td {padding: 8px;}
.profiler-results-index-date {font-size: 11px; color: #666;}
.profiler-results-index-time {text-align:center;}

@keyframes new-entry {
0% {
background-color: #FFFAAA;
}
100% {
background-color: #FFF;
}
}

0 comments on commit b7889eb

Please sign in to comment.