diff --git a/images/accept.png b/images/accept.png deleted file mode 100755 index 89c8129a..00000000 Binary files a/images/accept.png and /dev/null differ diff --git a/images/exclamation.png b/images/exclamation.png deleted file mode 100755 index c37bd062..00000000 Binary files a/images/exclamation.png and /dev/null differ diff --git a/images/fail-16.png b/images/fail-16.png new file mode 100644 index 00000000..293ee565 Binary files /dev/null and b/images/fail-16.png differ diff --git a/images/fail.png b/images/fail.png new file mode 100644 index 00000000..6724ca69 Binary files /dev/null and b/images/fail.png differ diff --git a/images/go-16.png b/images/go-16.png new file mode 100644 index 00000000..f2bd574c Binary files /dev/null and b/images/go-16.png differ diff --git a/images/go.png b/images/go.png new file mode 100644 index 00000000..0b485694 Binary files /dev/null and b/images/go.png differ diff --git a/jasmine.iws b/jasmine.iws index 43d69e1d..3a9fc028 100644 --- a/jasmine.iws +++ b/jasmine.iws @@ -101,7 +101,7 @@ - + @@ -131,7 +131,7 @@ - + @@ -534,13 +534,6 @@ - - - - - - - @@ -562,9 +555,16 @@ + + + + + + + - + diff --git a/lib/jasmine.css b/lib/jasmine.css index d9d28ed1..0c302a2c 100644 --- a/lib/jasmine.css +++ b/lib/jasmine.css @@ -15,7 +15,7 @@ p { } p.fail { - background: url( ../images/exclamation.png ) no-repeat; + background: url( ../images/fail-16.png ) no-repeat; color: red; } diff --git a/test/bootstrap.js b/test/bootstrap.js index 34069acd..b09fb77f 100755 --- a/test/bootstrap.js +++ b/test/bootstrap.js @@ -12,7 +12,7 @@ var reporter = function () { if (result) { passes++; iconElement = $('icons'); - iconElement.appendChild(new Element('img', {src: '../images/accept.png'})); + iconElement.appendChild(new Element('img', {src: '../images/go-16.png'})); } else { fails++; @@ -20,7 +20,7 @@ var reporter = function () { fails_report.show(); var iconElement = $('icons'); - iconElement.appendChild(new Element('img', {src: '../images/exclamation.png'})); + iconElement.appendChild(new Element('img', {src: '../images/fail-16.png'})); var failMessages = $('fail_messages'); var newFail = new Element('p', {'class': 'fail'});