From 5bc0e89871c546baba02b17f9c75c1bc84c9a304 Mon Sep 17 00:00:00 2001 From: hanakin Date: Tue, 14 Apr 2020 14:15:31 -1000 Subject: [PATCH 1/4] [ticket/16439] fix post target h3 color PHPBB3-16439 --- phpBB/styles/prosilver/template/viewtopic_body.html | 2 +- phpBB/styles/prosilver/theme/colours.css | 2 +- 2 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 f2ea7662d6..01c3708af7 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -224,7 +224,7 @@
style="display: none;"> -

class="first">{postrow.POST_ICON_IMG_ALT} {postrow.POST_SUBJECT}

+

{% if postrow.POST_ICON_IMG %}{{ postrow.POST_ICON_IMG_ALT }} {% endif %}{{ postrow.POST_SUBJECT }}

diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index 04a895873c..2e7dca8d87 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -116,7 +116,7 @@ a:hover { color: #D31141; } color: #000000; } -.post:target h3 a { +.post h3 a.first-unread { { color: #000000; } From 89566542884391d0566fb272c61bfd196d587861 Mon Sep 17 00:00:00 2001 From: hanakin Date: Wed, 15 Apr 2020 11:09:10 -1000 Subject: [PATCH 2/4] [ticket/16439] minor fixes PHPBB3-16439 --- phpBB/styles/prosilver/template/viewtopic_body.html | 2 +- phpBB/styles/prosilver/theme/colours.css | 2 +- 2 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 01c3708af7..5e3d33e927 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -224,7 +224,7 @@
style="display: none;"> -

{% if postrow.POST_ICON_IMG %}{{ postrow.POST_ICON_IMG_ALT }} {% endif %}{{ postrow.POST_SUBJECT }}

+

{% if postrow.POST_ICON_IMG %}{{ postrow.POST_ICON_IMG_ALT }} {% endif %}{{ postrow.POST_SUBJECT }}

diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index 2e7dca8d87..d933bb4f26 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -116,7 +116,7 @@ a:hover { color: #D31141; } color: #000000; } -.post h3 a.first-unread { { +.post h3 a.first-unread { color: #000000; } From 8ab730f47d5cbed6ca8ebe5d9f43b70aafa3a2e2 Mon Sep 17 00:00:00 2001 From: hanakin Date: Wed, 22 Apr 2020 10:32:43 -1000 Subject: [PATCH 3/4] [ticket/16439] Add BC back in PHPBB3-16439 --- phpBB/styles/prosilver/theme/colours.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index d933bb4f26..b96561082a 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -116,7 +116,8 @@ a:hover { color: #D31141; } color: #000000; } -.post h3 a.first-unread { +.post h3 a.first-unread, +.post:target h3 a { color: #000000; } From 2fd174d7cf4db9066329cc6a26ed549e45f5d0d5 Mon Sep 17 00:00:00 2001 From: hanakin Date: Fri, 24 Apr 2020 10:09:56 -1000 Subject: [PATCH 4/4] [ticket/16439] small cleanup PHPBB3-16439 --- phpBB/styles/prosilver/template/viewtopic_body.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 5e3d33e927..536e7aaba9 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -224,7 +224,12 @@
style="display: none;"> -

{% if postrow.POST_ICON_IMG %}{{ postrow.POST_ICON_IMG_ALT }} {% endif %}{{ postrow.POST_SUBJECT }}

+

+ {% if postrow.POST_ICON_IMG %} + {{ postrow.POST_ICON_IMG_ALT }} + {% endif %} + {{ postrow.POST_SUBJECT }} +