diff options
author | Cesar G <prototech91@gmail.com> | 2015-10-11 16:03:13 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2015-10-11 16:03:13 -0700 |
commit | 45501e50c99875b79d6b54193799f5befa9f43b4 (patch) | |
tree | b675833b81e89f3dd283ffcc53510377cd8950dc /phpBB | |
parent | 87b9cede4bb11fd501d89146bfd13c2e9623924f (diff) | |
parent | 2fd3d9d1c9b9c084e38b26f25b917544856046c8 (diff) | |
download | forums-45501e50c99875b79d6b54193799f5befa9f43b4.tar forums-45501e50c99875b79d6b54193799f5befa9f43b4.tar.gz forums-45501e50c99875b79d6b54193799f5befa9f43b4.tar.bz2 forums-45501e50c99875b79d6b54193799f5befa9f43b4.tar.xz forums-45501e50c99875b79d6b54193799f5befa9f43b4.zip |
Merge remote-tracking branch 'marc1706/ticket/14230'
* marc1706/ticket/14230:
[ticket/14230] Show unread post icon in different color
Diffstat (limited to 'phpBB')
-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} |