From 17fe0849acbd9c4432fda6cc5676ebd82504b7d0 Mon Sep 17 00:00:00 2001 From: Eskalifer1 Date: Thu, 20 Nov 2025 21:11:46 +0200 Subject: [PATCH 1/3] fix:74592: added selector for search icon to aplly correct attributes in help.expensify --- docs/assets/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js index 61300e0013be..1c896e0f21d5 100644 --- a/docs/assets/js/main.js +++ b/docs/assets/js/main.js @@ -121,7 +121,7 @@ function openSidebar() { // Function to adapt & fix cropped SVG viewBox from Google based on viewport (Mobile or Tablet-Desktop) function changeSVGViewBoxGoogle() { // Get all inline Google SVG elements on the page - const svgsGoogle = document.querySelectorAll('svg[data-source]:not(.logo)'); + const svgsGoogle = document.querySelectorAll('svg[data-source]:not(.logo), .gsc-search-button.gsc-search-button-v2 svg'); Array.from(svgsGoogle).forEach((svg) => { // Set the viewBox attribute to '0 0 13 13' to make the svg fit in the mobile view From 37419b56431ff7fb96b8b30fbd127599b3cdc6ba Mon Sep 17 00:00:00 2001 From: Eskalifer1 Date: Thu, 20 Nov 2025 21:32:23 +0200 Subject: [PATCH 2/3] fix:74592: fixed input placeholder on search page --- docs/_sass/_search-bar.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/_sass/_search-bar.scss b/docs/_sass/_search-bar.scss index 2a546d3a5be4..d3bad87dd5a0 100644 --- a/docs/_sass/_search-bar.scss +++ b/docs/_sass/_search-bar.scss @@ -83,6 +83,7 @@ /* This input is in #___gcse_0 search bar */ input#gsc-i-id1.gsc-input { + background: none !important; background-color: var(--color-appBG) !important; padding: 15px 0px 0px !important; pointer-events: auto; From 8e5648c87398f6bdc3a6fff1171ce40dfd6ad29a Mon Sep 17 00:00:00 2001 From: Eskalifer1 Date: Fri, 21 Nov 2025 13:46:07 +0200 Subject: [PATCH 3/3] chore: C+ comment --- docs/_sass/_search-bar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_sass/_search-bar.scss b/docs/_sass/_search-bar.scss index d3bad87dd5a0..fcf81a1fbf05 100644 --- a/docs/_sass/_search-bar.scss +++ b/docs/_sass/_search-bar.scss @@ -83,7 +83,7 @@ /* This input is in #___gcse_0 search bar */ input#gsc-i-id1.gsc-input { - background: none !important; + background-image: none !important; background-color: var(--color-appBG) !important; padding: 15px 0px 0px !important; pointer-events: auto;