From 45458b240b8c1b0453dcb5fcb75c54ccdb396eb9 Mon Sep 17 00:00:00 2001 From: Cesar G Date: Sat, 31 May 2014 17:00:18 -0700 Subject: [ticket/12013] Prevent the dropdown scrollbar from overlapping the content. PHPBB3-12013 --- phpBB/assets/javascript/core.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'phpBB/assets/javascript/core.js') diff --git a/phpBB/assets/javascript/core.js b/phpBB/assets/javascript/core.js index 02fb3ed08d..2c35875dca 100644 --- a/phpBB/assets/javascript/core.js +++ b/phpBB/assets/javascript/core.js @@ -1296,6 +1296,10 @@ phpbb.toggleDropdown = function() { else if ((offset + width + 2) > windowWidth) { $this.css('margin-left', (windowWidth - offset - width - 2) + 'px'); } + + // Check whether the vertical scrollbar is present. + $this.toggleClass('dropdown-nonscroll', this.scrollHeight === $this.innerHeight()); + }); var freeSpace = parent.offset().left - 4; -- cgit v1.2.1