From 547740bb6696c7f90ebb5ab3dbc06c6f084eb9e7 Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Thu, 9 Jul 2026 20:13:20 -0700 Subject: [PATCH] FN-7751: move mobile settings search toggle inline with section picker Relocates the mobile-only settings search icon toggle so it sits inline next to the section dropdown instead of its own row above it, tightening the mobile Settings header. - Move the settings-search-toggle button out of the standalone .settings-search row into a new .settings-mobile-section-picker-control-row alongside the mobile section setActiveSection(event.target.value as SectionId)} + > + {searchableSectionOptions.map((section) => { + const label = t(section.labelKey, section.label); + return ( + + ); + })} + + ) : ( +

{t("settings.search.noMobileOptions", "No sections match this search.")}

+ )} + {isMobileSettingsSearch && ( + // FNXC:Settings 2026-07-09-12:00: mobile-only search toggle now lives inline beside the section picker control so section navigation and search read as one compact row; FN-7713 expand/hide behavior and active-query preservation remain unchanged. + + )} + + + )} + {settingsSearchRowVisible && ( +
- )} - - {showMobileSectionPicker && ( -
- - {hasSettingsSearchResults ? ( - - ) : ( -

{t("settings.search.noMobileOptions", "No sections match this search.")}

- )}
)}