Module: appdb Branch: master Commit: 033db662376eb6c1e4e80cef6e7ed0ff0fbd8271 URL: http://source.winehq.org/git/appdb.git/?a=commit;h=033db662376eb6c1e4e80cef6...
Author: André Hentschel nerv@dawncrow.de Date: Mon Dec 30 03:54:17 2013 +0100
index: Fix table width of the top-10s (try 2)
---
index.php | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/index.php b/index.php index 5e22008..c027841 100644 --- a/index.php +++ b/index.php @@ -94,9 +94,9 @@ if(!$_SESSION['current']->isLoggedIn()) Applications which install and run flawlessly on an out-of-the-box Wine installation </div> <div> - <table class="platinum"> + <table class="platinum" width="100%"> <tr class="rowtitle"> - <th>Application</th><th>Description</th><th>Screenshot</th> + <th width="10%">Application</th><th width="80%">Description</th><th width="10%">Screenshot</th> </tr> <?php outputTopXRowAppsFromRating('Platinum', 10); @@ -114,9 +114,9 @@ if(!$_SESSION['current']->isLoggedIn()) Applications that work flawlessly with some special configuration </div> <div> - <table class="gold"> + <table class="gold" width="100%"> <tr class="rowtitle"> - <th>Application</th><th>Description</th><th>Screenshot</th> + <th width="10%">Application</th><th width="80%">Description</th><th width="10%">Screenshot</th> </tr> <?php outputTopXRowAppsFromRating('Gold', 10); @@ -134,9 +134,9 @@ if(!$_SESSION['current']->isLoggedIn()) Applications with minor issues that do not affect typical usage </div> <div> - <table class="silver"> + <table class="silver" width="100%"> <tr class="rowtitle"> - <th>Application</th><th>Description</th><th>Screenshot</th> + <th width="10%">Application</th><th width="80%">Description</th><th width="10%">Screenshot</th> </tr> <?php outputTopXRowAppsFromRating('Silver', 10);