From 05a5eda3d15cae708108c7d5df2cda976a65f59b Mon Sep 17 00:00:00 2001 From: mark_story Date: Wed, 17 Sep 2008 12:35:39 +0000 Subject: [PATCH] Adding CSS for skipped test icon to test suite. git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7614 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/tests/lib/header.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cake/tests/lib/header.php b/cake/tests/lib/header.php index 109462c45..9a9b5b76c 100644 --- a/cake/tests/lib/header.php +++ b/cake/tests/lib/header.php @@ -43,9 +43,11 @@ ul.tests li span { font-size:14px; text-transform: uppercase; display:block; color: black; font-weight: bold; } ul.tests li.pass span, ul.tests li.skipped span { display:inline;} ul.tests li.fail span { color: red; } + ul.tests li.pass span { color: green; } + ul.tests li.skipped span { color: navy; } ul.tests li.fail {background: url(http://cakephp.org/img/test-fail-icon.png) top left no-repeat} ul.tests li.pass {background: url(http://cakephp.org/img/test-pass-icon.png) top left no-repeat;} - ul.tests li.pass span { color: green; } + ul.tests li.skipped {background: url(http://cakephp.org/img/test-skip-icon.png) top left no-repeat;} ul.tests li div { margin: 5px 0 8px 0; } ul.tests li div.msg { font-weight: bold; }