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
3 changes: 3 additions & 0 deletions src/vs/sessions/LAYOUT.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ This structure places the sidebar at the root level spanning the full window hei
| Panel | 300px height |
| Titlebar | Determined by `minimumHeight` (~30px) |

The sessions sidebar can be resized down to a minimum width of 170px.

### 4.3 Editor Modal

The main editor part is created but hidden (`display:none`). It exists for future use but is not currently visible. All editors are forced to open in the `ModalEditorPart` overlay via the standard `createModalEditorPart()` mechanism.
Expand Down Expand Up @@ -645,6 +647,7 @@ interface IPartVisibilityState {
| Date | Change |
|------|--------|
| 2026-04-03 | Updated `SessionsTitleBarWidget` to format active session titles as `{Title} · {repo name} ({git branch/worktree name})` when repository detail metadata is available, falling back to the worktree folder name when needed. |
| 2026-04-03 | Reduced the sessions left sidebar minimum resizable width from 270px to 170px so it can shrink significantly more while keeping the default 300px width unchanged |
| 2026-03-30 | Adjusted `.agent-sessions-titlebar-container` padding so it sits flush when the sidebar is visible and restores 16px left padding when the sidebar is hidden |
| 2026-03-26 | Updated the sessions sidebar appear animation so only the body content (`.part.sidebar > .content`) slides/fades in during reveal while the sidebar title/header and footer remain fixed |
| 2026-03-24 | Polished the sessions task configuration quick input modal to use stronger modal-style header chrome, increased horizontal padding in the quick input/form content, and added an explicit close action in the modal header |
Expand Down
2 changes: 1 addition & 1 deletion src/vs/sessions/browser/parts/sidebarPart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class SidebarPart extends AbstractPaneCompositePart {

//#region IView

readonly minimumWidth: number = 270;
readonly minimumWidth: number = 170;
readonly maximumWidth: number = Number.POSITIVE_INFINITY;
readonly minimumHeight: number = 0;
readonly maximumHeight: number = Number.POSITIVE_INFINITY;
Expand Down
Loading