=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: index: Fix table width of the top-10s (try 2)

Alexander Nicolaysen Sørnes asornes at winehq.org
Sun Dec 29 20:56:24 CST 2013


Module: appdb
Branch: master
Commit: 033db662376eb6c1e4e80cef6e7ed0ff0fbd8271
URL:    http://source.winehq.org/git/appdb.git/?a=commit;h=033db662376eb6c1e4e80cef6e7ed0ff0fbd8271

Author: André Hentschel <nerv at 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);




More information about the wine-cvs mailing list