1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-26 01:43:45 +02:00

[ticket/12155] Move icon class directly to <a> and use <span> consistently.

PHPBB3-12155
This commit is contained in:
Cesar G
2014-05-25 04:30:46 -07:00
parent 523c374e16
commit 70f9d4a54a
10 changed files with 106 additions and 101 deletions

View File

@@ -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 -->