fix: add cursor pointer to clickable elements (#6255) - #6663
Merged
Conversation
Add cursor: pointer to kilo-ui interactive components that were missing it: - Tabs trigger - Checkbox - Switch - Accordion trigger - Collapsible trigger (new override file) - Radio group item label (new override file) The upstream ui package sets cursor: default on these elements. The kilo-ui override layer already had cursor: pointer on Button, IconButton, Select, List items, ContextMenu items, and DropdownMenu items, but these six components were missed.
markijbema
marked this pull request as ready for review
March 5, 2026 14:58
markijbema
enabled auto-merge
March 5, 2026 14:58
imanolmzd-svg
approved these changes
Mar 5, 2026
slamj1
pushed a commit
to slamj1/kilocode
that referenced
this pull request
May 16, 2026
jliounis
pushed a commit
to jliounis/kilocode
that referenced
this pull request
May 18, 2026
jliounis
pushed a commit
to jliounis/kilocode
that referenced
this pull request
May 18, 2026
…ckable-elements fix: add cursor pointer to clickable elements (Kilo-Org#6255)
t7tran
pushed a commit
to t7tran/kilocode
that referenced
this pull request
Aug 14, 2026
t7tran
pushed a commit
to t7tran/kilocode
that referenced
this pull request
Aug 14, 2026
…ckable-elements fix: add cursor pointer to clickable elements (Kilo-Org#6255)
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.
Summary
cursor: pointerto kilo-ui interactive components that were missing it, fixing the issue where clickable elements in the webview don't change the mouse cursor on hover.packages/ui/layer setscursor: defaulton interactive elements (Apple HIG-style). The kilo-ui override layer already addedcursor: pointerfor Button, IconButton, Select, List items, ContextMenu items, and DropdownMenu items — but six component types were missed.Components Fixed
packages/kilo-ui/src/components/tabs.csscursor: pointerto[data-slot="tabs-trigger"]packages/kilo-ui/src/components/checkbox.csscursor: pointerto[data-component="checkbox"]packages/kilo-ui/src/components/switch.csscursor: pointerto[data-component="switch"]packages/kilo-ui/src/components/accordion.csscursor: pointerto[data-slot="accordion-trigger"]packages/kilo-ui/src/components/collapsible.csscursor: pointeron[data-slot="collapsible-trigger"]packages/kilo-ui/src/components/radio-group.csscursor: pointeron[data-slot="radio-group-item-label"]Closes #6255