diff options
author | hanakin <midaym@gmail.com> | 2014-05-23 15:46:39 +0200 |
---|---|---|
committer | hanakin <midaym@gmail.com> | 2014-05-23 15:46:39 +0200 |
commit | 9a130e31a2f2f857ebfaac89003a2f24ca300adb (patch) | |
tree | 8d67aa91d63854bf3027b494b80b207c36bcbeb6 | |
parent | a2cd9c2464b2f83ec005831955d2f027c9c0210a (diff) | |
download | forums-9a130e31a2f2f857ebfaac89003a2f24ca300adb.tar forums-9a130e31a2f2f857ebfaac89003a2f24ca300adb.tar.gz forums-9a130e31a2f2f857ebfaac89003a2f24ca300adb.tar.bz2 forums-9a130e31a2f2f857ebfaac89003a2f24ca300adb.tar.xz forums-9a130e31a2f2f857ebfaac89003a2f24ca300adb.zip |
[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
-rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |