1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-19 15:17:16 +01:00

[ticket/11025] Replace <b> with <strong> and/or class for semantic styling in subsilver2

PHPBB3-11025
This commit is contained in:
Matt Friedman 2012-07-23 18:43:28 -07:00
parent 8c337a260b
commit 4ff644890a
2 changed files with 6 additions and 1 deletions

View File

@ -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}"><strong>{forumrow.LAST_POST_SUBJECT_TRUNCATED}</strong></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}

View File

@ -422,6 +422,11 @@ a.topictitle:visited {
text-decoration: none;
}
a.lastsubject {
font-weight: bold;
text-decoration: none;
}
th a,
th a:visited {
color: #FFA34F !important;