1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-30 19:49:54 +02:00

[ticket/9166] Fixed CSS element order in prosilver.

PHPBB3-9166
This commit is contained in:
Schnorrer42
2010-04-28 16:43:38 -04:00
committed by Andreas Fischer
parent afc856417f
commit 03f117ea30
3 changed files with 25 additions and 7 deletions

View File

@@ -103,14 +103,14 @@ a.topictitle:active {
color: #404040;
}
.signature a, .signature a:visited, .signature a:active, .signature a:hover {
.signature a, .signature a:visited, .signature a:hover, .signature a:active {
border: none;
text-decoration: underline;
background-color: transparent;
}
/* Profile links */
.postprofile a:link, .postprofile a:active, .postprofile a:visited, .postprofile dt.author a {
.postprofile a:link, .postprofile a:visited, .postprofile dt.author a {
font-weight: bold;
color: #898989;
text-decoration: none;
@@ -121,6 +121,14 @@ a.topictitle:active {
color: #d3d3d3;
}
/* 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 */
.postprofile a:active {
font-weight: bold;
color: #898989;
text-decoration: none;
}
/* Profile searchresults */
.search .postprofile a {