diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2011-03-02 12:49:59 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2011-06-06 16:54:40 +0200 |
| commit | c07540163c2bf674e384d6df294c83e79e510ce9 (patch) | |
| tree | a0124caf61322b9637f10d97faf644a2fad7ab05 | |
| parent | bda64edae8ab88846771235220ebfa8ee6cfdaa1 (diff) | |
| download | forums-c07540163c2bf674e384d6df294c83e79e510ce9.tar forums-c07540163c2bf674e384d6df294c83e79e510ce9.tar.gz forums-c07540163c2bf674e384d6df294c83e79e510ce9.tar.bz2 forums-c07540163c2bf674e384d6df294c83e79e510ce9.tar.xz forums-c07540163c2bf674e384d6df294c83e79e510ce9.zip | |
[ticket/10068] Style links posted in posts the same way as in signatures.
Firefox4 is going to have some restrictions to :visited for security purpose
(see http://hacks.mozilla.org/2010/03/privacy-related-changes-coming-to-css-vistited/ for more information)
In phpBB links inside posts therefor can not be displayed with the dotted line
anymore. So when we change this anyway we can just make links in signature and
posts look the same.
PHPBB3-10068
| -rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 2 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/links.css | 6 |
2 files changed, 2 insertions, 6 deletions
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index f7747ba73c..e98ce237bc 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -298,7 +298,7 @@ a.topictitle:active { .postlink:visited { color: #5D8FBD; - border-bottom-color: #666666; + border-bottom-color: #5D8FBD; } .postlink:active { diff --git a/phpBB/styles/prosilver/theme/links.css b/phpBB/styles/prosilver/theme/links.css index a406114054..1f6c2af550 100644 --- a/phpBB/styles/prosilver/theme/links.css +++ b/phpBB/styles/prosilver/theme/links.css @@ -87,11 +87,7 @@ a.topictitle:active { padding-bottom: 0; } -.postlink:visited { - color: #bdbdbd; - border-bottom-style: dotted; - border-bottom-color: #666666; -} +/* .postlink:visited { color: #bdbdbd; } */ .postlink:active { color: #d2d2d2; |
