diff --git a/app/src/search/spread.ts b/app/src/search/spread.ts index 99f89d220..503e8a74f 100644 --- a/app/src/search/spread.ts +++ b/app/src/search/spread.ts @@ -99,5 +99,6 @@ export const openSearch = async (hotkey: string, key?: string, notebookId?: stri }, dialog.element.querySelector(".b3-dialog__container").lastElementChild, () => { dialog.destroy(); }); - dialog.element.firstElementChild.setAttribute("style", "z-index:199"); // https://github.com/siyuan-note/siyuan/issues/3515 + // 搜索面板层级需高于 201(.protyle-hint) 且小于205(.block__popover) + dialog.element.firstElementChild.setAttribute("style", "z-index:202"); // https://github.com/siyuan-note/siyuan/issues/3515 };