Adding testsuite icons to the repo, so they are local assets instead of remote ones.
Fixes #1708
BIN
app/webroot/img/test-error-icon.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
app/webroot/img/test-fail-icon.png
Normal file
After Width: | Height: | Size: 496 B |
BIN
app/webroot/img/test-pass-icon.png
Normal file
After Width: | Height: | Size: 783 B |
BIN
app/webroot/img/test-skip-icon.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
cake/console/templates/skel/webroot/img/test-error-icon.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
cake/console/templates/skel/webroot/img/test-fail-icon.png
Normal file
After Width: | Height: | Size: 496 B |
BIN
cake/console/templates/skel/webroot/img/test-pass-icon.png
Normal file
After Width: | Height: | Size: 783 B |
BIN
cake/console/templates/skel/webroot/img/test-skip-icon.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
|
@ -50,24 +50,24 @@
|
|||
ul.tests li.error,
|
||||
ul.tests li.skipped,
|
||||
ul.tests li.fail {
|
||||
background: #fff2f2 url(http://cakephp.org/img/test-fail-icon.png) 5px 5px no-repeat;
|
||||
background: #fff2f2 url(<?php echo $baseDir; ?>img/test-fail-icon.png) 5px 5px no-repeat;
|
||||
border-top: 1px dotted red;
|
||||
border-bottom: 1px dotted red;
|
||||
padding:5px 10px 2px 25px;
|
||||
}
|
||||
ul.tests li.pass {
|
||||
background-color: #f2fff2;
|
||||
background-image: url(http://cakephp.org/img/test-pass-icon.png);
|
||||
background-image: url(<?php echo $baseDir; ?>img/test-pass-icon.png);
|
||||
border-color:green;
|
||||
}
|
||||
ul.tests li.skipped {
|
||||
background-color: #edf1ff;
|
||||
background-image: url(http://cakephp.org/img/test-skip-icon.png);
|
||||
background-image: url(<?php echo $baseDir; ?>img/test-skip-icon.png);
|
||||
border-color:navy;
|
||||
}
|
||||
ul.tests li.error {
|
||||
background-color: #ffffe5;
|
||||
background-image: url(http://cakephp.org/img/test-error-icon.png);
|
||||
background-image: url(<?php echo $baseDir; ?>img/test-error-icon.png);
|
||||
border-color: #DF6300;
|
||||
}
|
||||
ul.tests li div { margin: 5px 0 8px 0; }
|
||||
|
|