From af0a117e8adf2e4488180724604e6c024dc869f5 Mon Sep 17 00:00:00 2001 From: Neeraj Deshmukh Date: Wed, 4 Mar 2026 00:48:54 +0530 Subject: [PATCH] fix: side panel and search modal overlapping issue Signed-off-by: Neeraj Deshmukh --- _layouts/default.html | 2 +- css/customstyles.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index f48b6699b..dd6735eda 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -60,7 +60,7 @@ indexName: 'loopback', container: '#algolia-docsearch', searchParameters: { - facetFilters: ['language:en'], + facetFilters: ['lang:en'], optionalFilters: [`version:${currentVersion}`] } }); diff --git a/css/customstyles.css b/css/customstyles.css index e82c4a60d..8cfbe1041 100644 --- a/css/customstyles.css +++ b/css/customstyles.css @@ -312,6 +312,11 @@ ul#results-container a: hover { } /* end search */ +/* Docsearch container z-index overwrite */ +.DocSearch-Container { + z-index: 1000 !important; +} + .filter-options { margin-bottom: 20px; }