aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/templates
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-03-04 16:49:02 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-03-04 16:49:02 +0000
commit72225094f676c70401451d001c6cbb7e1f2d34d4 (patch)
treee5403a24627a1592b4864cf70359618eb222ed69 /phpBB/templates
parent5c0e4ca329de13a216054497619d9e5771344166 (diff)
downloadforums-72225094f676c70401451d001c6cbb7e1f2d34d4.tar
forums-72225094f676c70401451d001c6cbb7e1f2d34d4.tar.gz
forums-72225094f676c70401451d001c6cbb7e1f2d34d4.tar.bz2
forums-72225094f676c70401451d001c6cbb7e1f2d34d4.tar.xz
forums-72225094f676c70401451d001c6cbb7e1f2d34d4.zip
Sort on cell titles, add rank
git-svn-id: file:///svn/phpbb/trunk@3589 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates')
-rw-r--r--phpBB/templates/subSilver/memberlist_body.html18
-rw-r--r--phpBB/templates/subSilver/subSilver.css7
2 files changed, 16 insertions, 9 deletions
diff --git a/phpBB/templates/subSilver/memberlist_body.html b/phpBB/templates/subSilver/memberlist_body.html
index 0108e798da..3deedb344d 100644
--- a/phpBB/templates/subSilver/memberlist_body.html
+++ b/phpBB/templates/subSilver/memberlist_body.html
@@ -98,13 +98,13 @@ function marklist(status)
<table class="tablebg" width="100%" cellspacing="1" cellpadding="2" border="0">
<tr>
<th height="25" nowrap="nowrap">#</th>
+ <th nowrap="nowrap"><a class="th" href="{U_SORT_USERNAME}">{L_USERNAME}</a></th>
+ <th nowrap="nowrap"><a class="th" href="{U_SORT_JOINED}">{L_JOINED}</a></th>
+ <th nowrap="nowrap"><a class="th" href="{U_SORT_POSTS}">{L_POSTS}</a></th>
+ <th nowrap="nowrap">{L_RANK}</th>
<th nowrap="nowrap">{L_SEND_MESSAGE}</th>
- <th nowrap="nowrap">{L_USERNAME}</th>
- <th nowrap="nowrap">{L_EMAIL}</th>
- <th nowrap="nowrap">{L_LOCATION}</th>
- <th nowrap="nowrap">{L_JOINED}</th>
- <th nowrap="nowrap">{L_POSTS}</th>
- <th nowrap="nowrap">{L_WEBSITE}</th>
+ <th nowrap="nowrap"><a class="th" href="{U_SORT_EMAIL}">{L_EMAIL}</a></th>
+ <th nowrap="nowrap"><a class="th" href="{U_SORT_WEBSITE}">{L_WEBSITE}</a></th>
<!-- IF S_SEARCH_USER --><th width="2%" nowrap="nowrap">{L_MARK}</th><!-- ENDIF -->
</tr>
<!-- BEGIN memberrow -->
@@ -114,12 +114,12 @@ function marklist(status)
<tr class="row1">
<!-- ENDIF -->
<td class="gen" align="center">&nbsp;{memberrow.ROW_NUMBER}&nbsp;</td>
- <td class="gen" align="center">&nbsp;{memberrow.PM_IMG}&nbsp;</td>
<td class="gen" align="center"><a href="{memberrow.U_VIEWPROFILE}">{memberrow.USERNAME}</a></td>
- <td class="gen" align="center" valign="middle">&nbsp;{memberrow.EMAIL_IMG}&nbsp;</td>
- <td class="gen" align="center" valign="middle">{memberrow.FROM}</td>
<td class="gensmall" align="center" valign="middle" nowrap="nowrap">&nbsp;{memberrow.JOINED}&nbsp;</td>
<td class="gen" align="center" valign="middle">{memberrow.POSTS}</td>
+ <td class="gen" align="center" valign="middle">{memberrow.RANK_IMG}</td>
+ <td class="gen" align="center">&nbsp;{memberrow.PM_IMG}&nbsp;</td>
+ <td class="gen" align="center" valign="middle">&nbsp;{memberrow.EMAIL_IMG}&nbsp;</td>
<td class="gen" align="center">&nbsp;{memberrow.WWW_IMG}&nbsp;</td>
<!-- IF S_SEARCH_USER --><td align="center" valign="middle"><input type="checkbox" name="user" value="{memberrow.USERNAME}" /></td><!-- ENDIF -->
</tr>
diff --git a/phpBB/templates/subSilver/subSilver.css b/phpBB/templates/subSilver/subSilver.css
index 28a94302bc..a2e82e0b8a 100644
--- a/phpBB/templates/subSilver/subSilver.css
+++ b/phpBB/templates/subSilver/subSilver.css
@@ -112,6 +112,13 @@ a.copyright:hover {
text-decoration: underline;
}
+a.th:link, a.th:active, a.th:visited {
+ color: #FFA34F;
+}
+a.th:hover {
+ text-decoration: underline;
+}
+
/* --------------------------- */