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

Highlight results as they are appended to the page #25

Merged
merged 1 commit into from
Feb 23, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
}
}