From af028f8d72e552a5c9b5a65424d1c90c2b1a7ada Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 11 Feb 2017 11:34:03 +0100 Subject: [PATCH 1/3] [ticket/14979] Do not display underline for unread icon PHPBB3-14979 --- phpBB/styles/prosilver/theme/links.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 6da14c9326..f6c24bfb7c 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -89,6 +89,10 @@ a.lastsubject:hover { text-decoration: underline; } +a.unread { + text-decoration: none; +} + /* Post body links */ .postlink { text-decoration: none; From a52d5edd18a2218a95f7e3bc4bf02560b4dbf31f Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Mon, 13 Feb 2017 21:09:28 +0100 Subject: [PATCH 2/3] [ticket/14979] Add text-decoration settings for lastpost links as well PHPBB3-14979 --- phpBB/styles/prosilver/theme/links.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index f6c24bfb7c..3553df4d1c 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -93,6 +93,14 @@ a.unread { text-decoration: none; } +dd.lastpost a:hover { + text-decoration: none; +} + +dd.lastpost a.username-coloured:hover, dd.lastpost a.username { + text-decoration: underline; +} + /* Post body links */ .postlink { text-decoration: none; From bdc31265cf1e25799daa7f2173e2b5e836e5bb10 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 19 Feb 2017 16:46:29 +0100 Subject: [PATCH 3/3] [ticket/14979] Use hanakin's CSS version PHPBB3-14979 --- phpBB/styles/prosilver/theme/links.css | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 3553df4d1c..6a61e9a262 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -89,15 +89,14 @@ a.lastsubject:hover { text-decoration: underline; } -a.unread { - text-decoration: none; +.row-item a:hover { + text-decoration: none } -dd.lastpost a:hover { - text-decoration: none; -} - -dd.lastpost a.username-coloured:hover, dd.lastpost a.username { +.row-item .topictitle:hover, +.row-item .subforum:hover, +.row-item .username:hover, +.row-item .username-coloured:hover { text-decoration: underline; }