From c6134161bf646bcdb3afa3e6dcd4ac9e136c4aff Mon Sep 17 00:00:00 2001 From: lutinglt Date: Thu, 26 Feb 2026 11:51:55 +0800 Subject: [PATCH] Fix no auto-focus of search filter on issue/PR properties #27 --- CHANGELOG.md | 2 ++ styles/components/issue.ts | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e625932..43db074 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,3 +7,5 @@ ##### Template File ### 🐞 Fix + +- Fix no auto-focus of search filter on issue/PR properties #27 diff --git a/styles/components/issue.ts b/styles/components/issue.ts index 05ff6d1..770f8b0 100644 --- a/styles/components/issue.ts +++ b/styles/components/issue.ts @@ -741,6 +741,10 @@ export const issueSidebar = css` } } } + // 修复菜单下拉打开时, 无法聚焦输入框 + .menu input { + transition: none; + } } // 时间追踪 > div:not([class]):not([id]) { @@ -807,6 +811,7 @@ export const issueSidebar = css` } } } + // 修复 } } }