From a455c4c58e4cdb73be605b67161a865eedf63f5e Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Wed, 3 Sep 2014 12:54:38 +1000 Subject: [PATCH] go.tools/dashboard/app: drop green coloring from perf dashboard Fixes golang/go#8624. LGTM=dave, aram R=dvyukov, dave, aram CC=golang-codereviews https://golang.org/cl/140840043 --- dashboard/app/static/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/app/static/style.css b/dashboard/app/static/style.css index 47415135..b99892aa 100644 --- a/dashboard/app/static/style.css +++ b/dashboard/app/static/style.css @@ -197,7 +197,7 @@ table thead tr { text-overflow: ellipsis; } -.good { text-decoration: none; text-shadow: 1px 1px 0 #BBF8AB; color: #000000; background: #38FF38;} +.good { text-decoration: none; color: #000000; } .bad { text-decoration: none; text-shadow: 1px 1px 0 #000000; color: #FFFFFF; background: #E70000;} .noise { text-decoration: none; color: #888; } .fail { color: #C00; }