Uh oh!
There was an error while loading. Please reload this page.
Fix boundaries of app token actions menu - #22998
Conversation
Signed-off-by: Julius Härtl <jus@bitgrid.net>
juliusknorr
commented
Sep 22, 2020
/compile amend / |
juliusknorr
commented
Sep 22, 2020
/backport to stable20 |
raimund-schluessler
commented
Sep 22, 2020
@juliushaertl If you already start to fix this on a per-app basis, how about doing it with CSS instead like so (see #22606 (comment)) body { /* Maybe add "#body-settings" */min-height:100%;
height: auto; /* necessary to overwrite the server css rule */
}by adding this to the settings app CSS. It would need a bit of testing, that it doesn't break anything on the settings app, but it should also fix the issue with the app token menu and it would additionally also fix the status selection popover which has the same issue when scrolled down. |
juliusknorr
commented
Sep 22, 2020
Ah indeed that would make more sense then, since the bdoy is the scroll container anyways there is no reason to limit it to 100% height (for the apps that don't have a custom scroll container) |
juliusknorr
commented
Sep 22, 2020
Closing then and I'll prepare an individual fix for the whole settings app. |
Before:
See no menu (since it has boundaries to the body element which is out of the visible area)
After:
See the menu
See nextcloud-libraries/nextcloud-vue#1384 for the background of this issue, though I cannot see any easy solution for this now to fix this in the vue lib.