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

Commit

Permalink
Highlight results as they are append to the page
Browse files Browse the repository at this point in the history
  • Loading branch information
ericboehs committed Feb 2, 2016
1 parent 913fc0f commit 24cb1a2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions includes.css
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 24cb1a2

Please sign in to comment.