diff options
author | Schnorrer42 <Schnorrer42@code.phpbb.com> | 2010-04-28 16:43:38 -0400 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-01-28 03:21:35 +0100 |
commit | 03f117ea309fef9b13d08349487d574bf29bff2e (patch) | |
tree | c60be7cd343d9d8c837cca75a92c0b0f4a1914a6 /phpBB/styles/prosilver/theme/colours.css | |
parent | afc856417f89114d7ea56eb0b290f7604dba0d6b (diff) | |
download | forums-03f117ea309fef9b13d08349487d574bf29bff2e.tar forums-03f117ea309fef9b13d08349487d574bf29bff2e.tar.gz forums-03f117ea309fef9b13d08349487d574bf29bff2e.tar.bz2 forums-03f117ea309fef9b13d08349487d574bf29bff2e.tar.xz forums-03f117ea309fef9b13d08349487d574bf29bff2e.zip |
[ticket/9166] Fixed CSS element order in prosilver.
PHPBB3-9166
Diffstat (limited to 'phpBB/styles/prosilver/theme/colours.css')
-rw-r--r-- | phpBB/styles/prosilver/theme/colours.css | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/theme/colours.css b/phpBB/styles/prosilver/theme/colours.css index 5d74ff9d8f..3f215def72 100644 --- a/phpBB/styles/prosilver/theme/colours.css +++ b/phpBB/styles/prosilver/theme/colours.css @@ -171,7 +171,7 @@ dl.details dd { 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; background-color: #ECEDEE; border-color: #B4BAC0; @@ -183,6 +183,12 @@ dl.details dd { color: #FFF; } +.pagination span a:active { + color: #5C758C; + background-color: #ECEDEE; + border-color: #B4BAC0; +} + /* Pagination in viewforum for multipage topics */ .row .pagination { background-image: url("{T_THEME_PATH}/images/icon_pages.gif"); @@ -304,12 +310,12 @@ a.topictitle:active { 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; } /* 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; } @@ -317,6 +323,10 @@ a.topictitle:active { color: #D31141; } +.postprofile a:active { + color: #105289; +} + /* Profile searchresults */ .search .postprofile a { color: #105289; |