@codingame/monaco-vscode-katex-common 26.2.1 → 27.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/vscode/src/vs/platform/actionWidget/browser/actionWidgetDropdown.d.ts +10 -4
- package/vscode/src/vs/platform/actionWidget/browser/actionWidgetDropdown.js +35 -11
- package/vscode/src/vs/platform/actions/browser/buttonbar.d.ts +3 -0
- package/vscode/src/vs/platform/actions/browser/buttonbar.js +15 -4
- package/vscode/src/vs/platform/mcp/common/modelContextProtocolApps.d.ts +548 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/accessibility/chatAccessibilityProvider.js +15 -15
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.js +168 -15
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatElicitationActions.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatExecuteActions.js +67 -51
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatTitleActions.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatTitleActions.js +12 -11
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionHoverWidget.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsControl.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsControl.js +42 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsFilter.d.ts +12 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsFilter.js +63 -40
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsOpener.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer.d.ts +7 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer.js +77 -73
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/media/agentsessionsviewer.css +69 -32
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentWidgets.d.ts +23 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentWidgets.js +381 -83
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatImplicitContext.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatImplicitContext.js +28 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment.js +38 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions.js +109 -113
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions.js +16 -15
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingExplanationWidget.js +14 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem.js +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.d.ts +28 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessions.contribution.js +226 -123
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/searchableOptionPickerActionItem.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatAgentHover.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatAgentCommandContentPart.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatAnonymousRateLimitedPart.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatAttachmentsContentPart.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatAttachmentsContentPart.js +9 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatChangesSummaryPart.d.ts +1 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatChangesSummaryPart.js +7 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCodeCitationContentPart.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollapsibleContentPart.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollapsibleContentPart.js +22 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollapsibleMarkdownContentPart.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCollapsibleMarkdownContentPart.js +11 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatCommandContentPart.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatConfirmationContentPart.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatConfirmationWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatDiffBlockPart.d.ts +0 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatDiffBlockPart.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatDisabledClaudeHooksContentPart.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatErrorConfirmationPart.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatErrorConfirmationPart.js +6 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatExtensionsContentPart.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatHookContentPart.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatHookContentPart.js +5 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatInlineAnchorWidget.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatInlineAnchorWidget.js +26 -27
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMarkdownContentPart.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMarkdownContentPart.js +52 -22
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMcpServersInteractionContentPart.js +8 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatMultiDiffContentPart.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatProgressContentPart.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatProgressContentPart.js +20 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatPullRequestContentPart.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatPullRequestContentPart.js +11 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatQuestionCarouselPart.d.ts +36 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatQuestionCarouselPart.js +166 -45
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatQuotaExceededPart.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatReferencesContentPart.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatReferencesContentPart.js +16 -11
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatSubagentContentPart.d.ts +14 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatSubagentContentPart.js +98 -26
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatSuggestNextWidget.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTaskContentPart.js +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTextEditContentPart.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatThinkingContentPart.d.ts +10 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatThinkingContentPart.js +244 -80
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTipContentPart.d.ts +29 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTipContentPart.js +252 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTodoListWidget.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTodoListWidget.js +39 -18
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatToolInputOutputContentPart.d.ts +5 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatToolInputOutputContentPart.js +36 -23
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatToolOutputContentSubPart.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTreeContentPart.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatWorkspaceEditContentPart.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/codeBlockPart.d.ts +5 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/codeBlockPart.js +42 -37
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatCodeBlockPill.css +12 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatConfirmationWidget.css +48 -18
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatHookContentPart.css +9 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatInlineAnchorWidget.css +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatQuestionCarousel.css +351 -422
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatTerminalToolProgressPart.css +14 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatThinkingContent.css +102 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatTipContent.css +69 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/codeBlockPart.css +48 -15
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart.js +47 -23
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart.js +0 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatMcpAppModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatMcpAppSubPart.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatSimpleToolProgressPart.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatSimpleToolProgressPart.js +103 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart.js +15 -18
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart.js +63 -69
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart.js +7 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolInvocationPart.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolInvocationPart.js +41 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolOutputPart.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolPartUtilities.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart.js +6 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolProgressPart.js +13 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/toolInvocationParts/chatToolStreamingSubPart.js +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatDragAndDrop.js +11 -11
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatListRenderer.d.ts +17 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatListRenderer.js +310 -79
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatListWidget.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatListWidget.js +13 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatQuestionCarouselAutoReply.d.ts +35 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatQuestionCarouselAutoReply.js +441 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatWidget.d.ts +24 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatWidget.js +392 -86
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatFollowups.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputPart.d.ts +52 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputPart.js +271 -187
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatModelPicker.d.ts +68 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatModelPicker.js +668 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/delegationSessionPickerActionItem.d.ts +12 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/delegationSessionPickerActionItem.js +57 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modePickerActionItem.d.ts +2 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modePickerActionItem.js +78 -45
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem2.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem2.js +86 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/sessionTargetPickerActionItem.js +9 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/workspacePickerActionItem.js +4 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/media/chat.css +393 -134
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/media/chatViewWelcome.css +36 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatContextUsageDetails.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatContextUsageDetails.js +20 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatContextUsageWidget.d.ts +25 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatContextUsageWidget.js +141 -79
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/media/chatContextUsageWidget.css +18 -13
- package/vscode/src/vs/workbench/contrib/chat/common/widget/annotations.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/common/widget/annotations.js +108 -27
- package/vscode/src/vs/workbench/contrib/chat/common/widget/chatColors.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/widget/chatColors.js +20 -14
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatAffordance.d.ts +4 -6
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatAffordance.js +74 -32
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatController.d.ts +11 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatController.js +68 -27
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatEditorAffordance.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatEditorAffordance.js +125 -13
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatGutterAffordance.d.ts +8 -11
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatGutterAffordance.js +54 -45
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatOverlayWidget.d.ts +11 -10
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatOverlayWidget.js +172 -112
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatWidget.js +5 -5
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/media/inlineChat.css +0 -42
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/media/inlineChatEditorAffordance.css +27 -3
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/media/inlineChatOverlayWidget.css +83 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/common/inlineChat.d.ts +8 -1
- package/vscode/src/vs/workbench/contrib/inlineChat/common/inlineChat.js +58 -33
- package/vscode/src/vs/workbench/contrib/interactive/browser/replInputHintContentWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocolApps.d.ts +1 -548
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindWidget.js +2 -2
- package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditorInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/modelPickerActionItem.js +0 -187
- /package/vscode/src/vs/{workbench/contrib → platform}/mcp/common/modelContextProtocolApps.js +0 -0
|
@@ -124,6 +124,7 @@
|
|
|
124
124
|
0% {
|
|
125
125
|
background-position: 120% 0;
|
|
126
126
|
}
|
|
127
|
+
|
|
127
128
|
100% {
|
|
128
129
|
background-position: -120% 0;
|
|
129
130
|
}
|
|
@@ -234,6 +235,7 @@
|
|
|
234
235
|
visibility: hidden;
|
|
235
236
|
padding-top: 6px;
|
|
236
237
|
height: 22px;
|
|
238
|
+
transition: opacity 0.1s ease-in-out, visibility 0s linear 0.1s;
|
|
237
239
|
}
|
|
238
240
|
|
|
239
241
|
/* Show toolbar on hover and last response. Also show when the item has keyboard focus (focus-within) or when the surrounding list row is marked focused (monaco list keyboard navigation). */
|
|
@@ -243,9 +245,12 @@
|
|
|
243
245
|
.interactive-item-container.interactive-response:not(.chat-response-loading):focus-within .chat-footer-toolbar,
|
|
244
246
|
.interactive-item-container.interactive-response:not(.chat-response-loading):focus-within .chat-footer-toolbar .chat-footer-details,
|
|
245
247
|
.monaco-list-row.focused .interactive-item-container.interactive-response:not(.chat-response-loading) .chat-footer-toolbar,
|
|
246
|
-
.monaco-list-row.focused .interactive-item-container.interactive-response:not(.chat-response-loading) .chat-footer-toolbar .chat-footer-details
|
|
248
|
+
.monaco-list-row.focused .interactive-item-container.interactive-response:not(.chat-response-loading) .chat-footer-toolbar .chat-footer-details,
|
|
249
|
+
.interactive-item-container.interactive-response:not(.chat-response-loading).group-hovered .chat-footer-toolbar,
|
|
250
|
+
.interactive-item-container.interactive-response:not(.chat-response-loading).group-hovered .chat-footer-toolbar .chat-footer-details {
|
|
247
251
|
opacity: 1;
|
|
248
252
|
visibility: visible;
|
|
253
|
+
transition: opacity 0.1s ease-in-out, visibility 0s linear 0s;
|
|
249
254
|
}
|
|
250
255
|
|
|
251
256
|
/* Style the internal toolbar element to use flexbox */
|
|
@@ -263,6 +268,9 @@
|
|
|
263
268
|
color: var(--vscode-descriptionForeground);
|
|
264
269
|
line-height: 16px;
|
|
265
270
|
margin-left: auto;
|
|
271
|
+
overflow: hidden;
|
|
272
|
+
text-overflow: ellipsis;
|
|
273
|
+
white-space: nowrap;
|
|
266
274
|
}
|
|
267
275
|
|
|
268
276
|
.interactive-item-container .chat-footer-details.hidden {
|
|
@@ -274,7 +282,11 @@
|
|
|
274
282
|
}
|
|
275
283
|
|
|
276
284
|
.interactive-item-container > .value .chat-used-context {
|
|
277
|
-
margin-bottom:
|
|
285
|
+
margin-bottom: 16px;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.interactive-item-container > .value .chat-used-context .chat-used-context-list {
|
|
289
|
+
margin-bottom: 0;
|
|
278
290
|
}
|
|
279
291
|
|
|
280
292
|
.interactive-item-container .value .rendered-markdown:not(:has(.chat-extensions-content-part)) {
|
|
@@ -297,20 +309,38 @@
|
|
|
297
309
|
border-color: var(--vscode-textBlockQuote-border);
|
|
298
310
|
}
|
|
299
311
|
|
|
312
|
+
.interactive-item-container .value .rendered-markdown strong {
|
|
313
|
+
font-weight: 600;
|
|
314
|
+
}
|
|
315
|
+
|
|
300
316
|
.interactive-item-container .value .rendered-markdown table {
|
|
301
317
|
width: 100%;
|
|
302
318
|
text-align: left;
|
|
303
319
|
margin-bottom: 16px;
|
|
320
|
+
border-radius: var(--vscode-cornerRadius-medium);
|
|
321
|
+
overflow: hidden;
|
|
322
|
+
border-collapse: separate;
|
|
323
|
+
border-spacing: 0;
|
|
324
|
+
border: 1px solid var(--vscode-chat-requestBorder);
|
|
304
325
|
}
|
|
305
326
|
|
|
306
|
-
.interactive-item-container .value .rendered-markdown table,
|
|
307
327
|
.interactive-item-container .value .rendered-markdown table td,
|
|
308
328
|
.interactive-item-container .value .rendered-markdown table th {
|
|
309
329
|
border: 1px solid var(--vscode-chat-requestBorder);
|
|
310
|
-
border-
|
|
330
|
+
border-top: none;
|
|
331
|
+
border-left: none;
|
|
311
332
|
padding: 4px 6px;
|
|
312
333
|
}
|
|
313
334
|
|
|
335
|
+
.interactive-item-container .value .rendered-markdown table td:last-child,
|
|
336
|
+
.interactive-item-container .value .rendered-markdown table th:last-child {
|
|
337
|
+
border-right: none;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.interactive-item-container .value .rendered-markdown table tbody tr:last-child td {
|
|
341
|
+
border-bottom: none;
|
|
342
|
+
}
|
|
343
|
+
|
|
314
344
|
.interactive-item-container .value .rendered-markdown a,
|
|
315
345
|
.interactive-item-container .value .interactive-session-followups,
|
|
316
346
|
.interactive-item-container .value .rendered-markdown a code {
|
|
@@ -369,7 +399,7 @@
|
|
|
369
399
|
.interactive-item-container .value .rendered-markdown h1 {
|
|
370
400
|
font-size: var(--vscode-chat-font-size-body-xxl);
|
|
371
401
|
font-weight: 600;
|
|
372
|
-
margin:
|
|
402
|
+
margin: 1.5em 0 0.875em 0;
|
|
373
403
|
font-family: var(--vscode-chat-font-family, inherit);
|
|
374
404
|
|
|
375
405
|
}
|
|
@@ -377,14 +407,14 @@
|
|
|
377
407
|
.interactive-item-container .value .rendered-markdown h2 {
|
|
378
408
|
font-size: var(--vscode-chat-font-size-body-xl);
|
|
379
409
|
font-weight: 600;
|
|
380
|
-
margin:
|
|
410
|
+
margin: 1.5em 0 0.875em 0;
|
|
381
411
|
font-family: var(--vscode-chat-font-family, inherit);
|
|
382
412
|
}
|
|
383
413
|
|
|
384
414
|
.interactive-item-container .value .rendered-markdown h3 {
|
|
385
415
|
font-size: var(--vscode-chat-font-size-body-l);
|
|
386
416
|
font-weight: 600;
|
|
387
|
-
margin:
|
|
417
|
+
margin: 1.5em 0 0.875em 0;
|
|
388
418
|
font-family: var(--vscode-chat-font-family, inherit);
|
|
389
419
|
}
|
|
390
420
|
|
|
@@ -394,8 +424,7 @@
|
|
|
394
424
|
|
|
395
425
|
.interactive-item-container.editing-session .value .rendered-markdown h3 {
|
|
396
426
|
font-size: var(--vscode-chat-font-size-body-m);
|
|
397
|
-
margin: 0 0
|
|
398
|
-
font-weight: unset;
|
|
427
|
+
margin: 1.5em 0 0.875em 0;
|
|
399
428
|
}
|
|
400
429
|
|
|
401
430
|
/* Codicons next to text need to be aligned with the text */
|
|
@@ -537,7 +566,7 @@
|
|
|
537
566
|
|
|
538
567
|
.tool-output-part {
|
|
539
568
|
border: 1px solid var(--vscode-widget-border);
|
|
540
|
-
border-radius:
|
|
569
|
+
border-radius: var(--vscode-cornerRadius-medium);
|
|
541
570
|
background: var(--vscode-editor-background);
|
|
542
571
|
margin: 4px 0;
|
|
543
572
|
overflow: hidden;
|
|
@@ -587,7 +616,7 @@
|
|
|
587
616
|
}
|
|
588
617
|
|
|
589
618
|
&:not(:last-child) {
|
|
590
|
-
margin-bottom:
|
|
619
|
+
margin-bottom: 16px;
|
|
591
620
|
}
|
|
592
621
|
}
|
|
593
622
|
|
|
@@ -606,6 +635,10 @@
|
|
|
606
635
|
padding-inline-start: 28px;
|
|
607
636
|
}
|
|
608
637
|
|
|
638
|
+
.interactive-item-container .value .rendered-markdown li {
|
|
639
|
+
margin: 4px 0;
|
|
640
|
+
}
|
|
641
|
+
|
|
609
642
|
/* NOTE- We want to dedent codeblocks in lists specifically to give them the full width. No more elegant way to do this, these values
|
|
610
643
|
have to be updated for changes to the rules above, or to support more deeply nested lists. */
|
|
611
644
|
.interactive-item-container .value .rendered-markdown ul .interactive-result-code-block {
|
|
@@ -641,7 +674,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
641
674
|
.monaco-tokenized-source,
|
|
642
675
|
code {
|
|
643
676
|
font-family: var(--monaco-monospace-font);
|
|
644
|
-
font-size: var(--vscode-chat-font-size-body-
|
|
677
|
+
font-size: var(--vscode-chat-font-size-body-xs);
|
|
645
678
|
color: var(--vscode-textPreformat-foreground);
|
|
646
679
|
background-color: var(--vscode-textPreformat-background);
|
|
647
680
|
padding: 1px 3px;
|
|
@@ -767,34 +800,34 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
767
800
|
margin-right: 3px;
|
|
768
801
|
}
|
|
769
802
|
|
|
770
|
-
.interactive-session .chat-input-container {
|
|
803
|
+
.monaco-workbench .interactive-session .chat-input-container {
|
|
771
804
|
box-sizing: border-box;
|
|
772
805
|
cursor: text;
|
|
773
806
|
background-color: var(--vscode-input-background);
|
|
774
807
|
border: 1px solid var(--vscode-input-border, transparent);
|
|
775
|
-
border-radius:
|
|
808
|
+
border-radius: var(--vscode-cornerRadius-large);
|
|
776
809
|
padding: 0 6px 6px 6px;
|
|
777
810
|
/* top padding is inside the editor widget */
|
|
778
811
|
width: 100%;
|
|
779
812
|
position: relative;
|
|
780
813
|
}
|
|
781
814
|
|
|
782
|
-
/* Context usage widget container - positioned
|
|
783
|
-
.interactive-session .chat-input-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
815
|
+
/* Context usage widget container - positioned in the bottom toolbar */
|
|
816
|
+
.interactive-session .chat-input-toolbars .chat-context-usage-container {
|
|
817
|
+
display: flex;
|
|
818
|
+
align-items: center;
|
|
819
|
+
flex-shrink: 0;
|
|
820
|
+
order: 1;
|
|
788
821
|
}
|
|
789
822
|
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
display: none;
|
|
823
|
+
.interactive-session .chat-input-toolbars > .chat-execute-toolbar {
|
|
824
|
+
order: 2;
|
|
793
825
|
}
|
|
794
826
|
|
|
795
827
|
.interactive-input-part:has(.chat-editing-session > .chat-editing-session-container) .chat-input-container,
|
|
796
828
|
.interactive-input-part:has(.chat-todo-list-widget-container > .chat-todo-list-widget.has-todos) .chat-input-container,
|
|
797
|
-
.interactive-input-part:has(.chat-input-widgets-container > .chat-status-widget:not([style*="display: none"])) .chat-input-container
|
|
829
|
+
.interactive-input-part:has(.chat-input-widgets-container > .chat-status-widget:not([style*="display: none"])) .chat-input-container,
|
|
830
|
+
.interactive-input-part:has(.chat-getting-started-tip-container > .chat-tip-widget) .chat-input-container {
|
|
798
831
|
/* Remove top border radius when editing session, todo list, or status widget is present */
|
|
799
832
|
border-top-left-radius: 0;
|
|
800
833
|
border-top-right-radius: 0;
|
|
@@ -808,13 +841,13 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
808
841
|
position: relative;
|
|
809
842
|
}
|
|
810
843
|
|
|
811
|
-
.interactive-session .chat-editing-session .chat-editing-session-container {
|
|
844
|
+
.monaco-workbench .interactive-session .chat-editing-session .chat-editing-session-container {
|
|
812
845
|
padding: 4px 3px 4px 3px;
|
|
813
846
|
box-sizing: border-box;
|
|
814
847
|
background-color: var(--vscode-editor-background);
|
|
815
848
|
border: 1px solid var(--vscode-input-border, transparent);
|
|
816
849
|
border-bottom: none;
|
|
817
|
-
border-radius:
|
|
850
|
+
border-radius: var(--vscode-cornerRadius-large) var(--vscode-cornerRadius-large) 0 0;
|
|
818
851
|
display: flex;
|
|
819
852
|
flex-direction: column;
|
|
820
853
|
gap: 2px;
|
|
@@ -908,7 +941,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
908
941
|
border-radius: 2px;
|
|
909
942
|
border: none;
|
|
910
943
|
background-color: unset;
|
|
911
|
-
color: var(--vscode-
|
|
944
|
+
color: var(--vscode-descriptionForeground);
|
|
912
945
|
}
|
|
913
946
|
|
|
914
947
|
.monaco-button:focus-visible {
|
|
@@ -981,7 +1014,6 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
981
1014
|
flex-direction: row;
|
|
982
1015
|
gap: 4px;
|
|
983
1016
|
margin-top: 6px;
|
|
984
|
-
margin-right: 20px;
|
|
985
1017
|
flex-wrap: wrap;
|
|
986
1018
|
cursor: default;
|
|
987
1019
|
}
|
|
@@ -1050,23 +1082,6 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1050
1082
|
position: relative;
|
|
1051
1083
|
}
|
|
1052
1084
|
|
|
1053
|
-
/* question carousel - this is above edits and todos */
|
|
1054
|
-
.interactive-session .interactive-input-part > .chat-question-carousel-widget-container {
|
|
1055
|
-
width: 100%;
|
|
1056
|
-
position: relative;
|
|
1057
|
-
}
|
|
1058
|
-
|
|
1059
|
-
.interactive-session .interactive-input-part > .chat-question-carousel-widget-container:empty {
|
|
1060
|
-
display: none;
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
|
-
.interactive-session .interactive-input-part > .chat-question-carousel-widget-container .chat-question-carousel-container {
|
|
1064
|
-
margin: 0px;
|
|
1065
|
-
border: 1px solid var(--vscode-input-border, transparent);
|
|
1066
|
-
background-color: var(--vscode-editor-background);
|
|
1067
|
-
border-radius: 4px;
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
1085
|
/* Chat Todo List Widget Container - mirrors chat-editing-session styling */
|
|
1071
1086
|
.interactive-session .interactive-input-part > .chat-todo-list-widget-container {
|
|
1072
1087
|
margin-bottom: -4px;
|
|
@@ -1081,8 +1096,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1081
1096
|
border: 1px solid var(--vscode-input-border, transparent);
|
|
1082
1097
|
background-color: var(--vscode-editor-background);
|
|
1083
1098
|
border-bottom: none;
|
|
1084
|
-
border-
|
|
1085
|
-
border-top-right-radius: 4px;
|
|
1099
|
+
border-radius: var(--vscode-cornerRadius-large) var(--vscode-cornerRadius-large) 0 0;
|
|
1086
1100
|
flex-direction: column;
|
|
1087
1101
|
gap: 2px;
|
|
1088
1102
|
overflow: hidden;
|
|
@@ -1236,14 +1250,14 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1236
1250
|
}
|
|
1237
1251
|
|
|
1238
1252
|
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .monaco-scrollable-element .monaco-list-rows .monaco-list-row {
|
|
1239
|
-
border-radius:
|
|
1253
|
+
border-radius: var(--vscode-cornerRadius-small);
|
|
1240
1254
|
}
|
|
1241
1255
|
|
|
1242
1256
|
.interactive-session .interactive-input-part.compact .chat-input-container {
|
|
1243
1257
|
display: flex;
|
|
1244
1258
|
justify-content: space-between;
|
|
1245
1259
|
padding-bottom: 0;
|
|
1246
|
-
border-radius:
|
|
1260
|
+
border-radius: var(--vscode-cornerRadius-small);
|
|
1247
1261
|
}
|
|
1248
1262
|
|
|
1249
1263
|
.interactive-session .interactive-input-and-side-toolbar {
|
|
@@ -1257,6 +1271,10 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1257
1271
|
border-color: var(--vscode-focusBorder);
|
|
1258
1272
|
}
|
|
1259
1273
|
|
|
1274
|
+
.chat-editor-container {
|
|
1275
|
+
padding: 0 4px;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1260
1278
|
.chat-editor-container .monaco-editor .mtk1 {
|
|
1261
1279
|
color: var(--vscode-input-foreground);
|
|
1262
1280
|
}
|
|
@@ -1290,6 +1308,9 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1290
1308
|
|
|
1291
1309
|
.interactive-session .chat-input-toolbars {
|
|
1292
1310
|
display: flex;
|
|
1311
|
+
align-items: center;
|
|
1312
|
+
gap: 6px;
|
|
1313
|
+
margin-top: 4px;
|
|
1293
1314
|
}
|
|
1294
1315
|
|
|
1295
1316
|
.interactive-session .chat-input-toolbars :not(.responsive.chat-input-toolbar) .actions-container:first-child {
|
|
@@ -1309,9 +1330,15 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1309
1330
|
}
|
|
1310
1331
|
|
|
1311
1332
|
.interactive-session .chat-input-toolbars > .chat-input-toolbar {
|
|
1333
|
+
order: 0;
|
|
1312
1334
|
overflow: hidden;
|
|
1313
1335
|
min-width: 0px;
|
|
1314
1336
|
width: 100%;
|
|
1337
|
+
color: var(--vscode-icon-foreground);
|
|
1338
|
+
|
|
1339
|
+
.monaco-action-bar .action-item .codicon {
|
|
1340
|
+
color: var(--vscode-icon-foreground);
|
|
1341
|
+
}
|
|
1315
1342
|
|
|
1316
1343
|
.chat-input-picker-item {
|
|
1317
1344
|
min-width: 0px;
|
|
@@ -1320,14 +1347,27 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1320
1347
|
.action-label {
|
|
1321
1348
|
min-width: 0px;
|
|
1322
1349
|
overflow: hidden;
|
|
1350
|
+
position: relative;
|
|
1323
1351
|
|
|
1324
1352
|
.chat-input-picker-label {
|
|
1325
1353
|
overflow: hidden;
|
|
1326
1354
|
text-overflow: ellipsis;
|
|
1327
1355
|
}
|
|
1328
1356
|
|
|
1329
|
-
.
|
|
1330
|
-
|
|
1357
|
+
.model-picker-badge {
|
|
1358
|
+
display: inline-flex;
|
|
1359
|
+
align-items: center;
|
|
1360
|
+
margin-left: 4px;
|
|
1361
|
+
flex-shrink: 0;
|
|
1362
|
+
font-size: 12px;
|
|
1363
|
+
|
|
1364
|
+
.codicon.codicon-info {
|
|
1365
|
+
color: var(--vscode-problemsInfoIcon-foreground) !important;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.codicon.codicon-warning {
|
|
1369
|
+
color: var(--vscode-problemsWarningIcon-foreground) !important;
|
|
1370
|
+
}
|
|
1331
1371
|
}
|
|
1332
1372
|
|
|
1333
1373
|
span + .chat-input-picker-label {
|
|
@@ -1351,19 +1391,17 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1351
1391
|
}
|
|
1352
1392
|
}
|
|
1353
1393
|
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
1394
|
.interactive-session .chat-input-toolbar .chat-input-picker-item .action-label,
|
|
1357
1395
|
.interactive-session .chat-input-toolbar .chat-sessionPicker-item .action-label {
|
|
1358
1396
|
height: 16px;
|
|
1359
1397
|
padding: 3px 0px 3px 6px;
|
|
1360
1398
|
display: flex;
|
|
1361
1399
|
align-items: center;
|
|
1400
|
+
color: var(--vscode-icon-foreground);
|
|
1362
1401
|
}
|
|
1363
1402
|
|
|
1364
|
-
|
|
1365
|
-
.interactive-session .chat-input-toolbar .chat-
|
|
1366
|
-
.interactive-session .chat-input-toolbar .chat-sessionPicker-item .action-label .codicon-chevron-down {
|
|
1403
|
+
.monaco-workbench .interactive-session .chat-input-toolbar .chat-input-picker-item .action-label .codicon-chevron-down,
|
|
1404
|
+
.monaco-workbench .interactive-session .chat-input-toolbar .chat-sessionPicker-item .action-label .codicon-chevron-down {
|
|
1367
1405
|
font-size: 12px;
|
|
1368
1406
|
margin-left: 2px;
|
|
1369
1407
|
}
|
|
@@ -1378,6 +1416,26 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1378
1416
|
max-width: 100%;
|
|
1379
1417
|
}
|
|
1380
1418
|
|
|
1419
|
+
.monaco-workbench .interactive-session .chat-input-toolbars .monaco-action-bar .action-item .codicon,
|
|
1420
|
+
.monaco-workbench .interactive-session .chat-input-toolbars .action-label .codicon {
|
|
1421
|
+
color: var(--vscode-icon-foreground) !important;
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
.monaco-workbench .interactive-session .chat-input-toolbars .monaco-action-bar .action-item.disabled .codicon,
|
|
1425
|
+
.monaco-workbench .interactive-session .chat-input-toolbars .action-label.disabled .codicon {
|
|
1426
|
+
color: var(--vscode-disabledForeground) !important;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.action-widget .monaco-list-row.chat-model-picker-unavailable .description a,
|
|
1430
|
+
.action-widget .monaco-list-row.chat-model-picker-unavailable .description a:visited {
|
|
1431
|
+
color: var(--vscode-textLink-foreground);
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1434
|
+
.action-widget .monaco-list-row.chat-model-picker-unavailable .description a:hover,
|
|
1435
|
+
.action-widget .monaco-list-row.chat-model-picker-unavailable .description a:active {
|
|
1436
|
+
color: var(--vscode-textLink-activeForeground);
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1381
1439
|
.interactive-session .chat-input-toolbars .codicon-debug-stop {
|
|
1382
1440
|
color: var(--vscode-icon-foreground) !important;
|
|
1383
1441
|
}
|
|
@@ -1560,7 +1618,6 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1560
1618
|
padding: 8px 0 0 0
|
|
1561
1619
|
}
|
|
1562
1620
|
|
|
1563
|
-
.action-item.chat-attachment-button .action-label,
|
|
1564
1621
|
.interactive-session .chat-attached-context .chat-attached-context-attachment {
|
|
1565
1622
|
display: flex;
|
|
1566
1623
|
overflow: hidden;
|
|
@@ -1573,40 +1630,11 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1573
1630
|
width: fit-content;
|
|
1574
1631
|
}
|
|
1575
1632
|
|
|
1576
|
-
.action-item.chat-attachment-button .action-label {
|
|
1577
|
-
padding: 0 4px;
|
|
1578
|
-
}
|
|
1579
|
-
|
|
1580
1633
|
.interactive-session .interactive-list .chat-attached-context .chat-attached-context-attachment {
|
|
1581
1634
|
font-family: var(--vscode-chat-font-family, inherit);
|
|
1582
1635
|
font-size: var(--vscode-chat-font-size-body-xs);
|
|
1583
1636
|
}
|
|
1584
1637
|
|
|
1585
|
-
.action-item.chat-attachment-button > .action-label > .codicon {
|
|
1586
|
-
font-size: 14px;
|
|
1587
|
-
height: auto;
|
|
1588
|
-
}
|
|
1589
|
-
|
|
1590
|
-
.interactive-session .action-item.chat-attachment-button .action-label:not(.has-label) {
|
|
1591
|
-
display: flex;
|
|
1592
|
-
align-items: center;
|
|
1593
|
-
justify-content: center;
|
|
1594
|
-
padding: 2px 4px 2px 4px;
|
|
1595
|
-
height: fit-content;
|
|
1596
|
-
gap: 0;
|
|
1597
|
-
border: 1px solid var(--vscode-chat-requestBorder, var(--vscode-input-background, transparent));
|
|
1598
|
-
border-radius: 4px;
|
|
1599
|
-
box-sizing: border-box;
|
|
1600
|
-
|
|
1601
|
-
.codicon {
|
|
1602
|
-
width: 14px;
|
|
1603
|
-
}
|
|
1604
|
-
}
|
|
1605
|
-
|
|
1606
|
-
.action-item.chat-attachment-button .codicon {
|
|
1607
|
-
font-size: 14px;
|
|
1608
|
-
}
|
|
1609
|
-
|
|
1610
1638
|
.action-item.chat-mcp {
|
|
1611
1639
|
min-width: 22px !important;
|
|
1612
1640
|
|
|
@@ -1709,11 +1737,6 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
1709
1737
|
gap: 4px;
|
|
1710
1738
|
}
|
|
1711
1739
|
|
|
1712
|
-
.interactive-session .chat-attachment-toolbar .actions-container {
|
|
1713
|
-
gap: 4px;
|
|
1714
|
-
flex-wrap: wrap;
|
|
1715
|
-
}
|
|
1716
|
-
|
|
1717
1740
|
.interactive-session .interactive-input-part.compact .chat-attached-context {
|
|
1718
1741
|
padding-bottom: 0px;
|
|
1719
1742
|
display: flex;
|
|
@@ -2074,6 +2097,12 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2074
2097
|
|
|
2075
2098
|
.monaco-icon-label {
|
|
2076
2099
|
padding: 0px 3px;
|
|
2100
|
+
gap: 2px;
|
|
2101
|
+
|
|
2102
|
+
&::before {
|
|
2103
|
+
width: var(--vscode-chat-font-size-body-s);
|
|
2104
|
+
padding-right: 0;
|
|
2105
|
+
}
|
|
2077
2106
|
}
|
|
2078
2107
|
}
|
|
2079
2108
|
|
|
@@ -2110,7 +2139,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2110
2139
|
}
|
|
2111
2140
|
|
|
2112
2141
|
.interactive-session .chat-used-context-label {
|
|
2113
|
-
font-size:
|
|
2142
|
+
font-size: 13px;
|
|
2114
2143
|
font-family: var(--vscode-chat-font-family, inherit);
|
|
2115
2144
|
color: var(--vscode-descriptionForeground);
|
|
2116
2145
|
user-select: none;
|
|
@@ -2134,7 +2163,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2134
2163
|
width: fit-content;
|
|
2135
2164
|
border: none;
|
|
2136
2165
|
border-radius: 4px;
|
|
2137
|
-
gap:
|
|
2166
|
+
gap: 0;
|
|
2138
2167
|
text-align: initial;
|
|
2139
2168
|
justify-content: initial;
|
|
2140
2169
|
}
|
|
@@ -2150,18 +2179,23 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2150
2179
|
|
|
2151
2180
|
.interactive-session .chat-used-context-label .monaco-button {
|
|
2152
2181
|
padding: 2px 6px 2px 2px;
|
|
2153
|
-
|
|
2182
|
+
margin-left: -2px;
|
|
2183
|
+
font-size: var(--vscode-chat-font-size-body-s);
|
|
2154
2184
|
line-height: unset;
|
|
2155
2185
|
}
|
|
2156
2186
|
|
|
2187
|
+
.interactive-session .chat-used-context.show-checkmarks .chat-used-context-label .monaco-button {
|
|
2188
|
+
gap: 4px;
|
|
2189
|
+
margin-left: 0;
|
|
2190
|
+
}
|
|
2191
|
+
|
|
2157
2192
|
.interactive-session .chat-file-changes-label .monaco-button:hover {
|
|
2158
2193
|
background-color: var(--vscode-toolbar-hoverBackground);
|
|
2159
2194
|
}
|
|
2160
2195
|
|
|
2196
|
+
.interactive-session .chat-used-context:not(.chat-used-context-collapsed) .chat-used-context-label .monaco-button,
|
|
2161
2197
|
.interactive-session .chat-used-context-label .monaco-button:hover {
|
|
2162
|
-
background-color: var(--vscode-list-hoverBackground);
|
|
2163
2198
|
color: var(--vscode-foreground);
|
|
2164
|
-
|
|
2165
2199
|
}
|
|
2166
2200
|
|
|
2167
2201
|
.interactive-session .chat-file-changes-label .monaco-text-button:focus,
|
|
@@ -2176,22 +2210,56 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2176
2210
|
|
|
2177
2211
|
.interactive-session .chat-file-changes-label .monaco-button .codicon,
|
|
2178
2212
|
.interactive-session .chat-used-context-label .monaco-button .codicon {
|
|
2179
|
-
font-size:
|
|
2213
|
+
font-size: 12px;
|
|
2180
2214
|
color: var(--vscode-icon-foreground) !important;
|
|
2181
2215
|
}
|
|
2182
2216
|
|
|
2217
|
+
/* Hide the leading icon on collapsible parts by default; show-checkmarks restores it */
|
|
2218
|
+
.interactive-session .chat-used-context-label .monaco-icon-button > .codicon:first-child:not(.chat-collapsible-hover-chevron):not(.codicon-error):not(.codicon-warning) {
|
|
2219
|
+
display: none;
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
.interactive-session .chat-used-context.show-checkmarks .chat-used-context-label .monaco-icon-button > .codicon:first-child:not(.chat-collapsible-hover-chevron) {
|
|
2223
|
+
display: inline-block;
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
/* Hover chevron indicator for collapsible parts */
|
|
2227
|
+
.chat-collapsible-hover-chevron {
|
|
2228
|
+
font-size: 12px;
|
|
2229
|
+
opacity: 0;
|
|
2230
|
+
transition: opacity 0.1s ease-in-out;
|
|
2231
|
+
color: var(--vscode-descriptionForeground);
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
.chat-collapsible-hover-chevron.codicon-chevron-down {
|
|
2235
|
+
opacity: 1;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
.interactive-session .chat-used-context-label .monaco-button:hover .chat-collapsible-hover-chevron {
|
|
2239
|
+
opacity: 1;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2183
2242
|
.interactive-item-container .progress-container {
|
|
2184
2243
|
display: flex;
|
|
2185
2244
|
align-items: center;
|
|
2186
2245
|
gap: 4px;
|
|
2187
|
-
margin: 0 0 6px
|
|
2246
|
+
margin: 0 0 6px 0;
|
|
2247
|
+
font-size: 13px;
|
|
2188
2248
|
|
|
2189
2249
|
/* Tool calls transition from a progress to a collapsible list part, which needs to have this top padding.
|
|
2190
2250
|
The working progress also can be replaced by a tool progress part. So align this padding so the text doesn't appear to shift. */
|
|
2191
2251
|
padding-top: 2px;
|
|
2192
2252
|
|
|
2193
2253
|
> .codicon[class*='codicon-'] {
|
|
2194
|
-
font-size:
|
|
2254
|
+
font-size: 12px;
|
|
2255
|
+
|
|
2256
|
+
&::before {
|
|
2257
|
+
font-size: 12px;
|
|
2258
|
+
}
|
|
2259
|
+
}
|
|
2260
|
+
|
|
2261
|
+
> .codicon.codicon-check {
|
|
2262
|
+
display: none;
|
|
2195
2263
|
}
|
|
2196
2264
|
|
|
2197
2265
|
.codicon {
|
|
@@ -2223,8 +2291,13 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2223
2291
|
}
|
|
2224
2292
|
}
|
|
2225
2293
|
|
|
2226
|
-
/*
|
|
2227
|
-
&.
|
|
2294
|
+
/* hide spinner icon for shimmer progress, shimmer handles animation */
|
|
2295
|
+
&.shimmer-progress > .codicon {
|
|
2296
|
+
display: none;
|
|
2297
|
+
}
|
|
2298
|
+
|
|
2299
|
+
/* shimmer animation for shimmer progress */
|
|
2300
|
+
&.shimmer-progress .rendered-markdown.progress-step > p {
|
|
2228
2301
|
background: linear-gradient(
|
|
2229
2302
|
90deg,
|
|
2230
2303
|
var(--vscode-descriptionForeground) 0%,
|
|
@@ -2241,6 +2314,12 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2241
2314
|
}
|
|
2242
2315
|
}
|
|
2243
2316
|
|
|
2317
|
+
.show-checkmarks .progress-container > .codicon.codicon-check,
|
|
2318
|
+
.progress-container.show-checkmarks > .codicon.codicon-check {
|
|
2319
|
+
display: inline-flex;
|
|
2320
|
+
margin-left: 4px;
|
|
2321
|
+
}
|
|
2322
|
+
|
|
2244
2323
|
.interactive-item-container .chat-command-button {
|
|
2245
2324
|
display: flex;
|
|
2246
2325
|
flex-wrap: wrap;
|
|
@@ -2326,6 +2405,130 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2326
2405
|
margin-top: 2px;
|
|
2327
2406
|
}
|
|
2328
2407
|
|
|
2408
|
+
/* Element hover (DevTools-style) */
|
|
2409
|
+
.chat-element-hover {
|
|
2410
|
+
max-width: 400px;
|
|
2411
|
+
min-width: 250px;
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
.monaco-hover.workbench-hover.chat-element-data-hover .hover-contents.html-hover-contents {
|
|
2415
|
+
padding: 0;
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
.monaco-hover.workbench-hover.chat-element-data-hover .chat-element-hover-scrollable {
|
|
2419
|
+
width: 100%;
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
.chat-element-hover.chat-attached-context-hover {
|
|
2423
|
+
padding: 6px 0 6px 6px;
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2426
|
+
.chat-element-hover-content {
|
|
2427
|
+
max-height: 500px;
|
|
2428
|
+
box-sizing: border-box;
|
|
2429
|
+
padding-right: 10px;
|
|
2430
|
+
padding-bottom: 15px;
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
.chat-element-hover .chat-element-hover-section {
|
|
2434
|
+
padding: 4px 6px;
|
|
2435
|
+
}
|
|
2436
|
+
|
|
2437
|
+
.chat-element-hover .chat-element-hover-section + .chat-element-hover-section {
|
|
2438
|
+
border-top: 1px solid var(--vscode-editorWidget-border, rgba(127, 127, 127, 0.2));
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2441
|
+
.chat-element-hover .chat-element-hover-header {
|
|
2442
|
+
font-size: 11px;
|
|
2443
|
+
font-weight: 600;
|
|
2444
|
+
text-transform: uppercase;
|
|
2445
|
+
color: var(--vscode-descriptionForeground);
|
|
2446
|
+
letter-spacing: 0.5px;
|
|
2447
|
+
margin-bottom: 4px;
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
.chat-element-hover .chat-element-hover-code {
|
|
2451
|
+
margin: 0;
|
|
2452
|
+
padding: 4px 6px;
|
|
2453
|
+
background: var(--vscode-textCodeBlock-background);
|
|
2454
|
+
border-radius: 3px;
|
|
2455
|
+
font-family: var(--monaco-monospace-font);
|
|
2456
|
+
font-size: 12px;
|
|
2457
|
+
line-height: 1.5;
|
|
2458
|
+
white-space: pre;
|
|
2459
|
+
overflow: hidden;
|
|
2460
|
+
color: var(--vscode-editor-foreground);
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.chat-element-hover .chat-element-hover-code code {
|
|
2464
|
+
font-family: inherit;
|
|
2465
|
+
font-size: inherit;
|
|
2466
|
+
background: transparent;
|
|
2467
|
+
padding: 0;
|
|
2468
|
+
border-radius: 0;
|
|
2469
|
+
display: block;
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
.chat-element-hover .chat-element-hover-table {
|
|
2473
|
+
display: grid;
|
|
2474
|
+
grid-template-columns: auto 1fr;
|
|
2475
|
+
gap: 2px 8px;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
.chat-element-hover .chat-element-hover-row {
|
|
2479
|
+
display: contents;
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
.chat-element-hover .chat-element-hover-label {
|
|
2483
|
+
font-family: var(--monaco-monospace-font);
|
|
2484
|
+
font-size: 12px;
|
|
2485
|
+
color: var(--vscode-debugTokenExpression-name);
|
|
2486
|
+
white-space: nowrap;
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
.chat-element-hover .chat-element-hover-value {
|
|
2490
|
+
font-family: var(--monaco-monospace-font);
|
|
2491
|
+
font-size: 12px;
|
|
2492
|
+
color: var(--vscode-editor-foreground);
|
|
2493
|
+
word-break: break-all;
|
|
2494
|
+
display: flex;
|
|
2495
|
+
align-items: center;
|
|
2496
|
+
gap: 4px;
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
.chat-element-hover .chat-element-hover-color-swatch {
|
|
2500
|
+
display: inline-block;
|
|
2501
|
+
width: 12px;
|
|
2502
|
+
height: 12px;
|
|
2503
|
+
border: 1px solid var(--vscode-editorWidget-border, rgba(127, 127, 127, 0.4));
|
|
2504
|
+
border-radius: 2px;
|
|
2505
|
+
flex-shrink: 0;
|
|
2506
|
+
}
|
|
2507
|
+
|
|
2508
|
+
.chat-element-hover .chat-element-hover-text {
|
|
2509
|
+
font-family: var(--monaco-monospace-font);
|
|
2510
|
+
font-size: 12px;
|
|
2511
|
+
color: var(--vscode-editor-foreground);
|
|
2512
|
+
white-space: pre-wrap;
|
|
2513
|
+
word-break: break-word;
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
.chat-element-hover .chat-element-hover-show-more {
|
|
2517
|
+
background: none;
|
|
2518
|
+
border: none;
|
|
2519
|
+
padding: 0;
|
|
2520
|
+
margin-top: 6px;
|
|
2521
|
+
color: var(--vscode-textLink-foreground);
|
|
2522
|
+
cursor: pointer;
|
|
2523
|
+
font-size: 12px;
|
|
2524
|
+
text-decoration: none;
|
|
2525
|
+
}
|
|
2526
|
+
|
|
2527
|
+
.chat-element-hover .chat-element-hover-show-more:hover,
|
|
2528
|
+
.chat-element-hover .chat-element-hover-show-more:focus-visible {
|
|
2529
|
+
color: var(--vscode-textLink-activeForeground);
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2329
2532
|
|
|
2330
2533
|
.chat-attached-context-attachment .chat-attached-context-pill {
|
|
2331
2534
|
font-size: 12px;
|
|
@@ -2338,8 +2541,9 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2338
2541
|
outline: none;
|
|
2339
2542
|
border: none;
|
|
2340
2543
|
|
|
2341
|
-
.codicon.codicon-file-media {
|
|
2544
|
+
.codicon.codicon-file-media, .codicon.codicon-warning {
|
|
2342
2545
|
font-size: 12px;
|
|
2546
|
+
margin-right: 2px;
|
|
2343
2547
|
}
|
|
2344
2548
|
}
|
|
2345
2549
|
|
|
@@ -2464,7 +2668,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2464
2668
|
|
|
2465
2669
|
.interactive-item-container.interactive-request .value .rendered-markdown {
|
|
2466
2670
|
background-color: var(--vscode-chat-requestBubbleBackground);
|
|
2467
|
-
border-radius:
|
|
2671
|
+
border-radius: var(--vscode-cornerRadius-xLarge);
|
|
2468
2672
|
padding: 8px 12px;
|
|
2469
2673
|
max-width: 90%;
|
|
2470
2674
|
margin-left: auto;
|
|
@@ -2522,15 +2726,25 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2522
2726
|
}
|
|
2523
2727
|
|
|
2524
2728
|
.interactive-request .header.partially-disabled .detail-container {
|
|
2525
|
-
margin-left:
|
|
2729
|
+
margin-left: 0px;
|
|
2526
2730
|
}
|
|
2527
2731
|
|
|
2528
2732
|
.interactive-item-container .header .detail .codicon-check {
|
|
2529
2733
|
margin-right: 7px;
|
|
2530
2734
|
vertical-align: middle;
|
|
2531
2735
|
font-size: 11px;
|
|
2736
|
+
display: none;
|
|
2532
2737
|
}
|
|
2533
2738
|
|
|
2739
|
+
.interactive-item-container .header.partially-disabled .detail.show-checkmarks {
|
|
2740
|
+
margin-left: 4px;
|
|
2741
|
+
|
|
2742
|
+
.codicon-check {
|
|
2743
|
+
display: inline;
|
|
2744
|
+
}
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2747
|
+
|
|
2534
2748
|
.request-hover {
|
|
2535
2749
|
position: absolute;
|
|
2536
2750
|
overflow: hidden;
|
|
@@ -2580,65 +2794,101 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2580
2794
|
display: flex;
|
|
2581
2795
|
width: 100%;
|
|
2582
2796
|
position: relative;
|
|
2797
|
+
align-items: center;
|
|
2798
|
+
gap: 4px;
|
|
2799
|
+
margin-top: 0;
|
|
2800
|
+
margin-bottom: 8px;
|
|
2583
2801
|
|
|
2584
|
-
.checkpoint-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2802
|
+
.checkpoint-line-left,
|
|
2803
|
+
.checkpoint-line-right {
|
|
2804
|
+
flex: 1;
|
|
2805
|
+
height: 1px;
|
|
2806
|
+
background-color: var(--vscode-chat-requestBorder, var(--vscode-input-background));
|
|
2589
2807
|
}
|
|
2590
2808
|
|
|
2591
|
-
.
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
display: flex;
|
|
2595
|
-
align-items: center;
|
|
2596
|
-
gap: 4px;
|
|
2809
|
+
.checkpoint-line-left {
|
|
2810
|
+
mask-image: linear-gradient(to right, transparent, black);
|
|
2811
|
+
-webkit-mask-image: linear-gradient(to right, transparent, black);
|
|
2597
2812
|
}
|
|
2598
2813
|
|
|
2599
|
-
.
|
|
2600
|
-
|
|
2601
|
-
|
|
2814
|
+
.checkpoint-line-right {
|
|
2815
|
+
mask-image: linear-gradient(to left, transparent, black);
|
|
2816
|
+
-webkit-mask-image: linear-gradient(to left, transparent, black);
|
|
2602
2817
|
}
|
|
2603
2818
|
|
|
2604
2819
|
.monaco-toolbar {
|
|
2605
|
-
opacity: 0;
|
|
2606
2820
|
height: fit-content;
|
|
2607
2821
|
width: fit-content;
|
|
2608
2822
|
user-select: none;
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
margin-left: 25px;
|
|
2612
|
-
background: var(--vscode-sideBar-background);
|
|
2823
|
+
flex-shrink: 0;
|
|
2824
|
+
gap: 4px;
|
|
2613
2825
|
}
|
|
2614
2826
|
|
|
2615
2827
|
.monaco-toolbar .action-label {
|
|
2616
|
-
|
|
2828
|
+
font-size: 12px;
|
|
2829
|
+
line-height: 18px;
|
|
2830
|
+
color: var(--vscode-descriptionForeground);
|
|
2831
|
+
border: 1px solid transparent;
|
|
2832
|
+
background-color: transparent;
|
|
2617
2833
|
padding: 1px 5px;
|
|
2834
|
+
margin-right: 5px;
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2837
|
+
.monaco-toolbar .action-label.codicon.codicon-repo-forked {
|
|
2838
|
+
width: fit-content;
|
|
2839
|
+
padding: 2px 5px;
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2842
|
+
.monaco-toolbar .actions-container > .action-item:not(:first-child):has(.action-label.codicon.codicon-repo-forked) {
|
|
2843
|
+
display: flex;
|
|
2844
|
+
align-items: center;
|
|
2845
|
+
gap: 4px;
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
.monaco-toolbar .actions-container > .action-item:not(:first-child):has(.action-label.codicon.codicon-repo-forked)::before {
|
|
2849
|
+
content: '\00B7';
|
|
2850
|
+
font-size: 12px;
|
|
2851
|
+
line-height: 18px;
|
|
2852
|
+
color: var(--vscode-descriptionForeground);
|
|
2853
|
+
}
|
|
2854
|
+
|
|
2855
|
+
.monaco-toolbar .action-label:hover {
|
|
2856
|
+
color: var(--vscode-foreground);
|
|
2857
|
+
border-color: var(--vscode-chat-requestBorder, var(--vscode-input-background));
|
|
2618
2858
|
background-color: var(--vscode-sideBar-background);
|
|
2619
2859
|
}
|
|
2620
2860
|
}
|
|
2621
2861
|
|
|
2862
|
+
.checkpoint-container {
|
|
2863
|
+
opacity: 0;
|
|
2864
|
+
transition: opacity 0.1s ease-in-out;
|
|
2865
|
+
}
|
|
2866
|
+
|
|
2622
2867
|
.checkpoint-restore-container {
|
|
2623
2868
|
margin-top: 10px;
|
|
2624
2869
|
|
|
2625
2870
|
.checkpoint-label-text {
|
|
2626
2871
|
font-size: 12px;
|
|
2872
|
+
line-height: 18px;
|
|
2627
2873
|
color: var(--vscode-descriptionForeground);
|
|
2628
|
-
background-color: var(--vscode-sideBar-background);
|
|
2629
|
-
padding: 4px;
|
|
2630
2874
|
display: flex;
|
|
2631
2875
|
align-items: center;
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2876
|
+
flex-shrink: 0;
|
|
2877
|
+
padding: 1px 5px;
|
|
2878
|
+
border: 1px solid transparent;
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
.checkpoint-dot-separator {
|
|
2882
|
+
font-size: 12px;
|
|
2883
|
+
line-height: 18px;
|
|
2884
|
+
color: var(--vscode-descriptionForeground);
|
|
2885
|
+
flex-shrink: 0;
|
|
2636
2886
|
}
|
|
2637
2887
|
}
|
|
2638
2888
|
|
|
2639
|
-
.checkpoint-container
|
|
2640
|
-
.checkpoint-
|
|
2641
|
-
.interactive-item-container.interactive-request:not(.editing):hover .checkpoint-container
|
|
2889
|
+
.checkpoint-container:focus-within,
|
|
2890
|
+
.checkpoint-container.group-hovered,
|
|
2891
|
+
.interactive-item-container.interactive-request:not(.editing):hover .checkpoint-container {
|
|
2642
2892
|
opacity: 1;
|
|
2643
2893
|
}
|
|
2644
2894
|
|
|
@@ -2650,7 +2900,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2650
2900
|
overflow: visible !important;
|
|
2651
2901
|
}
|
|
2652
2902
|
|
|
2653
|
-
.interactive-list > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.
|
|
2903
|
+
.interactive-list > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.focused.request {
|
|
2654
2904
|
outline: none !important;
|
|
2655
2905
|
}
|
|
2656
2906
|
|
|
@@ -2678,6 +2928,10 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2678
2928
|
.request-hover:not(.has-no-actions) {
|
|
2679
2929
|
display: block;
|
|
2680
2930
|
}
|
|
2931
|
+
|
|
2932
|
+
.checkpoint-container {
|
|
2933
|
+
opacity: 1;
|
|
2934
|
+
}
|
|
2681
2935
|
}
|
|
2682
2936
|
|
|
2683
2937
|
.interactive-request.editing .rendered-markdown,
|
|
@@ -2924,3 +3178,8 @@ have to be updated for changes to the rules above, or to support more deeply nes
|
|
|
2924
3178
|
letter-spacing: 0.5px;
|
|
2925
3179
|
color: var(--vscode-descriptionForeground);
|
|
2926
3180
|
}
|
|
3181
|
+
|
|
3182
|
+
/* Outline removal except for HC themes */
|
|
3183
|
+
.monaco-workbench:not(.hc-black):not(.hc-light) .interactive-list > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.focused.response {
|
|
3184
|
+
outline: none !important;
|
|
3185
|
+
}
|