diff options
author | PayBas <contact@paybas.com> | 2014-06-28 13:53:14 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-06-28 13:53:14 +0200 |
commit | ce74a4f2630cf89b995579d85ef12cd7d363efa0 (patch) | |
tree | a1c0bce504268d8fbccf3708f969bcddc6630430 | |
parent | abc0147daa1dbbda02552bb8d5f946df87cec067 (diff) | |
download | forums-ce74a4f2630cf89b995579d85ef12cd7d363efa0.tar forums-ce74a4f2630cf89b995579d85ef12cd7d363efa0.tar.gz forums-ce74a4f2630cf89b995579d85ef12cd7d363efa0.tar.bz2 forums-ce74a4f2630cf89b995579d85ef12cd7d363efa0.tar.xz forums-ce74a4f2630cf89b995579d85ef12cd7d363efa0.zip |
[ticket/12662] Remove last remaining linklist outside navbars
PHPBB3-12662
-rw-r--r-- | phpBB/styles/prosilver/template/index_body.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/viewforum_body.html | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/prosilver/template/index_body.html b/phpBB/styles/prosilver/template/index_body.html index 42619fce9d..1e1eb22c6f 100644 --- a/phpBB/styles/prosilver/template/index_body.html +++ b/phpBB/styles/prosilver/template/index_body.html @@ -5,7 +5,7 @@ <!-- EVENT index_body_markforums_before --> <!-- IF U_MARK_FORUMS --> - <div class="action-bar"> + <div class="action-bar compact"> <a href="{U_MARK_FORUMS}" class="mark-read rightside" accesskey="m" data-ajax="mark_forums_read">{L_MARK_FORUMS_READ}</a> </div> <!-- ENDIF --> diff --git a/phpBB/styles/prosilver/template/viewforum_body.html b/phpBB/styles/prosilver/template/viewforum_body.html index aae5b64963..a3fb8aa6da 100644 --- a/phpBB/styles/prosilver/template/viewforum_body.html +++ b/phpBB/styles/prosilver/template/viewforum_body.html @@ -27,9 +27,9 @@ <!-- IF S_HAS_SUBFORUM --> <!-- IF not S_IS_BOT and U_MARK_FORUMS --> -<ul class="linklist"> - <li class="rightside mark-read"><a href="{U_MARK_FORUMS}" data-ajax="mark_forums_read">{L_MARK_SUBFORUMS_READ}</a></li> -</ul> + <div class="action-bar compact"> + <a href="{U_MARK_FORUMS}" class="mark-read rightside" data-ajax="mark_forums_read">{L_MARK_SUBFORUMS_READ}</a> + </div> <!-- ENDIF --> <!-- INCLUDE forumlist_body.html --> <!-- ENDIF --> |