aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-10-23 23:46:29 +0300
committerVjacheslav Trushkin <cyberalien@gmail.com>2013-10-24 18:36:18 +0300
commit31345800078791e74c8935936c8e7edafb2a2797 (patch)
treecb4993b05de7fd0d8a163b6e1b8fc9b2c9cecbad /phpBB
parentfb3a4668059b2002df1198f3ccc1f00e01e4d084 (diff)
downloadforums-31345800078791e74c8935936c8e7edafb2a2797.tar
forums-31345800078791e74c8935936c8e7edafb2a2797.tar.gz
forums-31345800078791e74c8935936c8e7edafb2a2797.tar.bz2
forums-31345800078791e74c8935936c8e7edafb2a2797.tar.xz
forums-31345800078791e74c8935936c8e7edafb2a2797.zip
[ticket/11956] More fixes for responsive minitabs
PHPBB3-11956
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/styles/prosilver/template/forum_fn.js3
-rw-r--r--phpBB/styles/prosilver/theme/cp.css1
2 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js
index 9895510a1b..0da3c77d53 100644
--- a/phpBB/styles/prosilver/template/forum_fn.js
+++ b/phpBB/styles/prosilver/template/forum_fn.js
@@ -934,7 +934,8 @@ function parse_document(container)
responsive = false;
links.each(function() {
- maxHeight = Math.max(maxHeight, $(this).outerHeight(true));
+ var link = $(this);
+ maxHeight = Math.max(maxHeight, Math.max(link.outerHeight(true), link.parent().outerHeight(true)));
})
function check() {
diff --git a/phpBB/styles/prosilver/theme/cp.css b/phpBB/styles/prosilver/theme/cp.css
index 71b63a9707..2003fef954 100644
--- a/phpBB/styles/prosilver/theme/cp.css
+++ b/phpBB/styles/prosilver/theme/cp.css
@@ -105,6 +105,7 @@ ul.cplist {
.tabs-container #minitabs {
float: right;
margin-top: 19px;
+ max-width: 50%;
}
.tabs-container:after {