diff options
| author | Michael Miday <midaym@gmail.com> | 2015-10-11 14:00:09 +0200 |
|---|---|---|
| committer | Michael Miday <midaym@gmail.com> | 2015-11-11 09:26:50 +0100 |
| commit | c3c41d409b2549fc19beeb6f943fcb43caa0c4a8 (patch) | |
| tree | 2ebb664369a9cc1d2bb52daf1a8bced16f1de6a7 /phpBB/styles/prosilver/theme | |
| parent | 0e22521aab03a429b224fed99144c3c3a9a25771 (diff) | |
| download | forums-c3c41d409b2549fc19beeb6f943fcb43caa0c4a8.tar forums-c3c41d409b2549fc19beeb6f943fcb43caa0c4a8.tar.gz forums-c3c41d409b2549fc19beeb6f943fcb43caa0c4a8.tar.bz2 forums-c3c41d409b2549fc19beeb6f943fcb43caa0c4a8.tar.xz forums-c3c41d409b2549fc19beeb6f943fcb43caa0c4a8.zip | |
[ticket/14229]Responsive changes to topic paging
Diffstat (limited to 'phpBB/styles/prosilver/theme')
| -rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 3 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 22 |
2 files changed, 23 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index e5a147f034..e50f82a8aa 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -807,7 +807,6 @@ fieldset.fields1 dl.pmlist dd.recipients { ---------------------------------------- */ .pagination { float: right; - margin-top: 3px; text-align: right; width: auto; } @@ -876,7 +875,7 @@ fieldset.fields1 dl.pmlist dd.recipients { /* Pagination in viewforum for multipage topics */ .row .pagination { display: block; - margin-top: 0; + margin-top: -10px; } .row .pagination > ul { diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index 826972fdac..bd2c013024 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -280,6 +280,10 @@ margin: 5px 0 0; } + .row .pagination { + margin-top: 0; + } + .row .pagination .ellipsis + li { display: none !important; } @@ -557,3 +561,21 @@ .postbody { width: 70%; } } +@media (min-width: 701px) and (max-width: 950px) { + .row .pagination { + margin-top: 0; + } + + ul.topiclist dt { + margin-right: -410px; + } + + ul.topiclist dt .list-inner { + margin-right: 410px; + } + + dd.posts, dd.topics, dd.views { + width: 80px; + } +} + |
