mirror of
https://github.com/bwya77/vscode-dark-islands.git
synced 2026-05-09 08:25:35 +02:00
[GH-ISSUE #81] interactive chat window needs to grow upwards instead of downwards #58
Labels
No labels
bug
bug
duplicate
enhancement
enhancement
Missing Info
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vscode-dark-islands#58
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @SohamRupaye on GitHub (Feb 20, 2026).
Original GitHub issue: https://github.com/bwya77/vscode-dark-islands/issues/81
Description
The interactive copilot chat window positioning issue. The chat input needs to grow upward instead of downward when text wraps to multiple lines.
Steps to reproduce
Open the interactive chat window
Type some messsage which will exceed 2 lines and chat will grow down hiding the buttons to select mode, send, target session and agent type.
A change needed in settings.json, update chat container to this-
".chat-input-container": {
"background-color": "var(--islands-bg-surface) !important",
"border-radius": "var(--islands-widget-radius) !important",
"border-top": "1px solid rgba(255,255,255,0.1) !important",
"border-left": "1px solid rgba(255,255,255,0.06) !important",
"border-bottom": "1px solid rgba(255,255,255,0.02) !important",
"border-right": "1px solid rgba(255,255,255,0.02) !important",
"overflow": "visible !important",
"display": "flex !important",
"flex-direction": "column !important",
"align-items": "stretch !important"
},
".chat-input-container .monaco-inputbox": {
"background-color": "var(--islands-bg-surface) !important"
},
".interactive-input-part": {
"border-radius": "var(--islands-widget-radius) !important",
"overflow": "visible !important",
"display": "flex !important",
"flex-direction": "column-reverse !important",
"align-items": "stretch !important"
},
".interactive-input-part .interactive-input-and-execute-toolbar": {
"display": "flex !important",
"flex-direction": "column-reverse !important"
}
@iamhelitha commented on GitHub (Mar 5, 2026):
I faced this same issue.