diff options
| author | Cesar G <prototech91@gmail.com> | 2014-05-15 13:22:43 -0700 |
|---|---|---|
| committer | Cesar G <prototech91@gmail.com> | 2014-05-27 07:17:46 -0700 |
| commit | 00ff33c9b42479bee386cd45e863cb0bfe25a882 (patch) | |
| tree | 7327baee6bac3a30d8a739b61909ac8f219ae3a2 /phpBB/styles/prosilver/template/ucp_pm_message_header.html | |
| parent | 03d3762d52a5c63168311fb103e517a7ed36c83c (diff) | |
| download | forums-00ff33c9b42479bee386cd45e863cb0bfe25a882.tar forums-00ff33c9b42479bee386cd45e863cb0bfe25a882.tar.gz forums-00ff33c9b42479bee386cd45e863cb0bfe25a882.tar.bz2 forums-00ff33c9b42479bee386cd45e863cb0bfe25a882.tar.xz forums-00ff33c9b42479bee386cd45e863cb0bfe25a882.zip | |
[ticket/12155] Move existing button style to a more generic class.
PHPBB3-12155
Diffstat (limited to 'phpBB/styles/prosilver/template/ucp_pm_message_header.html')
| -rw-r--r-- | phpBB/styles/prosilver/template/ucp_pm_message_header.html | 32 |
1 files changed, 27 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_pm_message_header.html b/phpBB/styles/prosilver/template/ucp_pm_message_header.html index 840eba4c83..6ad71dcab6 100644 --- a/phpBB/styles/prosilver/template/ucp_pm_message_header.html +++ b/phpBB/styles/prosilver/template/ucp_pm_message_header.html @@ -8,16 +8,38 @@ <!-- IF FOLDER_STATUS and FOLDER_MAX_MESSAGES neq 0 --><p>{FOLDER_STATUS}</p><!-- ENDIF --> <!-- IF U_POST_REPLY_PM or U_POST_NEW_TOPIC or U_FORWARD_PM --> <div class="buttons"> - <!-- IF U_POST_REPLY_PM --><div class="pmreply-icon"><a title="{L_POST_REPLY_PM}" href="{U_POST_REPLY_PM}"><span></span>{L_BUTTON_PM_REPLY}</a></div> - <!-- ELSEIF U_POST_NEW_TOPIC --><div class="newpm-icon"><a href="{U_POST_NEW_TOPIC}" accesskey="n" title="{L_UCP_PM_COMPOSE}"><span></span>{L_BUTTON_PM_NEW}</a></div><!-- ENDIF --> - <!-- IF U_FORWARD_PM --><div class="forwardpm-icon"><a title="{L_POST_FORWARD_PM}" href="{U_FORWARD_PM}"><span></span>{L_BUTTON_PM_FORWARD}</a></div><!-- ENDIF --> - <!-- IF U_POST_REPLY_PM and S_PM_RECIPIENTS gt 1 --><div class="reply-all"><a title="{L_REPLY_TO_ALL}" href="{U_POST_REPLY_ALL}">{L_BUTTON_PM_REPLY_ALL}</a></div><!-- ENDIF --> + <!-- IF U_POST_REPLY_PM --> + <div class="pmreply-icon"> + <a title="{L_POST_REPLY_PM}" href="{U_POST_REPLY_PM}" class="button icon-button"> + <span></span>{L_BUTTON_PM_REPLY} + </a> + </div> + <!-- ELSEIF U_POST_NEW_TOPIC --> + <div class="newpm-icon"> + <a href="{U_POST_NEW_TOPIC}" accesskey="n" title="{L_UCP_PM_COMPOSE}" class="button icon-button"> + <span></span>{L_BUTTON_PM_NEW}</a> + </div> + <!-- ENDIF --> + <!-- IF U_FORWARD_PM --> + <div class="forwardpm-icon"> + <a title="{L_POST_FORWARD_PM}" href="{U_FORWARD_PM}" class="button icon-button"> + <span></span>{L_BUTTON_PM_FORWARD} + </a> + </div> + <!-- ENDIF --> + <!-- IF U_POST_REPLY_PM and S_PM_RECIPIENTS gt 1 --> + <div class="reply-all"> + <a title="{L_REPLY_TO_ALL}" href="{U_POST_REPLY_ALL}" class="button icon-button"> + <span></span>{L_BUTTON_PM_REPLY_ALL} + </a> + </div> + <!-- ENDIF --> </div> <!-- ENDIF --> <!-- IF not S_IS_BOT and U_PRINT_PM --> <div class="dropdown-container dropdown-button-control topic-tools"> - <span title="{L_PM_TOOLS}" class="dropdown-trigger dropdown-select dropdown-select-icon tools-icon"><span></span></span> + <span title="{L_PM_TOOLS}" class="dropdown-trigger dropdown-select button icon-button tools-icon"><span></span></span> <div class="dropdown hidden"> <div class="pointer"><div class="pointer-inner"></div></div> <ul class="dropdown-contents"> |
