🐛 fix: improve dropdown submenu scrolling for tag move functionality

- Set max-height to min(400px, 80vh) for dropdown submenus
- Ensures scrollable list when moving topics to tags with many assistants
- Fixes issue where some tags cannot be displayed in move-to dropdown

Fixes #10877
This commit is contained in:
suyao 2025-10-23 04:22:43 +08:00
parent 6f63eefa86
commit 09214a3020
No known key found for this signature in database

View File

@ -102,7 +102,7 @@
}
.ant-dropdown-menu .ant-dropdown-menu-sub {
max-height: 80vh;
max-height: min(400px, 80vh);
width: max-content;
overflow-y: auto;
overflow-x: hidden;