Android keyboard overlaps text when flagging with Something else

The screenshot says it all - you can’t see what you are typing.

Latest Android Chrome, and the screenshot is taken here at Meta.

4 Likes

I can confirm this is happening on meta. I am also on android & chrome

4 Likes

Hello,

I can confirm :slightly_smiling_face: This is actually happens on all modal where the keyboard show up. I made a quick fix while the fix is coming. :slightly_smiling_face:

Mobile / CSS

.fixed-modal {
  html.keyboard-visible.mobile-device:not(.ios-device) & {
    height: calc(100% - env(keyboard-inset-height));
    .modal-inner-container {
      margin: auto;
    }
  }
}

Edit: I just noticed now on iPad the html tag not contains the .ios-device class and this code is activating on iPad mobile view too. So probable a good idea to restrict it to mobile devices. I’ve changed this code.

6 Likes

This should be fixed in:

Thank you @ljpp for reporting this and thank you @Don for coming up with the fix!

2 Likes

This topic was automatically closed after 24 hours. New replies are no longer allowed.