diff --git a/src/package.json b/src/package.json index 79a8162db..1cc5d24f5 100644 --- a/src/package.json +++ b/src/package.json @@ -3,7 +3,7 @@ "displayName": "%extension.displayName%", "description": "%extension.description%", "publisher": "matterai", - "version": "5.2.2", + "version": "5.2.3", "icon": "assets/icons/matterai-ic.png", "galleryBanner": { "color": "#FFFFFF", diff --git a/webview-ui/src/components/chat/ChatTextArea.tsx b/webview-ui/src/components/chat/ChatTextArea.tsx index 6c792382c..e43db0715 100644 --- a/webview-ui/src/components/chat/ChatTextArea.tsx +++ b/webview-ui/src/components/chat/ChatTextArea.tsx @@ -1458,15 +1458,25 @@ export const ChatTextArea = forwardRef( // Helper function to render the text area section const renderTextAreaSection = () => (
( "leading-vscode-editor-line-height", "cursor-text", "outline-none", - isEditMode ? "pt-1.5 pb-10 px-2" : "py-1.5 px-2", - isFocused - ? "border border-[var(--color-matterai-border)] outline-none" - : isDraggingOver - ? "border-2 border-dashed border-[var(--color-matterai-border)] outline-none" - : "border border-[var(--color-matterai-border)] outline-none", - isDraggingOver - ? "bg-[color-mix(in_srgb,var(--vscode-input-background)_95%,white)]" - : "bg-vscode-input-background", - "transition-background-color duration-150 ease-in-out", - "will-change-background-color", - "min-h-[110px]", + isEditMode ? "pt-1.5 pb-2 px-2" : "py-1.5 px-2", + "min-h-[80px]", "max-h-[calc(100vh/2.5)]", "box-border", - "rounded-xl", "overflow-x-hidden", "overflow-y-auto", - "pr-9", - "flex-none flex-grow", - "z-[2]", + "flex-grow", "scrollbar-none", "scrollbar-hide", - "pb-14", "whitespace-pre-wrap", "break-words", )} @@ -1539,11 +1535,6 @@ export const ChatTextArea = forwardRef( caretColor: "var(--vscode-input-foreground)", }} /> - {/* kilocode_change {Transparent overlay at bottom of textArea to avoid text overlap } */} -
diff --git a/webview-ui/src/components/chat/ContextUsageIndicator.tsx b/webview-ui/src/components/chat/ContextUsageIndicator.tsx index 3369f2739..908cf3715 100644 --- a/webview-ui/src/components/chat/ContextUsageIndicator.tsx +++ b/webview-ui/src/components/chat/ContextUsageIndicator.tsx @@ -41,7 +41,7 @@ export const ContextUsageIndicator: React.FC = ({ cl
{percentage.toFixed(1)}% used
}> -
+
{/* Background circle */}