Skip to content
Merged
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
21 changes: 20 additions & 1 deletion src/vs/sessions/browser/media/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,33 @@
background-color: var(--vscode-sideBar-background);
}

/* ---- Chat Layout ---- */

/* Remove max-width from the session container so the scrollbar extends full width */
.agent-sessions-workbench .interactive-session {
max-width: none;
}

/* Constrain content items to the same max-width, centered */
.agent-sessions-workbench .interactive-session .interactive-item-container {
max-width: 950px;
margin: 0 auto;
}

Comment thread
bpasero marked this conversation as resolved.
.agent-sessions-workbench .interactive-session > .chat-suggest-next-widget {
max-width: 950px;
margin: 0 auto;
}

/* ---- Chat Input ---- */

.agent-sessions-workbench .interactive-session .chat-input-container {
border-radius: var(--vscode-cornerRadius-large) !important;
}

.agent-sessions-workbench .interactive-session .interactive-input-part {
margin: 0 8px !important;
max-width: 950px;
margin: 0 auto !important;
Comment thread
bpasero marked this conversation as resolved.
display: inherit !important;
/* Align with changes view */
padding: 4px 0 6px 0 !important;
Expand Down
Loading