diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-16 17:28:08 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-16 17:28:08 -0500 |
commit | 901739b0c6f0034fe91e38b19eba010975dd8fdd (patch) | |
tree | 6d270fad8e5ac6a860a6a1adddb4e86c0d4dcd52 /phpBB/styles | |
parent | ee006888296c38e650a62f0c19e4fd3e241327ee (diff) | |
download | forums-901739b0c6f0034fe91e38b19eba010975dd8fdd.tar forums-901739b0c6f0034fe91e38b19eba010975dd8fdd.tar.gz forums-901739b0c6f0034fe91e38b19eba010975dd8fdd.tar.bz2 forums-901739b0c6f0034fe91e38b19eba010975dd8fdd.tar.xz forums-901739b0c6f0034fe91e38b19eba010975dd8fdd.zip |
[ticket/11103] Fix some style code I missed in prosilver
PHPBB3-11103
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 3 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index 3b50ca732d..21a1fde7ea 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -137,6 +137,7 @@ <div class="header"> {L_NOTIFICATIONS} </div> + <ul> <!-- BEGIN notifications --> <li class="<!-- IF notifications.UNREAD --> bg2<!-- ENDIF -->"> @@ -156,7 +157,7 @@ </ul> <div class="footer"> - <a style="display: block;" href="{U_VIEW_ALL_NOTIFICATIONS}"><span>{L_SEE_ALL}</span></a> + <a href="{U_VIEW_ALL_NOTIFICATIONS}"><span>{L_SEE_ALL}</span></a> </div> </div> </li> diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index cbbc829a27..863feb576b 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -713,7 +713,7 @@ p.rules a { border-top: 1px solid; } -#notification_list ul li a, .notification_list dt > a { +#notification_list ul li a, .notification_list dt > a, #notification_list > .footer > a { display: block; } |