Fix the application name column in the top 'X' lists to be 150px wide so each top 'X' list

looks uniform
This commit is contained in:
Chris Morgan
2006-06-23 04:11:50 +00:00
committed by WineHQ
parent 540a29cb5e
commit 1a6cde7f1e
2 changed files with 5 additions and 3 deletions

View File

@@ -269,9 +269,9 @@ function outputTopXRow($oRow)
$img = get_screenshot_img(null, $oRow->versionId, false); // image, disable extra formatting
echo '
<tr class="white">
<td><a href="appview.php?versionId='.$oRow->versionId.'">'.$oApp->sName.' '.$oVersion->sName.'</a></td>
<td>'.trim_description($oApp->sDescription).'</td>
<td><center>'.$img.'</center></td>
<td class="app_name"><a href="appview.php?versionId='.$oRow->versionId.'">'.$oApp->sName.' '.$oVersion->sName.'</a></td>
<td>'.trim_description($oApp->sDescription).'</td>
<td><center>'.$img.'</center></td>
</tr>';
}