From 24cb1a27959abb825801207ce99aae6a9f82a2ff Mon Sep 17 00:00:00 2001 From: Eric Boehs Date: Tue, 2 Feb 2016 12:25:05 -0600 Subject: [PATCH] Highlight results as they are append to the page https://github.com/MiniProfiler/ui/issues/24 --- includes.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/includes.css b/includes.css index 9100433..d5da49f 100644 --- a/includes.css +++ b/includes.css @@ -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; @@ -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; + } +}