fix: 修复固定列表项鼠标悬停显示移动光标的问题#549
Open
Ethan0x0000 wants to merge 2 commits into
Open
Conversation
Windows 上固定项的可拖拽列表使用了 cursor: move,导致鼠标悬停时显示 四向移动光标而非点击手指样式,改为 cursor: pointer。 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Code Review
This pull request updates the cursor style of application items in CommandList.vue from move to pointer. The review feedback correctly points out that cursor: pointer is already defined in the .app-item CSS class, making the inline style redundant, and suggests removing it to keep the code clean.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
问题
Windows 上唤起输入框后,鼠标悬停在已固定的指令图标上时,显示的是四向移动光标(move)而非点击手指样式(pointer)。
原因
CommandList.vue中可拖拽列表项模板硬编码了style="cursor: move",导致所有固定项始终显示移动光标。修复
将
cursor: move改为cursor: pointer。vuedraggable 在拖动时会自行处理光标样式,不影响拖拽功能。