From: Marc Englund Date: Mon, 7 Jan 2008 13:02:03 +0000 (+0000) Subject: warns and errors differ in color (style) X-Git-Tag: 6.7.0.beta1~5175 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5a1344a1617c7eb36cf2cfce71ee055693a8ebf0;p=vaadin-framework.git warns and errors differ in color (style) svn changeset:3389/svn branch:trunk --- 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; +}