From 5a1344a1617c7eb36cf2cfce71ee055693a8ebf0 Mon Sep 17 00:00:00 2001 From: Marc Englund Date: Mon, 7 Jan 2008 13:02:03 +0000 Subject: [PATCH] warns and errors differ in color (style) svn changeset:3389/svn branch:trunk --- .../ITMILL/themes/testingtools/styles.css | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/WebContent/ITMILL/themes/testingtools/styles.css b/WebContent/ITMILL/themes/testingtools/styles.css index dc8b8caca6..403dfa89cd 100644 --- a/WebContent/ITMILL/themes/testingtools/styles.css +++ b/WebContent/ITMILL/themes/testingtools/styles.css @@ -8,6 +8,9 @@ .resulttable TR.error { background-color: #ffeeee; } +.resulttable TR.warn { + background-color: #ffffee; +} .resulttable TR.even { background-color: #eeeeee; } @@ -22,6 +25,9 @@ .resulttable .error .line A { color: red; } +.resulttable .warn .line A { + color: green; +} .resulttable .code { white-space: nowrap; @@ -29,8 +35,13 @@ border-right: 1px solid #cccccc; padding: 3px 3px 3px 7px; } -.resulttable .msg { - color: red; +.resulttable .msg { padding: 5px 10px 5px 10px; white-space: nowrap; -} \ No newline at end of file +} +.resulttable .msg span { + color: green; +} +.resulttable .msg span.err { + color: red; +}