From 993c7e515f1b3789d9d8188133bbc2e1acf0292f Mon Sep 17 00:00:00 2001 From: "Dedy F. Setyawan" Date: Thu, 22 Jan 2026 21:13:50 +0700 Subject: [PATCH 1/2] fix(ui): remove tailwind ring shadow from docsearch input to prevent overlap Signed-off-by: Dedy F. Setyawan --- src/css/custom.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/css/custom.css b/src/css/custom.css index 550a78828..8b753a2e2 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -363,4 +363,10 @@ article:has(.redoc-container) { /* Hide menu border on API viewer pages */ .redoc-container .menu-content { border-right: none !important; -} \ No newline at end of file +} + +.DocSearch-Input:focus { + --tw-ring-offset-shadow: none; + --tw-ring-shadow: none; + box-shadow: none; +} From adbbddb097832bc8c57bff9b67b08e95d1e50778 Mon Sep 17 00:00:00 2001 From: Michael Beemer Date: Fri, 23 Jan 2026 14:05:56 -0500 Subject: [PATCH 2/2] Update src/css/custom.css Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Michael Beemer --- src/css/custom.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/css/custom.css b/src/css/custom.css index 8b753a2e2..195b2a30a 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -365,6 +365,10 @@ article:has(.redoc-container) { border-right: none !important; } +/* + * Fixes an issue where the focus ring from @tailwindcss/forms + * overlaps with the Algolia DocSearch component's internal UI. + */ .DocSearch-Input:focus { --tw-ring-offset-shadow: none; --tw-ring-shadow: none;