diff options
author | Cesar G <prototech91@gmail.com> | 2014-06-14 14:25:27 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-07-04 00:56:28 -0700 |
commit | ddf3ab323bb0cd45063917e6cd0c54a37eef5d6e (patch) | |
tree | 7e96cb720fb705df369b3da34ecf4346d4f2f09e /phpBB/styles/prosilver | |
parent | e7b9013dba5fede1be0e38698d8b198fb7bcf4e1 (diff) | |
download | forums-ddf3ab323bb0cd45063917e6cd0c54a37eef5d6e.tar forums-ddf3ab323bb0cd45063917e6cd0c54a37eef5d6e.tar.gz forums-ddf3ab323bb0cd45063917e6cd0c54a37eef5d6e.tar.bz2 forums-ddf3ab323bb0cd45063917e6cd0c54a37eef5d6e.tar.xz forums-ddf3ab323bb0cd45063917e6cd0c54a37eef5d6e.zip |
[ticket/12013] Clear the jumpbox.
PHPBB3-12013
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/jumpbox.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/viewforum_body.html | 1 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/buttons.css | 4 | ||||
-rw-r--r-- | phpBB/styles/prosilver/theme/common.css | 8 |
4 files changed, 13 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/jumpbox.html b/phpBB/styles/prosilver/template/jumpbox.html index 2ddc8423c6..44b479ab3f 100644 --- a/phpBB/styles/prosilver/template/jumpbox.html +++ b/phpBB/styles/prosilver/template/jumpbox.html @@ -11,7 +11,7 @@ <!-- IF S_DISPLAY_JUMPBOX --> - <div class="dropdown-container dropdown-container-{S_CONTENT_FLOW_END}<!-- IF not S_IN_MCP --> dropdown-up<!-- ENDIF --> dropdown-{S_CONTENT_FLOW_BEGIN} dropdown-button-control"> + <div class="dropdown-container dropdown-container-{S_CONTENT_FLOW_END}<!-- IF not S_IN_MCP --> dropdown-up<!-- ENDIF --> dropdown-{S_CONTENT_FLOW_BEGIN} dropdown-button-control" id="jumpbox"> <span title="<!-- IF S_IN_MCP and S_MERGE_SELECT -->{L_SELECT_TOPICS_FROM}<!-- ELSEIF S_IN_MCP -->{L_MODERATE_FORUM}<!-- ELSE -->{L_JUMP_TO}<!-- ENDIF -->" class="dropdown-trigger button dropdown-select"> <!-- IF S_IN_MCP and S_MERGE_SELECT -->{L_SELECT_TOPICS_FROM}<!-- ELSEIF S_IN_MCP -->{L_MODERATE_FORUM}<!-- ELSE -->{L_JUMP_TO}<!-- ENDIF --> </span> diff --git a/phpBB/styles/prosilver/template/viewforum_body.html b/phpBB/styles/prosilver/template/viewforum_body.html index 7478ba4e28..a3fb8aa6da 100644 --- a/phpBB/styles/prosilver/template/viewforum_body.html +++ b/phpBB/styles/prosilver/template/viewforum_body.html @@ -242,7 +242,6 @@ <!-- ENDIF --> <!-- INCLUDE jumpbox.html --> -<span class="clear"></span> <!-- IF S_DISPLAY_ONLINE_LIST --> <div class="stat-block online-list"> diff --git a/phpBB/styles/prosilver/theme/buttons.css b/phpBB/styles/prosilver/theme/buttons.css index 4fbec07c32..18c71d251e 100644 --- a/phpBB/styles/prosilver/theme/buttons.css +++ b/phpBB/styles/prosilver/theme/buttons.css @@ -62,6 +62,10 @@ margin-right: 5px; } +#jumpbox .dropdown-select { + margin: 0; +} + /* Big button images */ .reply-icon:before, .pmreply-icon:before { background-position: -20px 0; } .reply-icon:hover:before, .pmreply-icon:hover:before { background-position: -20px -20px; } diff --git a/phpBB/styles/prosilver/theme/common.css b/phpBB/styles/prosilver/theme/common.css index ba567fd466..749d02c50c 100644 --- a/phpBB/styles/prosilver/theme/common.css +++ b/phpBB/styles/prosilver/theme/common.css @@ -1105,6 +1105,14 @@ form > p.post-notice strong { line-height: 20px; } +#jumpbox { + margin: 5px 0; +} + +.stat-block { + clear: both; +} + #top { position: absolute; top: -20px; |