From ae1f556b745fb4dc2c07d400983b8206149d8f57 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Fri, 12 Mar 2021 17:23:03 +0100 Subject: [PATCH] [ticket/13713] Fix scrolling not working and not needed includes PHPBB3-13713 --- phpBB/styles/prosilver/template/posting_buttons.html | 2 -- phpBB/styles/prosilver/theme/mentions.css | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/phpBB/styles/prosilver/template/posting_buttons.html b/phpBB/styles/prosilver/template/posting_buttons.html index 944940045d..a2e9920b9e 100644 --- a/phpBB/styles/prosilver/template/posting_buttons.html +++ b/phpBB/styles/prosilver/template/posting_buttons.html @@ -26,8 +26,6 @@ } - - diff --git a/phpBB/styles/prosilver/theme/mentions.css b/phpBB/styles/prosilver/theme/mentions.css index 4b1e36f800..5163530b96 100644 --- a/phpBB/styles/prosilver/theme/mentions.css +++ b/phpBB/styles/prosilver/theme/mentions.css @@ -14,6 +14,8 @@ /* Mention dropdown ---------------------------------------- */ .mention-container { /* mention-container */ + overflow: auto; /* placed here for list to scroll with arrow key press */ + max-height: 200px; text-align: left; border-radius: 2px; position: absolute; @@ -22,8 +24,6 @@ } .mention-container ul { /* mention-list */ - overflow: auto; /* placed here for list to scroll with arrow key press */ - max-height: 200px; margin: 0; padding: 0; list-style-type: none;