-
-
Notifications
You must be signed in to change notification settings - Fork 861
Closed
Labels
Description
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
- Go to https://demo.flarum.site/admin#/users?page=1
- Scroll down to the very last user on the first page
- Open the actions dropdown
- 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
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
hansmorb