Clean up the appdb main page. Update top-X lists to be inside of colored DIVs so the sections
can be easily distinguished. Remove unnecessary text to make the page easier to read.
This commit is contained in:
@@ -62,3 +62,8 @@ div.info_container { margin:6px; border: 1px solid; }
|
||||
div.info_contents { padding:10px; background-color: #eee; }
|
||||
div.title_class { font-weight: bold; border-bottom: 1px solid; padding: 4px;
|
||||
font-size: 140%; background-color: #ddd; }
|
||||
|
||||
/* classes for the main page */
|
||||
div.rating_header { padding: 8px; }
|
||||
div.rating_title { padding-bottom: 4px; font-weight: bold; font-size: 160%; }
|
||||
div.topx_style { padding:7px; margin:6px; border:2px solid; }
|
||||
|
||||
47
index.php
47
index.php
@@ -54,9 +54,6 @@ if(!$_SESSION['current']->isLoggedIn())
|
||||
|
||||
}
|
||||
?>
|
||||
<p>
|
||||
If you have screenshots or links to contribute, please browse the database and use the AppDB interface to send us your contributions (any member can send screenshots; if you want to send how-to's or other information, you can either enroll to be a maintainer or post this information as a comment for the application of interest).
|
||||
</p>
|
||||
<?php
|
||||
|
||||
$iNumApps = version::objectGetEntriesCount(false, false);
|
||||
@@ -84,12 +81,14 @@ If you have screenshots or links to contribute, please browse the database and u
|
||||
|
||||
<br /><br />
|
||||
|
||||
<h2>Top Voted Applications</h2>
|
||||
|
||||
<p>This is a list of applications that are known to be working well and for which many users have voted.</p>
|
||||
|
||||
<h3>The Top-10 <a href="browse_by_rating.php?sRating=Platinum">Platinum</a> List</h3>
|
||||
<p>Only applications which install and run flawlessly on an out-of-the-box Wine installation make it to the Platinum list.</p>
|
||||
<div class="topx_style platinum">
|
||||
<div class="rating_header">
|
||||
<div class="rating_title">
|
||||
Top-10 <a href="browse_by_rating.php?sRating=Platinum">Platinum</a> List
|
||||
</div>
|
||||
Applications which install and run flawlessly on an out-of-the-box Wine installation
|
||||
</div>
|
||||
<div>
|
||||
<table class="platinum">
|
||||
<tr class="rowtitle">
|
||||
<th>Application</th><th>Description</th><th>Screenshot</th>
|
||||
@@ -98,10 +97,18 @@ If you have screenshots or links to contribute, please browse the database and u
|
||||
outputTopXRowAppsFromRating('Platinum', 10);
|
||||
?>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
|
||||
<h3>The Top-10 <a href="browse_by_rating.php?sRating=Gold">Gold</a> List</h3>
|
||||
<p>Applications that work flawlessly with some DLL overrides or other settings, crack etc. make it to the Gold list.</p>
|
||||
<div class="topx_style gold">
|
||||
<div class="rating_header">
|
||||
<div class="rating_title">
|
||||
Top-10 <a href="browse_by_rating.php?sRating=Gold">Gold</a> List
|
||||
</div>
|
||||
Applications that work flawlessly with some special configuration
|
||||
</div>
|
||||
<div>
|
||||
<table class="gold">
|
||||
<tr class="rowtitle">
|
||||
<th>Application</th><th>Description</th><th>Screenshot</th>
|
||||
@@ -110,18 +117,28 @@ If you have screenshots or links to contribute, please browse the database and u
|
||||
outputTopXRowAppsFromRating('Gold', 10);
|
||||
?>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<br />
|
||||
|
||||
<h3>The Top-10 <a href="browse_by_rating.php?sRating=Silver">Silver List</a></h3>
|
||||
<p>The Silver list contains apps which we hope we can easily fix so they make it to Gold status.</p>
|
||||
<table class=silver>
|
||||
<tr class=rowtitle>
|
||||
<div class="topx_style silver">
|
||||
<div class="rating_header">
|
||||
<div class="rating_title">
|
||||
Top-10 <a href="browse_by_rating.php?sRating=Silver">Silver List</a>
|
||||
</div>
|
||||
Applications with minor issues that do not affect typical usage
|
||||
</div>
|
||||
<div>
|
||||
<table class="silver">
|
||||
<tr class="rowtitle">
|
||||
<th>Application</th><th>Description</th><th>Screenshot</th>
|
||||
</tr>
|
||||
<?php
|
||||
outputTopXRowAppsFromRating('Silver', 10);
|
||||
?>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<br /><br />
|
||||
|
||||
|
||||
Reference in New Issue
Block a user