diff options
author | Schnorrer42 <Schnorrer42@code.phpbb.com> | 2010-04-28 16:42:46 -0400 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-01-28 03:21:54 +0100 |
commit | ee478ec4f44c4fc5e2106edc0f099d3a49dd90a8 (patch) | |
tree | 6625fdca37f93c8aa33987d761a17dc7ef994440 | |
parent | 03f117ea309fef9b13d08349487d574bf29bff2e (diff) | |
download | forums-ee478ec4f44c4fc5e2106edc0f099d3a49dd90a8.tar forums-ee478ec4f44c4fc5e2106edc0f099d3a49dd90a8.tar.gz forums-ee478ec4f44c4fc5e2106edc0f099d3a49dd90a8.tar.bz2 forums-ee478ec4f44c4fc5e2106edc0f099d3a49dd90a8.tar.xz forums-ee478ec4f44c4fc5e2106edc0f099d3a49dd90a8.zip |
[ticket/9166] Fixed CSS element order in subsilver.
PHPBB3-9166
-rw-r--r-- | phpBB/styles/subsilver2/theme/stylesheet.css | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/phpBB/styles/subsilver2/theme/stylesheet.css b/phpBB/styles/subsilver2/theme/stylesheet.css index 726efdca0a..c2b6718d87 100644 --- a/phpBB/styles/subsilver2/theme/stylesheet.css +++ b/phpBB/styles/subsilver2/theme/stylesheet.css @@ -210,13 +210,13 @@ p.topicdetails { margin: 1px 0; } -.postreported, .postreported a:visited, .postreported a:hover, .postreported a:link, .postreported a:active { +.postreported, .postreported a:link, .postreported a:visited, .postreported a:hover, .postreported a:active { margin: 1px 0; color: red; font-weight:bold; } -.postapprove, .postapprove a:visited, .postapprove a:hover, .postapprove a:link, .postapprove a:active { +.postapprove, .postapprove a:link, .postapprove a:visited, .postapprove a:hover, .postapprove a:active { color: green; font-weight:bold; } @@ -386,12 +386,13 @@ hr { unicode-bidi: embed; } +/* CSS spec requires a:link, a:visited, a:hover and a:active rules to be specified in this order. */ +/* See http://www.phpbb.com/bugs/phpbb3/59685 */ a:link { color: #006597; text-decoration: none; } -a:active, a:visited { color: #005784; text-decoration: none; @@ -402,6 +403,11 @@ a:hover { text-decoration: underline; } +a:active { + color: #005784; + text-decoration: none; +} + a.forumlink { color: #069; font-weight: bold; @@ -667,4 +673,4 @@ pre { .username-coloured { font-weight: bold; -}
\ No newline at end of file +} |