From 5c94157297e0461c1f6484f358fff46ceeb706a8 Mon Sep 17 00:00:00 2001 From: Maksim Sukharev Date: Fri, 15 Dec 2023 11:36:35 +0100 Subject: [PATCH 1/4] fix: use body element as modal container if not in fullscreen Signed-off-by: Maksim Sukharev --- src/App.vue | 4 ++++ src/components/CallView/shared/ViewerOverlayCallView.vue | 2 +- src/store/uiModeStore.js | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index 0d88e587e47..2c0bde32d64 100644 --- a/src/App.vue +++ b/src/App.vue @@ -676,6 +676,10 @@ export default { z-index: 10001 !important; } +/* FIXME: remove after https://github.com/nextcloud-libraries/nextcloud-vue/pull/4959 is released */ +body .modal-wrapper * { + box-sizing: border-box; +}