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
2 changes: 1 addition & 1 deletion src/vs/sessions/SESSIONS_LIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ The sessions list defines menu IDs that contributions can target to add actions.

| Menu | Constant | Where it appears | Use for |
|------|----------|------------------|---------|
| `SessionSectionToolbar` | `SessionSectionToolbarMenuId` | Toolbar on section headers (Pinned, workspace groups, Done) | Section-scoped actions like "New Session for Workspace", "Archive All", "Restore All". |
| `SessionSectionToolbar` | `SessionSectionToolbarMenuId` | Toolbar on section headers (Pinned, workspace groups, Done) | Section-scoped actions like "New Session for Workspace", "Archive All", "Restore All". Section headers also show a collapsible chevron on hover/focus; the chevron uses the same ghost icon hover background token as toolbar icon buttons. |

### View Title Menus

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,10 @@
display: none;
color: var(--vscode-descriptionForeground);
font-size: var(--vscode-codiconFontSize-compact, 12px);
width: 22px;
height: 22px;
border-radius: 5px;
justify-content: center;
}
}

Expand All @@ -393,6 +397,10 @@
align-items: center;
}

.monaco-list-row .session-section .session-section-chevron.collapsible:hover {
background-color: var(--vscode-toolbar-hoverBackground);
}

.sessions-list-control {

/* Workspace headers and folder toggles use label color changes instead of row background fills for hover/focus/selection. */
Expand Down
Loading