smaller icons

This commit is contained in:
Roland Gruber 2010-05-31 18:10:36 +00:00
parent 0c0c9968a3
commit 73fa3cdead
2 changed files with 5 additions and 5 deletions

View File

@ -121,8 +121,8 @@ echo "</html>\n";
* @return boolean true, if errors occured * @return boolean true, if errors occured
*/ */
function lamTestLamdaemon($command, $stopTest, $handle, $testText) { function lamTestLamdaemon($command, $stopTest, $handle, $testText) {
$okImage = "<img src=\"../../graphics/pass.png\" alt=\"\">\n"; $okImage = "<img width=16 height=16 src=\"../../graphics/pass.png\" alt=\"\">\n";
$failImage = "<img src=\"../../graphics/fail.png\" alt=\"\">\n"; $failImage = "<img width=16 height=16 src=\"../../graphics/fail.png\" alt=\"\">\n";
// run lamdaemon and get user quotas // run lamdaemon and get user quotas
if (!$stopTest) { if (!$stopTest) {
echo "<tr class=\"userlist\">\n<td nowrap>" . $testText . "&nbsp;&nbsp;</td>\n"; echo "<tr class=\"userlist\">\n<td nowrap>" . $testText . "&nbsp;&nbsp;</td>\n";
@ -165,8 +165,8 @@ function lamTestLamdaemon($command, $stopTest, $handle, $testText) {
*/ */
function lamRunLamdaemonTestSuite($serverName, $serverTitle, $testQuota) { function lamRunLamdaemonTestSuite($serverName, $serverTitle, $testQuota) {
$SPLIT_DELIMITER = "###x##y##x###"; $SPLIT_DELIMITER = "###x##y##x###";
$okImage = "<img src=\"../../graphics/pass.png\" alt=\"\">\n"; $okImage = "<img width=16 height=16 src=\"../../graphics/pass.png\" alt=\"\">\n";
$failImage = "<img src=\"../../graphics/fail.png\" alt=\"\">\n"; $failImage = "<img width=16 height=16 src=\"../../graphics/fail.png\" alt=\"\">\n";
echo "<table class=\"userlist\" rules=\"none\" width=\"750\">\n"; echo "<table class=\"userlist\" rules=\"none\" width=\"750\">\n";

View File

@ -76,7 +76,7 @@ for ($t = 0; $t < sizeof($types); $t++) {
echo "<tr class=\"" . $types[$t] . "list\">\n"; echo "<tr class=\"" . $types[$t] . "list\">\n";
echo "<td style=\"padding-left:10px;\" nowrap>" . getModuleAlias($modules[$m], $types[$t]) . "</td>\n"; echo "<td style=\"padding-left:10px;\" nowrap>" . getModuleAlias($modules[$m], $types[$t]) . "</td>\n";
// icon // icon
echo "<td style=\"padding-left:10px;padding-right:10px;\"><img alt=\"\" src=\"" . $icon . "\"></td>\n"; echo "<td style=\"padding-left:10px;padding-right:10px;\"><img width=16 height=16 alt=\"\" src=\"" . $icon . "\"></td>\n";
// text // text
echo "<td width=\"100%\">" . $message . "</td>\n"; echo "<td width=\"100%\">" . $message . "</td>\n";
echo "</tr>\n"; echo "</tr>\n";