diff options
| author | Cesar G <prototech91@gmail.com> | 2014-05-15 13:43:08 -0700 |
|---|---|---|
| committer | Cesar G <prototech91@gmail.com> | 2014-05-27 07:17:46 -0700 |
| commit | d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2 (patch) | |
| tree | 38cadcb85043722a3c4e9c51edce93fd0e71d02d /phpBB/styles/prosilver/template/mcp_topic.html | |
| parent | 00ff33c9b42479bee386cd45e863cb0bfe25a882 (diff) | |
| download | forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.tar forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.tar.gz forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.tar.bz2 forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.tar.xz forums-d3b9c87b420f0deeeffdb02cec6cd46f9f5a25b2.zip | |
[ticket/12155] Use the new .button class as the basis for the post buttons.
PHPBB3-12155
Diffstat (limited to 'phpBB/styles/prosilver/template/mcp_topic.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/mcp_topic.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_topic.html b/phpBB/styles/prosilver/template/mcp_topic.html index bfe18579a6..f7c3656ef4 100644 --- a/phpBB/styles/prosilver/template/mcp_topic.html +++ b/phpBB/styles/prosilver/template/mcp_topic.html @@ -96,7 +96,18 @@ <div class="inner"> <div class="postbody" id="pr{postrow.POST_ID}"> - <ul class="profile-icons"><li class="info-icon"><a href="{postrow.U_POST_DETAILS}" title="{L_POST_DETAILS}"><span>{L_POST_DETAILS}</span></a></li><li><label for="post_id_list_select_{postrow.POST_ID}">{L_SELECT}{L_COLON} <input type="checkbox" id="post_id_list_select_{postrow.POST_ID}" name="post_id_list[]" value="{postrow.POST_ID}"<!-- IF postrow.S_CHECKED --> checked="checked"<!-- ENDIF --> /></label></li></ul> + <ul class="post-buttons"> + <li class="info-icon"> + <a href="{postrow.U_POST_DETAILS}" title="{L_POST_DETAILS}" class="button icon-button"> + <span>{L_POST_DETAILS}</span> + </a> + </li> + <li> + <label for="post_id_list_select_{postrow.POST_ID}">{L_SELECT}{L_COLON} + <input type="checkbox" id="post_id_list_select_{postrow.POST_ID}" name="post_id_list[]" value="{postrow.POST_ID}"<!-- IF postrow.S_CHECKED --> checked="checked"<!-- ENDIF --> /> + </label> + </li> + </ul> <h3><a href="{postrow.U_POST_DETAILS}">{postrow.POST_SUBJECT}</a></h3> <p class="author"><a href="#pr{postrow.POST_ID}">{postrow.MINI_POST_IMG}</a> {L_POSTED} {postrow.POST_DATE} {L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong><!-- IF postrow.U_MCP_DETAILS --> [ <a href="{postrow.U_MCP_DETAILS}">{L_POST_DETAILS}</a> ]<!-- ENDIF --></p> |
