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_post.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_post.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/mcp_post.html | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_post.html b/phpBB/styles/prosilver/template/mcp_post.html index 2b4ebec5c8..49aa00de1c 100644 --- a/phpBB/styles/prosilver/template/mcp_post.html +++ b/phpBB/styles/prosilver/template/mcp_post.html @@ -50,13 +50,16 @@ <div class="postbody"> <h3><a href="{U_VIEW_POST}">{POST_SUBJECT}</a></h3> - <!-- IF U_EDIT --> - <ul class="profile-icons"> - <li class="edit-icon"><a href="{U_EDIT}" title="{L_EDIT_POST}"><span>{L_EDIT_POST}</span></a></li> + <ul class="post-buttons"> + <li id="expand"> + <a href="#post_details" onclick="viewableArea(getElementById('post_details'), true); var rev_text = getElementById('expand').getElementsByTagName('a').item(0).firstChild; if (rev_text.data == '{LA_EXPAND_VIEW}'){rev_text.data = '{LA_COLLAPSE_VIEW}'; } else if (rev_text.data == '{LA_COLLAPSE_VIEW}'){rev_text.data = '{LA_EXPAND_VIEW}'}; return false;"> + {L_EXPAND_VIEW} + </a> + </li> + <!-- IF U_EDIT --> + <li class="edit-icon"><a href="{U_EDIT}" title="{L_EDIT_POST}" class="button icon-button"><span>{L_EDIT_POST}</span></a></li> + <!-- ENDIF --> </ul> - <!-- ENDIF --> - - <span class="right-box" id="expand"><a href="#post_details" onclick="viewableArea(getElementById('post_details'), true); var rev_text = getElementById('expand').getElementsByTagName('a').item(0).firstChild; if (rev_text.data == '{LA_EXPAND_VIEW}'){rev_text.data = '{LA_COLLAPSE_VIEW}'; } else if (rev_text.data == '{LA_COLLAPSE_VIEW}'){rev_text.data = '{LA_EXPAND_VIEW}'}; return false;">{L_EXPAND_VIEW}</a></span> <!-- IF S_PM --> <p class="author"> |
