Fix no auto-focus of search filter on issue/PR properties #27

This commit is contained in:
lutinglt
2026-02-26 11:51:55 +08:00
parent d65a5e8f67
commit c6134161bf
2 changed files with 7 additions and 0 deletions

View File

@@ -7,3 +7,5 @@
##### Template File ##### Template File
### 🐞 Fix ### 🐞 Fix
- Fix no auto-focus of search filter on issue/PR properties #27

View File

@@ -741,6 +741,10 @@ export const issueSidebar = css`
} }
} }
} }
// 修复菜单下拉打开时, 无法聚焦输入框
.menu input {
transition: none;
}
} }
// 时间追踪 // 时间追踪
> div:not([class]):not([id]) { > div:not([class]):not([id]) {
@@ -807,6 +811,7 @@ export const issueSidebar = css`
} }
} }
} }
// 修复
} }
} }
} }