Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/fix-user-message-visibility.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---

Fix user message visibility by using distinctive theme-aware colors
2 changes: 1 addition & 1 deletion webview-ui/src/components/chat/ChatRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1362,7 +1362,7 @@ export const ChatRowContent = ({
isEditing ? "overflow-visible" : "overflow-hidden", // kilocode_change
isEditing
? "bg-vscode-editor-background text-vscode-editor-foreground"
: "cursor-text p-1 bg-vscode-sideBar-background text-vscode-foreground", // kilocode_change
: "cursor-text p-1 bg-vscode-editor-background text-vscode-editor-foreground border-vscode-editorGroup-border", // kilocode_change
)}>
{isEditing ? (
<div className="flex flex-col gap-2">
Expand Down
Loading