diff options
author | hanakin <midaym@gmail.com> | 2014-06-23 01:12:33 +0200 |
---|---|---|
committer | hanakin <midaym@gmail.com> | 2014-06-30 17:08:08 +0200 |
commit | 8ef8056fd4e1184bb9679bd717db619b249f0f7b (patch) | |
tree | 654f40b580cf0be72f51b945b09d9c8d2fc65794 | |
parent | 194224b550ff52133426d8de1fd178d877fb4d70 (diff) | |
download | forums-8ef8056fd4e1184bb9679bd717db619b249f0f7b.tar forums-8ef8056fd4e1184bb9679bd717db619b249f0f7b.tar.gz forums-8ef8056fd4e1184bb9679bd717db619b249f0f7b.tar.bz2 forums-8ef8056fd4e1184bb9679bd717db619b249f0f7b.tar.xz forums-8ef8056fd4e1184bb9679bd717db619b249f0f7b.zip |
[ticket/12735] Remove underlines by default
PHPBB3-12735
-rw-r--r-- | phpBB/styles/prosilver/theme/links.css | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 79751cb1a7..890f854baa 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -5,11 +5,10 @@ a { direction: ltr; unicode-bidi: embed; + text-decoration: none; } -a:hover { - text-decoration: underline; -} +a:hover { text-decoration: underline; } /* Coloured usernames */ .username-coloured { @@ -117,14 +116,14 @@ a.lastsubject:hover { text-decoration: underline; } -/* Profile searchresults */ +/* Profile searchresults */ .search .postprofile a { - text-decoration: none; + text-decoration: none; font-weight: normal; } .search .postprofile a:hover { - text-decoration: underline; + text-decoration: underline; } /* Back to top of page */ |