diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-03-08 21:29:16 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-03-08 21:29:16 +0100 |
commit | 3e9f12d12d7dbdd2cee39425e81b5fdf66fcfbc8 (patch) | |
tree | 3ecf9d8a684b7a2d96c666e2a7fa2c9437a5d152 | |
parent | 1edb0bd173b61812e7e43cb25af938457e82a73b (diff) | |
parent | bdc31265cf1e25799daa7f2173e2b5e836e5bb10 (diff) | |
download | forums-3e9f12d12d7dbdd2cee39425e81b5fdf66fcfbc8.tar forums-3e9f12d12d7dbdd2cee39425e81b5fdf66fcfbc8.tar.gz forums-3e9f12d12d7dbdd2cee39425e81b5fdf66fcfbc8.tar.bz2 forums-3e9f12d12d7dbdd2cee39425e81b5fdf66fcfbc8.tar.xz forums-3e9f12d12d7dbdd2cee39425e81b5fdf66fcfbc8.zip |
Merge pull request #4696 from marc1706/ticket/14979
[ticket/14979] Do not display underline for unread icon
-rw-r--r-- | phpBB/styles/prosilver/theme/links.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index 6da14c9326..6a61e9a262 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -89,6 +89,17 @@ a.lastsubject:hover { text-decoration: underline; } +.row-item a:hover { + text-decoration: none +} + +.row-item .topictitle:hover, +.row-item .subforum:hover, +.row-item .username:hover, +.row-item .username-coloured:hover { + text-decoration: underline; +} + /* Post body links */ .postlink { text-decoration: none; |