mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Merge f4eb4400e5 into b867ec9145
This commit is contained in:
commit
18bfbb2f13
2 changed files with 13 additions and 2 deletions
|
|
@ -9,8 +9,10 @@ const buttonVariants = cva(
|
|||
{
|
||||
variants: {
|
||||
variant: {
|
||||
primary: "bg-primary text-primary-foreground hover:bg-primary/70",
|
||||
secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/70",
|
||||
primary:
|
||||
"bg-primary text-primary-foreground hover:bg-primary/70 border border-vscode-button-background",
|
||||
secondary:
|
||||
"bg-secondary text-secondary-foreground hover:bg-secondary/70 border border-vscode-button-secondaryBackground",
|
||||
ghost: "hover:bg-accent hover:text-accent-foreground",
|
||||
destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90",
|
||||
outline:
|
||||
|
|
|
|||
|
|
@ -442,6 +442,15 @@ vscode-dropdown::part(listbox) {
|
|||
min-height: 16px;
|
||||
}
|
||||
|
||||
/* Ensure checkbox borders are visible in custom themes */
|
||||
vscode-checkbox::part(control) {
|
||||
border: 1px solid var(--vscode-input-border, var(--vscode-dropdown-border));
|
||||
}
|
||||
|
||||
vscode-checkbox::part(control):hover {
|
||||
border-color: var(--vscode-focusBorder);
|
||||
}
|
||||
|
||||
/**
|
||||
* @shadcn/ui Overrides / Hacks
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue