From 9a130e31a2f2f857ebfaac89003a2f24ca300adb Mon Sep 17 00:00:00 2001 From: hanakin Date: Fri, 23 May 2014 15:46:39 +0200 Subject: [PATCH] [ticket/12580] Remove :link pseudo from a tag removed the :link pseudo from a tag as due to specificity it prevents classes from altering any properties set to it. PHPBB3-12580 --- phpBB/styles/prosilver/theme/colours.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index acb2df92a0..a7d7184642 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -250,7 +250,7 @@ p.post-notice.reported:before, p.post-notice.error:before { Colours and backgrounds for links.css -------------------------------------------------------------- */ -a:link { color: #105289; } +a { color: #105289; } a:visited { color: #105289; } a:hover { color: #D31141; } a:active { color: #368AD2; }