aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/ucp_pm_message_header.html
diff options
context:
space:
mode:
authorCesar G <prototech91@gmail.com>2014-05-25 04:30:46 -0700
committerCesar G <prototech91@gmail.com>2014-05-27 07:17:47 -0700
commit70f9d4a54adc2396cd5c8d480d720d42023259b1 (patch)
tree94cb7c8852c189f626e5df2d9db8703b1e828c7b /phpBB/styles/prosilver/template/ucp_pm_message_header.html
parent523c374e168c3e4bfda2ad21d63c8991d4cbe122 (diff)
downloadforums-70f9d4a54adc2396cd5c8d480d720d42023259b1.tar
forums-70f9d4a54adc2396cd5c8d480d720d42023259b1.tar.gz
forums-70f9d4a54adc2396cd5c8d480d720d42023259b1.tar.bz2
forums-70f9d4a54adc2396cd5c8d480d720d42023259b1.tar.xz
forums-70f9d4a54adc2396cd5c8d480d720d42023259b1.zip
[ticket/12155] Move icon class directly to <a> and use <span> consistently.
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.html32
1 files changed, 12 insertions, 20 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_pm_message_header.html b/phpBB/styles/prosilver/template/ucp_pm_message_header.html
index 4c0a0d69b6..040b75f6ad 100644
--- a/phpBB/styles/prosilver/template/ucp_pm_message_header.html
+++ b/phpBB/styles/prosilver/template/ucp_pm_message_header.html
@@ -9,31 +9,23 @@
<!-- 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}" class="button icon-button">
- <span></span>{L_BUTTON_PM_REPLY}
- </a>
- </div>
+ <a title="{L_POST_REPLY_PM}" href="{U_POST_REPLY_PM}" class="button icon-button pmreply-icon">
+ <span>{L_BUTTON_PM_REPLY}</span>
+ </a>
<!-- 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>
+ <a href="{U_POST_NEW_TOPIC}" accesskey="n" title="{L_UCP_PM_COMPOSE}" class="button icon-button newpm-icon">
+ <span>{L_BUTTON_PM_NEW}</span>
+ </a>
<!-- 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>
+ <a title="{L_POST_FORWARD_PM}" href="{U_FORWARD_PM}" class="button icon-button forwardpm-icon">
+ <span>{L_BUTTON_PM_FORWARD}</span>
+ </a>
<!-- 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>
+ <a title="{L_REPLY_TO_ALL}" href="{U_POST_REPLY_ALL}" class="button icon-button reply-all">
+ <span>{L_BUTTON_PM_REPLY_ALL}</span>
+ </a>
<!-- ENDIF -->
</div>
<!-- ENDIF -->