Fix alignment.

This commit is contained in:
Simon MacMullen 2011-02-15 11:51:32 +00:00
parent 9305abb516
commit 4a26f6b4f8
2 changed files with 3 additions and 3 deletions

View File

@ -48,8 +48,8 @@ table.facts th, table.facts td { vertical-align: top; padding: 0 10px 10px 10px;
table.facts-long th { text-align: right; font-weight: bold; }
table.facts-long th, table.facts-long td { vertical-align: top; }
table.mini th { border: none; padding: 2px; text-align: right; }
table.mini td { border: none; padding: 2px; }
table.mini th { border: none; padding: 0 2px 2px 2px; text-align: right; }
table.mini td { border: none; padding: 0 2px 2px 2px; }
tr.alt1>td { background: #eee; }
tr.alt2>td { background: #fff; }

View File

@ -57,7 +57,7 @@ function fmt_parameters(obj) {
}
var args = fmt_table_short(obj.arguments);
if (args != '') {
res += '<p>' + args + '</p>';
res += args;
}
return res;
}