|
|
@@ -36,7 +36,7 @@ function AlertDialogContent({ className, ...props }: React.ComponentProps<typeof
|
|
|
<AlertDialogPrimitive.Content
|
|
|
data-slot="alert-dialog-content"
|
|
|
className={cn(
|
|
|
- "bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg",
|
|
|
+ "bg-vscode-editor-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-3 rounded-sm border border-vscode-panel-border p-4 shadow-lg duration-200 sm:max-w-md",
|
|
|
className,
|
|
|
)}
|
|
|
{...props}
|
|
|
@@ -46,20 +46,14 @@ function AlertDialogContent({ className, ...props }: React.ComponentProps<typeof
|
|
|
}
|
|
|
|
|
|
function AlertDialogHeader({ className, ...props }: React.ComponentProps<"div">) {
|
|
|
- return (
|
|
|
- <div
|
|
|
- data-slot="alert-dialog-header"
|
|
|
- className={cn("flex flex-col gap-2 text-center sm:text-left", className)}
|
|
|
- {...props}
|
|
|
- />
|
|
|
- )
|
|
|
+ return <div data-slot="alert-dialog-header" className={cn("flex flex-col gap-1 text-left", className)} {...props} />
|
|
|
}
|
|
|
|
|
|
function AlertDialogFooter({ className, ...props }: React.ComponentProps<"div">) {
|
|
|
return (
|
|
|
<div
|
|
|
data-slot="alert-dialog-footer"
|
|
|
- className={cn("flex flex-col-reverse gap-2 sm:flex-row sm:justify-end", className)}
|
|
|
+ className={cn("flex flex-row justify-end gap-2 mt-4", className)}
|
|
|
{...props}
|
|
|
/>
|
|
|
)
|
|
|
@@ -69,7 +63,10 @@ function AlertDialogTitle({ className, ...props }: React.ComponentProps<typeof A
|
|
|
return (
|
|
|
<AlertDialogPrimitive.Title
|
|
|
data-slot="alert-dialog-title"
|
|
|
- className={cn("text-lg font-semibold", className)}
|
|
|
+ className={cn(
|
|
|
+ "text-base font-medium text-vscode-editor-foreground flex items-center gap-2 text-left",
|
|
|
+ className,
|
|
|
+ )}
|
|
|
{...props}
|
|
|
/>
|
|
|
)
|
|
|
@@ -82,18 +79,36 @@ function AlertDialogDescription({
|
|
|
return (
|
|
|
<AlertDialogPrimitive.Description
|
|
|
data-slot="alert-dialog-description"
|
|
|
- className={cn("text-muted-foreground text-sm", className)}
|
|
|
+ className={cn("text-vscode-descriptionForeground text-sm text-left", className)}
|
|
|
{...props}
|
|
|
/>
|
|
|
)
|
|
|
}
|
|
|
|
|
|
function AlertDialogAction({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Action>) {
|
|
|
- return <AlertDialogPrimitive.Action className={cn(buttonVariants(), className)} {...props} />
|
|
|
+ return (
|
|
|
+ <AlertDialogPrimitive.Action
|
|
|
+ className={cn(
|
|
|
+ buttonVariants(),
|
|
|
+ "bg-vscode-button-background text-vscode-button-foreground hover:bg-vscode-button-hoverBackground border border-transparent h-6 px-3 py-1",
|
|
|
+ className,
|
|
|
+ )}
|
|
|
+ {...props}
|
|
|
+ />
|
|
|
+ )
|
|
|
}
|
|
|
|
|
|
function AlertDialogCancel({ className, ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Cancel>) {
|
|
|
- return <AlertDialogPrimitive.Cancel className={cn(buttonVariants({ variant: "outline" }), className)} {...props} />
|
|
|
+ return (
|
|
|
+ <AlertDialogPrimitive.Cancel
|
|
|
+ className={cn(
|
|
|
+ buttonVariants({ variant: "outline" }),
|
|
|
+ "bg-vscode-button-secondaryBackground text-vscode-button-secondaryForeground hover:bg-vscode-button-secondaryHoverBackground border border-vscode-button-border h-6 px-3 py-1",
|
|
|
+ className,
|
|
|
+ )}
|
|
|
+ {...props}
|
|
|
+ />
|
|
|
+ )
|
|
|
}
|
|
|
|
|
|
export {
|