mirror of
https://github.com/phpbb/phpbb.git
synced 2025-03-23 09:00:48 +01:00
Merge pull request #4654 from hanakin/ticket/15023
[ticket/15023] fix responsive post row paging
This commit is contained in:
commit
459244266d
@ -189,7 +189,9 @@
|
||||
{L_LAST_POST} {L_POST_BY_AUTHOR} {topicrow.LAST_POST_AUTHOR_FULL} « <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{topicrow.LAST_POST_TIME}</a>
|
||||
<!-- 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 left-box" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span><!-- ENDIF -->
|
||||
<!-- IF topicrow.REPLIES -->
|
||||
<span class="responsive-show" style="display: none;">{L_REPLIES}{L_COLON} <strong>{topicrow.REPLIES}</strong></span>
|
||||
<!-- ENDIF -->
|
||||
<!-- ENDIF -->
|
||||
|
||||
<div class="topic-poster responsive-hide">
|
||||
|
@ -261,11 +261,6 @@
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.rtl .topic-poster {
|
||||
float: right;
|
||||
padding-left: 0.5em;
|
||||
}
|
||||
|
||||
/* Action Bar styles
|
||||
---------------------------------------- */
|
||||
.rtl .action-bar .button {
|
||||
|
@ -878,7 +878,7 @@ fieldset.fields1 dl.pmlist dd.recipients {
|
||||
/* Pagination in viewforum for multipage topics */
|
||||
.row .pagination {
|
||||
display: block;
|
||||
margin-top: 0.3em;
|
||||
margin-top: -12px;
|
||||
}
|
||||
|
||||
.row .pagination > ul {
|
||||
@ -891,12 +891,6 @@ fieldset.fields1 dl.pmlist dd.recipients {
|
||||
font-size: 9px;
|
||||
}
|
||||
|
||||
.topic-poster {
|
||||
float: left;
|
||||
padding-right: 0.5em;
|
||||
margin-top: 0.3em;
|
||||
}
|
||||
|
||||
/* jQuery popups
|
||||
---------------------------------------- */
|
||||
.phpbb_alert {
|
||||
|
@ -280,11 +280,6 @@
|
||||
margin: 5px 0 0;
|
||||
}
|
||||
|
||||
.row .pagination {
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.row .pagination .ellipsis + li {
|
||||
display: none !important;
|
||||
}
|
||||
@ -567,13 +562,11 @@
|
||||
|
||||
@media (max-width: 850px) {
|
||||
.postprofile { width: 28%; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
@media (min-width: 701px) and (max-width: 950px) {
|
||||
.row .pagination {
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
ul.topiclist dt {
|
||||
margin-right: -410px;
|
||||
@ -588,3 +581,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.row .pagination {
|
||||
text-align: left;
|
||||
float: left;
|
||||
margin-top: 4px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user