framework icon indicating copy to clipboard operation
framework copied to clipboard

[1.x & 2.x] Actions Dropdown not Overflowing in Admin Users List

Open DavideIadeluca opened this issue 10 months ago • 1 comments

Current Behavior

The user actions dropdown in the admin user list doesn't overflow the container, admin needs to scroll down to see the full dropdown

Steps to Reproduce

  1. Go to https://demo.flarum.site/admin#/users?page=1
  2. Scroll down to the very last user on the first page
  3. Open the actions dropdown
  4. The Dropdown is cut off and the admin needs to scroll down to fully see the dropdown

Expected Behavior

Ideally, the dropdown can overflow the container

Screenshots

Image

Environment

  • Flarum version: 1.x & 2.x
  • Website URL: https://demo.flarum.site/admin#/users?page=1
  • Webserver:
  • Hosting environment:
  • PHP version:
  • Browser: Chrome 132.0.6834.160

Output of php flarum info

Output of "php flarum info", run this in terminal in your Flarum directory.

Possible Solution

Since overflow-x: auto; apparently blocks setting overflow-y: scroll, we would have to add a wrapper around the <section />, set overflow-x: auto; on the new wrapper and change the overflow on the existing <section />

Additional Context

No response

DavideIadeluca avatar Feb 11 '25 07:02 DavideIadeluca

We're having a similar issue with a dropdown inside the Group Edit Modal in the admin area:

Image

There are more entries underneath "Vrienden" that are not visible.

luceos avatar Mar 04 '25 12:03 luceos

Partially addressed in https://github.com/flarum/framework/pull/4208 (1.8.11)

imorland avatar Oct 03 '25 10:10 imorland