mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/14772] Use float to prevent pagination overwriting topic time
PHPBB3-14772
This commit is contained in:
parent
166320ef9e
commit
89f0e4d54f
2 changed files with 8 additions and 4 deletions
|
@ -192,7 +192,7 @@
|
||||||
<!-- IF topicrow.REPLIES --><span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span><!-- ENDIF -->
|
<!-- IF topicrow.REPLIES --><span class="responsive-show left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span><!-- ENDIF -->
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<div class="responsive-hide">
|
<div class="topic-poster responsive-hide">
|
||||||
<!-- IF topicrow.S_HAS_POLL --><i class="icon fa-bar-chart fa-fw" aria-hidden="true"></i><!-- ENDIF -->
|
<!-- 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 -->
|
<!-- 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}
|
{L_POST_BY_AUTHOR} {topicrow.TOPIC_AUTHOR_FULL} » {topicrow.FIRST_POST_TIME}
|
||||||
|
|
|
@ -878,7 +878,6 @@ fieldset.fields1 dl.pmlist dd.recipients {
|
||||||
/* Pagination in viewforum for multipage topics */
|
/* Pagination in viewforum for multipage topics */
|
||||||
.row .pagination {
|
.row .pagination {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: -12px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.row .pagination > ul {
|
.row .pagination > ul {
|
||||||
|
@ -887,8 +886,13 @@ fieldset.fields1 dl.pmlist dd.recipients {
|
||||||
|
|
||||||
.row .pagination li a, .row .pagination li span {
|
.row .pagination li a, .row .pagination li span {
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding: 1px 3px;
|
padding: 1px 3px;
|
||||||
font-size: 9px;
|
font-size: 9px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topic-poster {
|
||||||
|
float: left;
|
||||||
|
padding-right: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* jQuery popups
|
/* jQuery popups
|
||||||
|
|
Loading…
Add table
Reference in a new issue