mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/9166] Fixed CSS element order in prosilver.
PHPBB3-9166
This commit is contained in:
parent
afc856417f
commit
03f117ea30
3 changed files with 25 additions and 7 deletions
|
@ -171,7 +171,7 @@ dl.details dd {
|
||||||
border-color: #4692BF;
|
border-color: #4692BF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagination span a, .pagination span a:link, .pagination span a:visited, .pagination span a:active {
|
.pagination span a, .pagination span a:link, .pagination span a:visited {
|
||||||
color: #5C758C;
|
color: #5C758C;
|
||||||
background-color: #ECEDEE;
|
background-color: #ECEDEE;
|
||||||
border-color: #B4BAC0;
|
border-color: #B4BAC0;
|
||||||
|
@ -183,6 +183,12 @@ dl.details dd {
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.pagination span a:active {
|
||||||
|
color: #5C758C;
|
||||||
|
background-color: #ECEDEE;
|
||||||
|
border-color: #B4BAC0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Pagination in viewforum for multipage topics */
|
/* Pagination in viewforum for multipage topics */
|
||||||
.row .pagination {
|
.row .pagination {
|
||||||
background-image: url("{T_THEME_PATH}/images/icon_pages.gif");
|
background-image: url("{T_THEME_PATH}/images/icon_pages.gif");
|
||||||
|
@ -304,12 +310,12 @@ a.topictitle:active {
|
||||||
color: #0D4473;
|
color: #0D4473;
|
||||||
}
|
}
|
||||||
|
|
||||||
.signature a, .signature a:visited, .signature a:active, .signature a:hover {
|
.signature a, .signature a:visited, .signature a:hover, .signature a:active {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Profile links */
|
/* 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 {
|
||||||
color: #105289;
|
color: #105289;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -317,6 +323,10 @@ a.topictitle:active {
|
||||||
color: #D31141;
|
color: #D31141;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.postprofile a:active {
|
||||||
|
color: #105289;
|
||||||
|
}
|
||||||
|
|
||||||
/* Profile searchresults */
|
/* Profile searchresults */
|
||||||
.search .postprofile a {
|
.search .postprofile a {
|
||||||
color: #105289;
|
color: #105289;
|
||||||
|
|
|
@ -103,14 +103,14 @@ a.topictitle:active {
|
||||||
color: #404040;
|
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;
|
border: none;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Profile links */
|
/* 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;
|
font-weight: bold;
|
||||||
color: #898989;
|
color: #898989;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
@ -121,6 +121,14 @@ a.topictitle:active {
|
||||||
color: #d3d3d3;
|
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 */
|
/* Profile searchresults */
|
||||||
.search .postprofile a {
|
.search .postprofile a {
|
||||||
|
|
|
@ -60,7 +60,7 @@ h3 { font-size: 14pt; margin-top: 1em; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/* CSS2 Print tip from: http://www.alistapart.com/articles/goingtoprint/ */
|
/* CSS2 Print tip from: http://www.alistapart.com/articles/goingtoprint/ */
|
||||||
.postbody a:link, .postbody a:visited, .postbody a:active, .postbody a:hover {
|
.postbody a:link, .postbody a:visited, .postbody a:hover, .postbody a:active {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
padding: 0.1em 0.2em;
|
padding: 0.1em 0.2em;
|
||||||
margin: -0.1em -0.2em;
|
margin: -0.1em -0.2em;
|
||||||
|
|
Loading…
Add table
Reference in a new issue