Skip to content

Commit a9f21c4

Browse files
committed
Visual and copy fixes
1 parent 3b68f71 commit a9f21c4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

webview-ui/src/components/chat/TaskHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const TaskHeader = ({
9292
onClick={() => openUpsell()}
9393
dismissOnClick={false}
9494
variant="banner">
95-
{t("chat:cloud.upsell.longRunningTask")}
95+
{t("cloud:upsell.longRunningTask")}
9696
</DismissibleUpsell>
9797
)}
9898
<div

webview-ui/src/components/common/DismissibleUpsell.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,9 @@ const DismissibleUpsell = memo(
9898

9999
const variants = {
100100
banner: {
101-
container: "p-2 bg-vscode-button-background text-vscode-button-foreground",
102-
button: "text-vscode-button-foreground",
101+
container:
102+
"p-2 bg-vscode-badge-background/80 text-vscode-badge-foreground border-vscode-dropdown-border border",
103+
button: "text-vscode-badge-foreground",
103104
},
104105
default: {
105106
container: "bg-vscode-notifications-background text-vscode-notifications-foreground",
@@ -141,7 +142,7 @@ const DismissibleUpsell = memo(
141142
}
142143
}}>
143144
{icon && icon}
144-
<div>{children}</div>
145+
<div className="">{children}</div>
145146
<button
146147
className={buttonClasses}
147148
onClick={(e) => {

0 commit comments

Comments
 (0)