From fb5695795f5478499e0f2d279d1f739515a2ab28 Mon Sep 17 00:00:00 2001 From: Rafael dos Santos Silva Date: Thu, 29 Sep 2022 11:35:01 -0300 Subject: [PATCH] UX: Fix composer position on Firefox for Android (#18403) Co-authored-by: Jarek Radosz --- app/assets/stylesheets/mobile/compose.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/mobile/compose.scss b/app/assets/stylesheets/mobile/compose.scss index 3e610a7c065..ef83fdbb958 100644 --- a/app/assets/stylesheets/mobile/compose.scss +++ b/app/assets/stylesheets/mobile/compose.scss @@ -33,6 +33,14 @@ } } + // Firefox for Android hack + @supports (-moz-appearance: none) { + .keyboard-visible #reply-control.open { + position: sticky; + height: calc(100vh - var(--header-offset, 4em)); + } + } + .reply-to { justify-content: space-between; margin-bottom: 6px;