diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-02-13 21:09:28 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-02-13 21:09:28 +0100 |
commit | a52d5edd18a2218a95f7e3bc4bf02560b4dbf31f (patch) | |
tree | 7ca103c3d69e874ae58e92937b7021eb0ef240f6 | |
parent | af028f8d72e552a5c9b5a65424d1c90c2b1a7ada (diff) | |
download | forums-a52d5edd18a2218a95f7e3bc4bf02560b4dbf31f.tar forums-a52d5edd18a2218a95f7e3bc4bf02560b4dbf31f.tar.gz forums-a52d5edd18a2218a95f7e3bc4bf02560b4dbf31f.tar.bz2 forums-a52d5edd18a2218a95f7e3bc4bf02560b4dbf31f.tar.xz forums-a52d5edd18a2218a95f7e3bc4bf02560b4dbf31f.zip |
[ticket/14979] Add text-decoration settings for lastpost links as well
PHPBB3-14979
-rw-r--r-- | phpBB/styles/prosilver/theme/links.css | 8 |
1 files changed, 8 insertions, 0 deletions
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; |