mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/9166] Fixed CSS element order in subsilver.
PHPBB3-9166
This commit is contained in:
parent
03f117ea30
commit
ee478ec4f4
1 changed files with 10 additions and 4 deletions
|
@ -210,13 +210,13 @@ p.topicdetails {
|
||||||
margin: 1px 0;
|
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;
|
margin: 1px 0;
|
||||||
color: red;
|
color: red;
|
||||||
font-weight:bold;
|
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;
|
color: green;
|
||||||
font-weight:bold;
|
font-weight:bold;
|
||||||
}
|
}
|
||||||
|
@ -386,12 +386,13 @@ hr {
|
||||||
unicode-bidi: embed;
|
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 {
|
a:link {
|
||||||
color: #006597;
|
color: #006597;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:active,
|
|
||||||
a:visited {
|
a:visited {
|
||||||
color: #005784;
|
color: #005784;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -402,6 +403,11 @@ a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a:active {
|
||||||
|
color: #005784;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
a.forumlink {
|
a.forumlink {
|
||||||
color: #069;
|
color: #069;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
@ -667,4 +673,4 @@ pre {
|
||||||
|
|
||||||
.username-coloured {
|
.username-coloured {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue