diff options
author | Michael Miday <midaym@gmail.com> | 2015-09-25 17:25:10 +0200 |
---|---|---|
committer | Michael Miday <midaym@gmail.com> | 2015-10-01 20:21:38 +0200 |
commit | 9da14c9b241387982fed9aa2436162c63fc25d1c (patch) | |
tree | 4dca6dde05668efd19f79bed42da63618423cf62 /phpBB/styles/prosilver/template/mcp_forum.html | |
parent | 8451272d6995e161aeb530755527b49ae99d7c31 (diff) | |
download | forums-9da14c9b241387982fed9aa2436162c63fc25d1c.tar forums-9da14c9b241387982fed9aa2436162c63fc25d1c.tar.gz forums-9da14c9b241387982fed9aa2436162c63fc25d1c.tar.bz2 forums-9da14c9b241387982fed9aa2436162c63fc25d1c.tar.xz forums-9da14c9b241387982fed9aa2436162c63fc25d1c.zip |
[ticket/14199]Add aria-hidden to all icons
PHPBB3-14199
Diffstat (limited to 'phpBB/styles/prosilver/template/mcp_forum.html')
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_forum.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_forum.html b/phpBB/styles/prosilver/template/mcp_forum.html index c1e3cc3497..1f48b19c18 100644 --- a/phpBB/styles/prosilver/template/mcp_forum.html +++ b/phpBB/styles/prosilver/template/mcp_forum.html @@ -47,24 +47,24 @@ <!-- EVENT mcp_forum_topic_title_after --> <!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED --> <a href="{topicrow.U_MCP_QUEUE}" title="{TOPIC_UNAPPROVED}"> - <i class="icon fa-question fa-fw icon-blue"></i><span class="sr-only">{TOPIC_UNAPPROVED}</span> + <i class="icon fa-question fa-fw icon-blue" aria-hidden="true"></i><span class="sr-only">{TOPIC_UNAPPROVED}</span> </a> <!-- ENDIF --> <!-- IF topicrow.S_TOPIC_DELETED or topicrow.S_POSTS_DELETED --> <a href="{topicrow.U_MCP_QUEUE}" title="{TOPIC_DELETED"> - <i class="icon fa-recycle fa-fw icon-green"></i><span class="sr-only">{TOPIC_DELETED}</span> + <i class="icon fa-recycle fa-fw icon-green" aria-hidden="true"></i><span class="sr-only">{TOPIC_DELETED}</span> </a> <!-- ENDIF --> <!-- IF topicrow.S_TOPIC_REPORTED --> <a href="{topicrow.U_MCP_REPORT}" title="{TOPIC_REPORTED}"> - <i class="icon fa-exclamation fa-fw icon-red"></i><span class="sr-only">{TOPIC_REPORTED}</span> + <i class="icon fa-exclamation fa-fw icon-red" aria-hidden="true"></i><span class="sr-only">{TOPIC_REPORTED}</span> </a> <!-- ENDIF --> <!-- IF topicrow.S_MOVED_TOPIC and S_CAN_DELETE --> <a href="{topicrow.U_DELETE_TOPIC}" class="topictitle">[ {L_DELETE_SHADOW_TOPIC} ]</a><!-- ENDIF --> <br /> <div class="responsive-show" style="display: none;"> - <!-- IF topicrow.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw"></i> <!-- ENDIF --> + <!-- IF topicrow.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <!-- ENDIF --> {L_LAST_POST} {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL} « {topicrow.LAST_POST_TIME}<br /> </div> <span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span> @@ -85,7 +85,7 @@ <!-- ENDIF --> <div class="responsive-hide"> - <!-- IF topicrow.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw"></i> <!-- ENDIF --> + <!-- IF topicrow.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i> <!-- ENDIF --> {L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} » {topicrow.FIRST_POST_TIME} </div> <!-- EVENT topiclist_row_append --> |