diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-10-11 14:01:44 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-11 14:01:44 +0200 |
commit | 2fd3d9d1c9b9c084e38b26f25b917544856046c8 (patch) | |
tree | 3c4146621753c77ff8099ecd996fe223fbe46905 /phpBB/styles/prosilver/template | |
parent | 03cb2a7b0c5a3756522c27d708bdaf0bfa771706 (diff) | |
download | forums-2fd3d9d1c9b9c084e38b26f25b917544856046c8.tar forums-2fd3d9d1c9b9c084e38b26f25b917544856046c8.tar.gz forums-2fd3d9d1c9b9c084e38b26f25b917544856046c8.tar.bz2 forums-2fd3d9d1c9b9c084e38b26f25b917544856046c8.tar.xz forums-2fd3d9d1c9b9c084e38b26f25b917544856046c8.zip |
[ticket/14230] Show unread post icon in different color
PHPBB3-14230
Diffstat (limited to 'phpBB/styles/prosilver/template')
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 5642c0a5cb..0c64adc305 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -281,10 +281,10 @@ <!-- EVENT viewtopic_body_postrow_post_details_before --> <p class="author"> <!-- IF S_IS_BOT --> - <span><i class="icon fa-file fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span></span> + <span><i class="icon fa-file fa-fw <!-- IF postrow.S_UNREAD_POST -->icon-red<!-- ELSE -->icon-lightgray<!-- ENDIF --> icon-md" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span></span> <!-- ELSE --> <a href="{postrow.U_MINI_POST}" title="{postrow.MINI_POST}"> - <i class="icon fa-file fa-fw icon-lightgray icon-md" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span> + <i class="icon fa-file fa-fw <!-- IF postrow.S_UNREAD_POST -->icon-red<!-- ELSE -->icon-lightgray<!-- ENDIF --> icon-md" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span> </a> <!-- ENDIF --> <span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> » </span>{postrow.POST_DATE} |