From 2e6d06afa7a0ae0df7a76510f9fd409d152eaf7e Mon Sep 17 00:00:00 2001 From: Jay Ohms Date: Tue, 3 Mar 2026 05:22:28 -0500 Subject: [PATCH] Mobile: improve search screen (#2636) * Disable search results nested scrolling behavior for mobile apps * Display the native search input clear button in the native apps --- app/assets/stylesheets/native.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/assets/stylesheets/native.css b/app/assets/stylesheets/native.css index 92c2ef72d..e51304e9d 100644 --- a/app/assets/stylesheets/native.css +++ b/app/assets/stylesheets/native.css @@ -100,6 +100,14 @@ /* Search /* ------------------------------------------------------------------------ */ + .search { + overscroll-behavior: auto; + } + + .search__input::-webkit-search-cancel-button { + display: inline-block; + } + .search__title { text-decoration: none; }