From 98c30fec6739b14d3178f3b6af68a6fa9c64dfa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Fri, 9 Sep 2022 09:06:39 +0200 Subject: [PATCH] Adjust public share authentication page to layout changes in NC25 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The content now has a fixed position to be always centered in the page. However, in order to add the Talk sidebar the content in the public share authentication page needs to be "pushed" to the left when the sidebar is added, so the content position needs to have a relative position instead (which also keeps the same appearance of the fixed position when the Talk sidebar is not shown yet). Signed-off-by: Daniel Calviño Sánchez --- css/publicshareauth.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/css/publicshareauth.css b/css/publicshareauth.css index 765a403f37..559782083a 100644 --- a/css/publicshareauth.css +++ b/css/publicshareauth.css @@ -33,6 +33,8 @@ body.talk-sidebar-enabled #body-login { /* #body-login should be used to override the #content rules set in server. */ #body-login #content { + position: relative; + flex-grow: 1; flex-direction: column;