diff options
Diffstat (limited to 'phpBB/templates')
-rw-r--r-- | phpBB/templates/subSilver/memberlist_body.html | 18 | ||||
-rw-r--r-- | phpBB/templates/subSilver/subSilver.css | 7 |
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"> {memberrow.ROW_NUMBER} </td> - <td class="gen" align="center"> {memberrow.PM_IMG} </td> <td class="gen" align="center"><a href="{memberrow.U_VIEWPROFILE}">{memberrow.USERNAME}</a></td> - <td class="gen" align="center" valign="middle"> {memberrow.EMAIL_IMG} </td> - <td class="gen" align="center" valign="middle">{memberrow.FROM}</td> <td class="gensmall" align="center" valign="middle" nowrap="nowrap"> {memberrow.JOINED} </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"> {memberrow.PM_IMG} </td> + <td class="gen" align="center" valign="middle"> {memberrow.EMAIL_IMG} </td> <td class="gen" align="center"> {memberrow.WWW_IMG} </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; +} + /* --------------------------- */ |