Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 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
3 changes: 2 additions & 1 deletion webview-ui/src/components/chat/ChatRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1356,13 +1356,14 @@ export const ChatRowContent = ({
<User className="w-4 shrink-0" aria-label="User icon" />
<span style={{ fontWeight: "bold" }}>{t("chat:feedback.youSaid")}</span>
</div>
{/* kilocode_change: distinctive user message styling with theme-aware colors for better visibility */}
Comment thread
lambertjosh marked this conversation as resolved.
Outdated
<div
className={cn(
"ml-6 border rounded-sm whitespace-pre-wrap",
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