diff options
author | Cesar G <prototech91@gmail.com> | 2013-11-09 03:36:41 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2013-12-06 00:56:31 -0800 |
commit | 664e7862d07a93e75ce786f68b3ca9e2f6e7f156 (patch) | |
tree | 73c5a0b1c5a70b2aa50dd95048d5e5fbfdfefd92 /phpBB/styles/prosilver | |
parent | 42a70154faa0eb987e6bb0bccf296c5c802e06a6 (diff) | |
download | forums-664e7862d07a93e75ce786f68b3ca9e2f6e7f156.tar forums-664e7862d07a93e75ce786f68b3ca9e2f6e7f156.tar.gz forums-664e7862d07a93e75ce786f68b3ca9e2f6e7f156.tar.bz2 forums-664e7862d07a93e75ce786f68b3ca9e2f6e7f156.tar.xz forums-664e7862d07a93e75ce786f68b3ca9e2f6e7f156.zip |
[ticket/11241] Fix the disappearing dropdown when responsive changes take effect
PHPBB3-11241
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 13 |
2 files changed, 5 insertions, 12 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 155b9f0a05..338c67dd33 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -57,9 +57,8 @@ <!-- ENDIF --> </div> <!-- ENDIF --> - + <div class="clear"></div> </div> -<div class="clear"></div> <!-- IF S_HAS_POLL --> <form method="post" action="{S_POLL_ACTION}" data-ajax="vote_poll" class="topic_poll"> @@ -313,6 +312,7 @@ <!-- ENDIF --> </div> <!-- ENDIF --> + <div class="clear"></div> </div> <!-- EVENT viewtopic_body_footer_before --> diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index d7af7519b7..397ff12942 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -468,10 +468,6 @@ p.rightside { float: none; } -.topic-actions { - overflow: hidden; -} - fieldset.quickmod { width: auto; float: none; @@ -511,17 +507,14 @@ fieldset.display-actions { margin: 0; } - .topic-actions > div { - float: none; - overflow: hidden; - clear: both; - } - .topic-actions > .pagination, fieldset.jumpbox { text-align: center; } .topic-actions > .pagination { + float: none; + overflow: hidden; + clear: both; padding-bottom: 1px; } |