diff options
author | Soeren D. Schulze <soeren.d.schulze@gmx.de> | 2017-08-28 21:43:25 +0200 |
---|---|---|
committer | Soeren D. Schulze <soeren.d.schulze@gmx.de> | 2017-08-28 22:40:27 +0200 |
commit | 3c0a555c24d812b2406383569574a4e8ab7dbc3a (patch) | |
tree | 8fb508f9c81d8ef29105b85a7522057af38a39e5 /phpBB/styles/prosilver/template | |
parent | 1e605efaf126f5474bb1be99e7fdaed834ebb2a0 (diff) | |
download | forums-3c0a555c24d812b2406383569574a4e8ab7dbc3a.tar forums-3c0a555c24d812b2406383569574a4e8ab7dbc3a.tar.gz forums-3c0a555c24d812b2406383569574a4e8ab7dbc3a.tar.bz2 forums-3c0a555c24d812b2406383569574a4e8ab7dbc3a.tar.xz forums-3c0a555c24d812b2406383569574a4e8ab7dbc3a.zip |
[ticket/15309] Fix pagination overlap
Mark the contents of the column as "left-box", enabling proper alignment
PHPBB3-15309
Diffstat (limited to 'phpBB/styles/prosilver/template')
-rw-r--r-- | phpBB/styles/prosilver/template/search_results.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/viewforum_body.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/styles/prosilver/template/search_results.html b/phpBB/styles/prosilver/template/search_results.html index 997bc28b4b..6bc5c72a87 100644 --- a/phpBB/styles/prosilver/template/search_results.html +++ b/phpBB/styles/prosilver/template/search_results.html @@ -114,7 +114,7 @@ <!-- IF searchresults.TOPIC_REPLIES --><span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{searchresults.TOPIC_REPLIES}</strong></span><!-- ENDIF --> <!-- ENDIF --> - <div class="responsive-hide"> + <div class="responsive-hide left-box"> <!-- IF searchresults.S_HAS_POLL --><i class="icon fa-bar-chart fa-fw" aria-hidden="true"></i><!-- ENDIF --> <!-- IF searchresults.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> {L_POST_BY_AUTHOR} {searchresults.TOPIC_AUTHOR_FULL} » {searchresults.FIRST_POST_TIME} » {L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a> diff --git a/phpBB/styles/prosilver/template/viewforum_body.html b/phpBB/styles/prosilver/template/viewforum_body.html index b57f48ba15..7b27a1d904 100644 --- a/phpBB/styles/prosilver/template/viewforum_body.html +++ b/phpBB/styles/prosilver/template/viewforum_body.html @@ -190,11 +190,11 @@ <!-- IF topicrow.S_POST_GLOBAL and FORUM_ID != topicrow.FORUM_ID --><br />{L_POSTED} {L_IN} <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a><!-- ENDIF --> </div> <!-- IF topicrow.REPLIES --> - <span class="responsive-show" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span> + <span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span> <!-- ENDIF --> <!-- ENDIF --> - <div class="topic-poster responsive-hide"> + <div class="topic-poster responsive-hide left-box"> <!-- IF topicrow.S_HAS_POLL --><i class="icon fa-bar-chart fa-fw" aria-hidden="true"></i><!-- ENDIF --> <!-- IF topicrow.ATTACH_ICON_IMG --><i class="icon fa-paperclip fa-fw" aria-hidden="true"></i><!-- ENDIF --> {L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} » {topicrow.FIRST_POST_TIME} |