Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion webview-ui/src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const buttonVariants = cva(
ghost: "hover:bg-accent hover:text-accent-foreground",
destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90",
outline:
"border border-foreground/50 text-secondary-foreground bg-transparent hover:bg-secondary hover:text-accent-foreground",
"border border-vscode-foreground/30 text-vscode-foreground bg-transparent hover:bg-secondary hover:text-accent-foreground",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The code change contradicts the PR description. The description states the solution is to use border-vscode-input-border, but this commit actually changes FROM border-vscode-input-border TO border-vscode-foreground/30. The previous commit (bd1670e) had already implemented border-vscode-input-border, so this new commit reverses that change. Either the code should use border-vscode-input-border as described, or the PR description needs to be updated to reflect that border-vscode-foreground/30 is the intended solution.

Fix it with Roo Code or mention @roomote and request a fix.

link: "text-primary underline-offset-4 hover:underline",
combobox:
"border border-vscode-dropdown-border focus-visible:border-vscode-focusBorder bg-vscode-dropdown-background hover:bg-transparent text-vscode-dropdown-foreground font-normal",
Expand Down
Loading