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:
committed by
Andreas Fischer
parent
afc856417f
commit
03f117ea30
@@ -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 {
|
||||
|
Reference in New Issue
Block a user