Skip to content

Commit

Permalink
Merge pull request phpbb#924 from VSEphpbb/ticket/11025
Browse files Browse the repository at this point in the history
[ticket/11025] Make last topic titles in forum list Bold
  • Loading branch information
naderman committed Jul 24, 2012
2 parents efbc02a + edec4a4 commit d1e5686
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phpBB/styles/prosilver/template/forumlist_body.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}">{UNAPPROVED_IMG}</a><!-- ENDIF -->
<!-- IF forumrow.LAST_POST_TIME --><dfn>{L_LAST_POST}</dfn>
<!-- IF forumrow.S_DISPLAY_SUBJECT -->
<a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}">{forumrow.LAST_POST_SUBJECT_TRUNCATED}</a> <br />
<a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}" class="lastsubject">{forumrow.LAST_POST_SUBJECT_TRUNCATED}</a> <br />
<!-- ENDIF -->
{L_POST_BY_AUTHOR} {forumrow.LAST_POSTER_FULL}
<!-- IF not S_IS_BOT --><a href="{forumrow.U_LAST_POST}">{LAST_POST_IMG}</a> <!-- ENDIF --><br />{forumrow.LAST_POST_TIME}<!-- ELSE -->{L_NO_POSTS}<br />&nbsp;<!-- ENDIF --></span>
Expand Down
9 changes: 9 additions & 0 deletions phpBB/styles/prosilver/theme/links.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@ a.topictitle:hover {
text-decoration: underline;
}

a.lastsubject {
font-weight: bold;
text-decoration: none;
}

a.lastsubject:hover {
text-decoration: underline;
}

/* Post body links */
.postlink {
text-decoration: none;
Expand Down
2 changes: 1 addition & 1 deletion phpBB/styles/subsilver2/template/forumlist_body.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<td class="row2" align="center" nowrap="nowrap">
<!-- IF forumrow.LAST_POST_TIME -->
<!-- IF forumrow.S_DISPLAY_SUBJECT -->
<p class="topicdetails"><a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}">{forumrow.LAST_POST_SUBJECT_TRUNCATED}</a></p>
<p class="topicdetails"><a href="{forumrow.U_LAST_POST}" title="{forumrow.LAST_POST_SUBJECT}" class="lastsubject">{forumrow.LAST_POST_SUBJECT_TRUNCATED}</a></p>
<!-- ENDIF -->
<p class="topicdetails"><!-- IF forumrow.U_UNAPPROVED_TOPICS --><a href="{forumrow.U_UNAPPROVED_TOPICS}" class="imageset">{UNAPPROVED_IMG}</a>&nbsp;<!-- ENDIF -->{forumrow.LAST_POST_TIME}</p>
<p class="topicdetails">{forumrow.LAST_POSTER_FULL}
Expand Down
9 changes: 9 additions & 0 deletions phpBB/styles/subsilver2/theme/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,15 @@ a.topictitle:visited {
text-decoration: none;
}

a.lastsubject {
font-weight: bold;
text-decoration: none;
}

a.lastsubject:hover {
text-decoration: underline;
}

th a,
th a:visited {
color: #FFA34F !important;
Expand Down

0 comments on commit d1e5686

Please sign in to comment.