From d43d4b3de9682b2c040c3a88aa106409b6f2d3b0 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Tue, 19 Aug 2025 21:14:12 +0530 Subject: [PATCH 1/2] fix(onlyoffice): adjust iframe height to ensure bottom bar is visible --- core/css/server.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/css/server.css b/core/css/server.css index bc66d62c..8b5f91ed 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -423,6 +423,10 @@ input.primary, #body-public.onlyoffice-inline #content.app-files_sharing{ padding-bottom: unset; } +#body-user #content.app-onlyoffice #app > iframe { + height: calc(100dvh - 106px); + margin-top: 0px; +} #header #notifications .notifications-button__icon { display: none; } -- GitLab From 889e0bef15b6fc66b0c7de133472d268bb85a79e Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Tue, 19 Aug 2025 22:19:01 +0530 Subject: [PATCH 2/2] fix(onlyoffice): ensure bottom bar visible by adjusting iframe height for existing files --- core/css/server.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/css/server.css b/core/css/server.css index 8b5f91ed..411de7b0 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -423,10 +423,14 @@ input.primary, #body-public.onlyoffice-inline #content.app-files_sharing{ padding-bottom: unset; } -#body-user #content.app-onlyoffice #app > iframe { +#body-user #content.app-onlyoffice #app > iframe{ height: calc(100dvh - 106px); margin-top: 0px; } +#body-public #content.app-public #app > iframe { + height: calc(100dvh - 106px); +} + #header #notifications .notifications-button__icon { display: none; } -- GitLab