@codingame/monaco-vscode-katex-common 24.1.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/empty.js +1 -0
- package/package.json +45 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionWidgetDropdown.d.ts +37 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionWidgetDropdown.js +127 -0
- package/vscode/src/vs/platform/actions/browser/actionWidgetDropdownActionViewItem.d.ts +27 -0
- package/vscode/src/vs/platform/actions/browser/actionWidgetDropdownActionViewItem.js +81 -0
- package/vscode/src/vs/platform/actions/browser/buttonbar.d.ts +44 -0
- package/vscode/src/vs/platform/actions/browser/buttonbar.js +172 -0
- package/vscode/src/vs/platform/editor/browser/editor.d.ts +12 -0
- package/vscode/src/vs/platform/editor/browser/editor.js +51 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.d.ts +41 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatContinueInAction.js +295 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatElicitationActions.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatElicitationActions.js +60 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatExecuteActions.d.ts +65 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatExecuteActions.js +650 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatTitleActions.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatTitleActions.js +364 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment.d.ts +38 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/implicitContextAttachment.js +207 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAccessibilityProvider.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAccessibilityProvider.js +216 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAgentHover.d.ts +24 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAgentHover.js +114 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentModel.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentModel.js +141 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentWidgets.d.ts +169 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentWidgets.js +951 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentMarkdownRenderer.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentMarkdownRenderer.js +109 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatAgentCommandContentPart.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatAgentCommandContentPart.js +47 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatAnonymousRateLimitedPart.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatAnonymousRateLimitedPart.js +49 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatAttachmentsContentPart.d.ts +27 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatAttachmentsContentPart.js +160 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatChangesSummaryPart.d.ts +40 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatChangesSummaryPart.js +286 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatCodeCitationContentPart.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatCodeCitationContentPart.js +49 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatCollapsibleContentPart.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatCollapsibleContentPart.js +101 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatCollections.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatCollections.js +30 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatCommandContentPart.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatCommandContentPart.js +37 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationContentPart.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationContentPart.js +69 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationWidget.d.ts +116 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatConfirmationWidget.js +417 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentCodePools.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentCodePools.js +66 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatElicitationContentPart.d.ts +25 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatElicitationContentPart.js +123 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatErrorConfirmationPart.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatErrorConfirmationPart.js +60 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatErrorContentPart.d.ts +16 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatErrorContentPart.js +46 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatExtensionsContentPart.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatExtensionsContentPart.js +57 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownContentPart.d.ts +94 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownContentPart.js +567 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMcpServersInteractionContentPart.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMcpServersInteractionContentPart.js +224 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMultiDiffContentPart.js +259 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatProgressContentPart.d.ts +38 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatProgressContentPart.js +160 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatPullRequestContentPart.d.ts +16 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatPullRequestContentPart.js +55 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatQuotaExceededPart.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatQuotaExceededPart.js +117 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatReferencesContentPart.d.ts +66 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatReferencesContentPart.js +528 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatSuggestNextWidget.d.ts +31 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatSuggestNextWidget.js +160 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTaskContentPart.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTaskContentPart.js +49 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart.js +91 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart.service.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTextEditContentPart.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatThinkingContentPart.d.ts +54 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatThinkingContentPart.js +429 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTodoListWidget.d.ts +40 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTodoListWidget.js +347 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatToolInputOutputContentPart.d.ts +56 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatToolInputOutputContentPart.js +164 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatToolOutputContentSubPart.d.ts +32 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatToolOutputContentSubPart.js +224 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTreeContentPart.d.ts +35 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatTreeContentPart.js +173 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/media/chatConfirmationWidget.css +341 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/media/chatExtensionsContent.css +27 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/media/chatMarkdownPart.css +23 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/media/chatMcpServersInteractionContent.css +14 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/media/chatPullRequestContent.css +75 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/media/chatTerminalToolProgressPart.css +221 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/media/chatThinkingContent.css +162 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart.d.ts +41 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/abstractToolConfirmationSubPart.js +94 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatExtensionsInstallToolSubPart.js +96 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatInputOutputMarkdownProgressPart.js +147 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatResultListSubPart.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatResultListSubPart.js +23 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart.d.ts +68 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolConfirmationSubPart.js +353 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart.d.ts +100 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatTerminalToolProgressPart.js +1085 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart.d.ts +39 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolConfirmationSubPart.js +275 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolInvocationPart.d.ts +32 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolInvocationPart.js +119 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolInvocationSubPart.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolInvocationSubPart.js +36 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolOutputPart.d.ts +21 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolOutputPart.js +130 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart.d.ts +25 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolPostExecuteConfirmationPart.js +225 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolProgressPart.d.ts +24 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/toolInvocationParts/chatToolProgressPart.js +101 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDiffBlockPart.d.ts +42 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDiffBlockPart.js +127 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDragAndDrop.d.ts +43 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDragAndDrop.js +388 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions.d.ts +49 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingActions.js +721 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatFollowups.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatFollowups.js +52 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatInlineAnchorWidget.d.ts +39 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatInlineAnchorWidget.js +409 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatInputPart.d.ts +334 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatInputPart.js +2008 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatInputPartWidgets.d.ts +52 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatInputPartWidgets.js +93 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatListRenderer.d.ts +217 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatListRenderer.js +1573 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatMarkdownDecorationsRenderer.d.ts +43 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatMarkdownDecorationsRenderer.js +249 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOptions.d.ts +50 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOptions.js +84 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSelectedTools.d.ts +32 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSelectedTools.js +174 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem.d.ts +31 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/chatSessionPickerActionItem.js +101 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/common.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/common.js +76 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSessions/media/chatSessionAction.css +39 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatWidget.d.ts +292 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatWidget.js +2014 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/codeBlockPart.css +171 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/codeBlockPart.d.ts +173 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/codeBlockPart.js +797 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/chatImplicitContext.d.ts +54 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/chatImplicitContext.js +345 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/chatInputCompletions.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/chatInputCompletions.js +1069 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/chatInputRelatedFilesContrib.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/chatInputRelatedFilesContrib.js +139 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chat.css +2880 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chatAgentHover.css +87 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chatCodeBlockPill.css +139 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chatInlineAnchorWidget.css +61 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chatViewWelcome.css +209 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/modelPicker/modePickerActionItem.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/modelPicker/modePickerActionItem.js +135 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/modelPicker/modelPickerActionItem.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/modelPicker/modelPickerActionItem.js +147 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController.d.ts +71 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewWelcomeController.js +279 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcome.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcome.js +28 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatColors.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatColors.js +38 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.d.ts +55 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.js +176 -0
- package/vscode/src/vs/workbench/contrib/chat/common/codeBlockModelCollection.d.ts +45 -0
- package/vscode/src/vs/workbench/contrib/chat/common/codeBlockModelCollection.js +207 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +48 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +373 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatController.d.ts +171 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatController.js +1442 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSession.d.ts +199 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSession.js +482 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.js +37 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl.d.ts +95 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl.js +497 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatStrategies.d.ts +76 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatStrategies.js +464 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatWidget.d.ts +124 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatWidget.js +562 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget.d.ts +42 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatZoneWidget.js +279 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/media/inlineChat.css +411 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/utils.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/utils.js +66 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/common/inlineChat.d.ts +61 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/common/inlineChat.js +154 -0
- package/vscode/src/vs/workbench/contrib/markdown/browser/markedKatexSupport.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/markdown/browser/markedKatexSupport.js +201 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick.d.ts +41 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick.js +372 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils.js +58 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +594 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffCellEditorOptions.js +55 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.d.ts +273 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +1746 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.d.ts +50 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +269 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.d.ts +258 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementViewModel.js +806 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.d.ts +41 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffNestedCellViewModel.js +116 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/editorHeightCalculator.js +62 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.d.ts +27 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/eventDispatcher.js +40 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.d.ts +23 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.js +295 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.d.ts +51 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookDeletedCellDecorator.js +241 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.d.ts +24 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiff.js +146 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInlineDiffWidget.js +90 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookInsertedCellDecorator.js +41 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.d.ts +21 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalCellModelFactory.js +42 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.d.ts +25 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.js +77 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiff.css +469 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.d.ts +149 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +823 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.d.ts +180 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +29 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.d.ts +102 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +567 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.d.ts +30 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffOverviewRuler.js +189 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.d.ts +75 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffViewModel.js +439 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor.d.ts +57 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditor.js +263 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditorInput.d.ts +22 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookMultiDiffEditorInput.js +48 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/unchangedEditorRegions.js +39 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookMetadataTextModel.js +89 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiff.js +92 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiffEditorInput.d.ts +33 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookDiffEditorInput.js +108 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/chatTerminalCommandMirror.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/chatTerminalCommandMirror.js +145 -0
|
@@ -0,0 +1,2880 @@
|
|
|
1
|
+
/*---------------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
+
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
+
*--------------------------------------------------------------------------------------------*/
|
|
5
|
+
|
|
6
|
+
.interactive-session {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
max-width: 950px;
|
|
10
|
+
height: 100%;
|
|
11
|
+
margin: auto;
|
|
12
|
+
position: relative; /* Enable absolute positioning for child elements */
|
|
13
|
+
|
|
14
|
+
/* 11px when base font is 13px */
|
|
15
|
+
--vscode-chat-font-size-body-xs: 0.846em;
|
|
16
|
+
/* 12px when base font is 13px */
|
|
17
|
+
--vscode-chat-font-size-body-s: 0.923em;
|
|
18
|
+
/* 13px when base font is 13px */
|
|
19
|
+
--vscode-chat-font-size-body-m: 1em;
|
|
20
|
+
/* 14px when base font is 13px */
|
|
21
|
+
--vscode-chat-font-size-body-l: 1.077em;
|
|
22
|
+
/* 16px when base font is 13px */
|
|
23
|
+
--vscode-chat-font-size-body-xl: 1.231em;
|
|
24
|
+
/* 20px when base font is 13px */
|
|
25
|
+
--vscode-chat-font-size-body-xxl: 1.538em;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.interactive-list > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row > .monaco-tl-row > .monaco-tl-twistie {
|
|
29
|
+
/* Hide twisties from chat tree rows, but not from nested trees within a chat response */
|
|
30
|
+
display: none !important;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.interactive-item-container {
|
|
34
|
+
padding: 12px 16px;
|
|
35
|
+
display: flex;
|
|
36
|
+
flex-direction: column;
|
|
37
|
+
color: var(--vscode-interactive-session-foreground);
|
|
38
|
+
|
|
39
|
+
cursor: default;
|
|
40
|
+
user-select: text;
|
|
41
|
+
-webkit-user-select: text;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.interactive-item-container:not(:has(.chat-extensions-content-part)) .header {
|
|
45
|
+
display: flex;
|
|
46
|
+
align-items: center;
|
|
47
|
+
justify-content: space-between;
|
|
48
|
+
position: relative;
|
|
49
|
+
margin-bottom: 8px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.interactive-item-container .header.hidden,
|
|
53
|
+
.interactive-item-container .header .avatar-container.hidden,
|
|
54
|
+
.interactive-item-container .header .username.hidden {
|
|
55
|
+
display: none;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.interactive-item-container .header .user {
|
|
59
|
+
display: flex;
|
|
60
|
+
align-items: center;
|
|
61
|
+
gap: 8px;
|
|
62
|
+
|
|
63
|
+
/*
|
|
64
|
+
Rendering the avatar icon as round makes it a little larger than the .user container.
|
|
65
|
+
Add padding so that the focus outline doesn't run into it, and counteract it with a negative margin so it doesn't actually take up any extra space */
|
|
66
|
+
padding: 2px;
|
|
67
|
+
margin: -2px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.interactive-item-container .header .username {
|
|
71
|
+
margin: 0;
|
|
72
|
+
font-size: 13px;
|
|
73
|
+
font-weight: 600;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.interactive-item-container .detail-container {
|
|
77
|
+
font-family: var(--vscode-chat-font-family, inherit);
|
|
78
|
+
font-size: var(--vscode-chat-font-size-body-s);
|
|
79
|
+
color: var(--vscode-descriptionForeground);
|
|
80
|
+
overflow: hidden;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.interactive-item-container .detail-container .detail .agentOrSlashCommandDetected A {
|
|
84
|
+
cursor: pointer;
|
|
85
|
+
color: var(--vscode-textLink-foreground);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.interactive-item-container .chat-animated-ellipsis {
|
|
89
|
+
display: inline-block;
|
|
90
|
+
width: 2em;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.interactive-item-container:not(.show-detail-progress) .chat-animated-ellipsis {
|
|
94
|
+
display: none;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
@keyframes ellipsis {
|
|
98
|
+
0% {
|
|
99
|
+
content: "";
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
25% {
|
|
103
|
+
content: ".";
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
50% {
|
|
107
|
+
content: "..";
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
75% {
|
|
111
|
+
content: "...";
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
100% {
|
|
115
|
+
content: "";
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.interactive-item-container .chat-animated-ellipsis::after {
|
|
120
|
+
content: '';
|
|
121
|
+
white-space: nowrap;
|
|
122
|
+
overflow: hidden;
|
|
123
|
+
width: 3em;
|
|
124
|
+
animation: ellipsis steps(4, end) 1s infinite;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.interactive-item-container .header .avatar-container {
|
|
128
|
+
display: flex;
|
|
129
|
+
pointer-events: none;
|
|
130
|
+
user-select: none;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.interactive-item-container .header .avatar {
|
|
134
|
+
display: flex;
|
|
135
|
+
align-items: center;
|
|
136
|
+
justify-content: center;
|
|
137
|
+
width: 24px;
|
|
138
|
+
height: 24px;
|
|
139
|
+
border-radius: 50%;
|
|
140
|
+
outline: 1px solid var(--vscode-chat-requestBorder);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.interactive-item-container .header .avatar.codicon-avatar {
|
|
144
|
+
background: var(--vscode-chat-avatarBackground);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.interactive-item-container .header .avatar + .avatar {
|
|
148
|
+
margin-left: -8px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.interactive-item-container .header .avatar .icon {
|
|
152
|
+
width: 24px;
|
|
153
|
+
height: 24px;
|
|
154
|
+
border-radius: 50%;
|
|
155
|
+
background-color: var(--vscode-chat-list-background);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.interactive-item-container .header .avatar .codicon {
|
|
159
|
+
color: var(--vscode-chat-avatarForeground) !important;
|
|
160
|
+
font-size: 14px;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.monaco-list-row:not(.focused) .interactive-item-container:not(:hover) .header .monaco-toolbar,
|
|
164
|
+
.monaco-list:not(:focus-within) .monaco-list-row .interactive-item-container:not(:hover) .header .monaco-toolbar,
|
|
165
|
+
.monaco-list-row:not(.focused) .interactive-item-container:not(:hover) .header .monaco-toolbar .action-label,
|
|
166
|
+
.monaco-list:not(:focus-within) .monaco-list-row .interactive-item-container:not(:hover) .header .monaco-toolbar .action-label {
|
|
167
|
+
/* Also apply this rule to the .action-label directly to work around a strange issue- when the
|
|
168
|
+
toolbar is hidden without that second rule, tabbing from the list container into a list item doesn't work
|
|
169
|
+
and the tab key doesn't do anything. */
|
|
170
|
+
display: none;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.interactive-item-container .header .monaco-toolbar .monaco-action-bar .actions-container {
|
|
174
|
+
gap: 4px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.interactive-item-container .header .monaco-toolbar .action-label {
|
|
178
|
+
border: 1px solid transparent;
|
|
179
|
+
padding: 2px;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.interactive-item-container.interactive-response .header .monaco-toolbar {
|
|
183
|
+
position: absolute;
|
|
184
|
+
left: 0px;
|
|
185
|
+
background-color: var(--vscode-chat-list-background);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.interactive-item-container.interactive-request .header .monaco-toolbar {
|
|
189
|
+
/* Take the partially-transparent background color override for request rows */
|
|
190
|
+
background-color: inherit;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.interactive-item-container .chat-footer-toolbar {
|
|
194
|
+
display: none;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.interactive-item-container .chat-footer-toolbar.hidden {
|
|
198
|
+
display: none !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.interactive-item-container .chat-footer-toolbar .monaco-action-bar .actions-container {
|
|
202
|
+
gap: 4px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.interactive-item-container .chat-footer-toolbar .checked.action-label,
|
|
206
|
+
.interactive-item-container .chat-footer-toolbar .checked.action-label:hover {
|
|
207
|
+
color: var(--vscode-inputOption-activeForeground) !important;
|
|
208
|
+
border-color: var(--vscode-inputOption-activeBorder);
|
|
209
|
+
background-color: var(--vscode-inputOption-activeBackground);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.interactive-item-container.interactive-response.chat-most-recent-response {
|
|
213
|
+
min-height: var(--chat-current-response-min-height);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.interactive-item-container.interactive-response:not(.chat-response-loading) .chat-footer-toolbar,
|
|
217
|
+
.interactive-item-container.interactive-response:not(.chat-response-loading) .chat-footer-toolbar .chat-footer-details {
|
|
218
|
+
/* Complete response only */
|
|
219
|
+
display: block;
|
|
220
|
+
opacity: 0;
|
|
221
|
+
visibility: hidden;
|
|
222
|
+
padding-top: 6px;
|
|
223
|
+
height: 22px;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/* 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). */
|
|
227
|
+
.interactive-item-container.interactive-response:not(.chat-response-loading):hover .chat-footer-toolbar,
|
|
228
|
+
.interactive-item-container.interactive-response.chat-most-recent-response:not(.chat-response-loading) .chat-footer-toolbar,
|
|
229
|
+
.interactive-item-container.interactive-response:not(.chat-response-loading):hover .chat-footer-toolbar .chat-footer-details,
|
|
230
|
+
.interactive-item-container.interactive-response:not(.chat-response-loading):focus-within .chat-footer-toolbar,
|
|
231
|
+
.interactive-item-container.interactive-response:not(.chat-response-loading):focus-within .chat-footer-toolbar .chat-footer-details,
|
|
232
|
+
.monaco-list-row.focused .interactive-item-container.interactive-response:not(.chat-response-loading) .chat-footer-toolbar,
|
|
233
|
+
.monaco-list-row.focused .interactive-item-container.interactive-response:not(.chat-response-loading) .chat-footer-toolbar .chat-footer-details {
|
|
234
|
+
opacity: 1;
|
|
235
|
+
visibility: visible;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/* Style the internal toolbar element to use flexbox */
|
|
239
|
+
.interactive-item-container .chat-footer-toolbar .monaco-toolbar {
|
|
240
|
+
display: flex;
|
|
241
|
+
justify-content: space-between;
|
|
242
|
+
align-items: center;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.interactive-item-container .chat-footer-details {
|
|
246
|
+
display: none;
|
|
247
|
+
padding: 0;
|
|
248
|
+
font-size: var(--vscode-chat-font-size-body-xs);
|
|
249
|
+
opacity: 0.7;
|
|
250
|
+
color: var(--vscode-descriptionForeground);
|
|
251
|
+
line-height: 16px;
|
|
252
|
+
margin-left: auto;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.interactive-item-container .chat-footer-details.hidden {
|
|
256
|
+
display: none !important;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.interactive-item-container .value {
|
|
260
|
+
width: 100%;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.interactive-item-container > .value .chat-used-context {
|
|
264
|
+
margin-bottom: 8px;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.interactive-item-container .value .rendered-markdown:not(:has(.chat-extensions-content-part)) {
|
|
268
|
+
.codicon {
|
|
269
|
+
font-size: inherit;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.interactive-result-code-block .codicon {
|
|
273
|
+
font-size: initial;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.interactive-item-container .value .rendered-markdown blockquote {
|
|
278
|
+
margin: 0px;
|
|
279
|
+
padding: 0px 16px 0 10px;
|
|
280
|
+
border-left-width: 5px;
|
|
281
|
+
border-left-style: solid;
|
|
282
|
+
border-radius: 2px;
|
|
283
|
+
background: var(--vscode-textBlockQuote-background);
|
|
284
|
+
border-color: var(--vscode-textBlockQuote-border);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.interactive-item-container .value .rendered-markdown table {
|
|
288
|
+
width: 100%;
|
|
289
|
+
text-align: left;
|
|
290
|
+
margin-bottom: 16px;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.interactive-item-container .value .rendered-markdown table,
|
|
294
|
+
.interactive-item-container .value .rendered-markdown table td,
|
|
295
|
+
.interactive-item-container .value .rendered-markdown table th {
|
|
296
|
+
border: 1px solid var(--vscode-chat-requestBorder);
|
|
297
|
+
border-collapse: collapse;
|
|
298
|
+
padding: 4px 6px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.interactive-item-container .value .rendered-markdown a,
|
|
302
|
+
.interactive-item-container .value .interactive-session-followups,
|
|
303
|
+
.interactive-item-container .value .rendered-markdown a code {
|
|
304
|
+
color: var(--vscode-textLink-foreground);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.interactive-item-container .value .rendered-markdown .chat-extensions-content-part a {
|
|
308
|
+
color: inherit;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.interactive-item-container .value .rendered-markdown a {
|
|
312
|
+
user-select: text;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.interactive-item-container .value .rendered-markdown a:hover,
|
|
316
|
+
.interactive-item-container .value .rendered-markdown a:active {
|
|
317
|
+
color: var(--vscode-textLink-activeForeground);
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.hc-black .interactive-item-container .value .rendered-markdown a code,
|
|
321
|
+
.hc-light .interactive-item-container .value .rendered-markdown a code {
|
|
322
|
+
color: var(--vscode-textPreformat-foreground);
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.interactive-list {
|
|
326
|
+
overflow: hidden;
|
|
327
|
+
position: relative;
|
|
328
|
+
/* For the scroll down button */
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.hc-black .interactive-request,
|
|
332
|
+
.hc-light .interactive-request {
|
|
333
|
+
border-left: 3px solid var(--vscode-chat-requestBorder);
|
|
334
|
+
border-right: 3px solid var(--vscode-chat-requestBorder);
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.interactive-item-container .value {
|
|
338
|
+
white-space: normal;
|
|
339
|
+
overflow-wrap: anywhere;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.interactive-item-container .value > :last-child,
|
|
343
|
+
.interactive-item-container .value > :last-child.rendered-markdown > :last-child,
|
|
344
|
+
.interactive-item-container.interactive-request .value .rendered-markdown > :last-child {
|
|
345
|
+
margin-bottom: 0px;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.interactive-item-container .value .rendered-markdown hr {
|
|
349
|
+
border-color: rgba(0, 0, 0, 0.18);
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.vs-dark .interactive-item-container .value .rendered-markdown hr {
|
|
353
|
+
border-color: rgba(255, 255, 255, 0.18);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.interactive-item-container .value .rendered-markdown h1 {
|
|
357
|
+
font-size: var(--vscode-chat-font-size-body-xxl);
|
|
358
|
+
font-weight: 600;
|
|
359
|
+
margin: 16px 0 8px 0;
|
|
360
|
+
font-family: var(--vscode-chat-font-family, inherit);
|
|
361
|
+
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.interactive-item-container .value .rendered-markdown h2 {
|
|
365
|
+
font-size: var(--vscode-chat-font-size-body-xl);
|
|
366
|
+
font-weight: 600;
|
|
367
|
+
margin: 16px 0 8px 0;
|
|
368
|
+
font-family: var(--vscode-chat-font-family, inherit);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.interactive-item-container .value .rendered-markdown h3 {
|
|
372
|
+
font-size: var(--vscode-chat-font-size-body-l);
|
|
373
|
+
font-weight: 600;
|
|
374
|
+
margin: 16px 0 8px 0;
|
|
375
|
+
font-family: var(--vscode-chat-font-family, inherit);
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
.interactive-item-container.editing-session .value .rendered-markdown p:has(+ [data-code] > .chat-codeblock-pill-widget) {
|
|
379
|
+
margin-bottom: 8px;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.interactive-item-container.editing-session .value .rendered-markdown h3 {
|
|
383
|
+
font-size: var(--vscode-chat-font-size-body-m);
|
|
384
|
+
margin: 0 0 8px 0;
|
|
385
|
+
font-weight: unset;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
/* Codicons next to text need to be aligned with the text */
|
|
389
|
+
.interactive-item-container .value .rendered-markdown:not(:has(.chat-extensions-content-part)) .codicon {
|
|
390
|
+
position: relative;
|
|
391
|
+
top: 2px;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.interactive-item-container .value .rendered-markdown {
|
|
395
|
+
.chat-codeblock-pill-widget .codicon {
|
|
396
|
+
top: -1px;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
/* But codicons in toolbars assume the natural position of the codicon */
|
|
400
|
+
.monaco-toolbar .codicon {
|
|
401
|
+
position: initial;
|
|
402
|
+
top: initial;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
/* Code blocks at the beginning of an answer should not have a margin as it means it won't align with the agent icon*/
|
|
406
|
+
> div[data-code]:first-child {
|
|
407
|
+
margin-top: 0;
|
|
408
|
+
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
/* Override the top to avoid the toolbar getting clipped by overflow:hidden */
|
|
412
|
+
> div[data-code]:first-child .interactive-result-code-block .interactive-result-code-block-toolbar > .monaco-action-bar,
|
|
413
|
+
> div[data-code]:first-child .interactive-result-code-block .interactive-result-code-block-toolbar > .monaco-toolbar {
|
|
414
|
+
top: 6px;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.interactive-item-container .value.inline-progress {
|
|
419
|
+
|
|
420
|
+
.rendered-markdown {
|
|
421
|
+
display: inline-flex;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
/* not ideal but I cannot query the last div with this class... */
|
|
425
|
+
.rendered-markdown:last-of-type > P > SPAN:empty {
|
|
426
|
+
display: inline-block;
|
|
427
|
+
width: 11px;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.rendered-markdown:last-of-type > P > SPAN:empty::after {
|
|
431
|
+
content: '';
|
|
432
|
+
white-space: nowrap;
|
|
433
|
+
overflow: hidden;
|
|
434
|
+
width: 3em;
|
|
435
|
+
animation: ellipsis steps(4, end) 1s infinite;
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.interactive-item-container .value .rendered-markdown {
|
|
440
|
+
line-height: 1.5em;
|
|
441
|
+
font-size: var(--vscode-chat-font-size-body-m);
|
|
442
|
+
font-family: var(--vscode-chat-font-family, inherit);
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.interactive-item-container .value > .rendered-markdown p {
|
|
446
|
+
/* Targetting normal text paras. `p` can also appear in other elements/widgets */
|
|
447
|
+
margin: 0 0 16px 0;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
.interactive-item-container .value > .chat-tool-invocation-part {
|
|
451
|
+
.rendered-markdown p {
|
|
452
|
+
margin: 0 0 6px 0;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.disclaimer {
|
|
456
|
+
margin-top: 6px;
|
|
457
|
+
margin-bottom: -6px;
|
|
458
|
+
|
|
459
|
+
.rendered-markdown p:last-child {
|
|
460
|
+
margin-bottom: 0;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.message .see-more {
|
|
465
|
+
display: none;
|
|
466
|
+
position: absolute;
|
|
467
|
+
right: 0;
|
|
468
|
+
top: 20px;
|
|
469
|
+
|
|
470
|
+
a {
|
|
471
|
+
color: var(--vscode-textLink-foreground);
|
|
472
|
+
text-decoration: underline;
|
|
473
|
+
cursor: pointer;
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.message.can-see-more {
|
|
478
|
+
position: relative;
|
|
479
|
+
|
|
480
|
+
.message-wrapper {
|
|
481
|
+
/* This mask fades out the end of the second line of text so the "see more" message can be displayed over it. */
|
|
482
|
+
mask-image:
|
|
483
|
+
linear-gradient(to right, rgba(0, 0, 0, 1) calc(100% - 95px), rgba(0, 0, 0, 0) calc(100% - 72px)), linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20px, rgba(0, 0, 0, 1) 2px, rgba(0, 0, 0, 1) 100%);
|
|
484
|
+
mask-repeat: no-repeat, no-repeat;
|
|
485
|
+
pointer-events: none;
|
|
486
|
+
max-height: 40px;
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
.see-more {
|
|
490
|
+
display: block;
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
.progress-container .rendered-markdown [data-code] {
|
|
495
|
+
margin: 0;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
.tool-input-output-part {
|
|
499
|
+
display: flex;
|
|
500
|
+
flex-wrap: wrap;
|
|
501
|
+
align-items: center;
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
.tool-input-output-part .rendered-markdown p {
|
|
505
|
+
margin: inherit;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.tool-input-output-part .expando {
|
|
509
|
+
display: flex;
|
|
510
|
+
align-items: center;
|
|
511
|
+
cursor: pointer;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.tool-input-output-part .input-output {
|
|
515
|
+
display: none;
|
|
516
|
+
padding: 6px 0;
|
|
517
|
+
flex-basis: 100%;
|
|
518
|
+
width: 100%;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.tool-input-output-part.expanded .input-output {
|
|
522
|
+
display: inherit;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.tool-output-part {
|
|
526
|
+
border: 1px solid var(--vscode-widget-border);
|
|
527
|
+
border-radius: 6px;
|
|
528
|
+
background: var(--vscode-editor-background);
|
|
529
|
+
margin: 4px 0;
|
|
530
|
+
overflow: hidden;
|
|
531
|
+
|
|
532
|
+
.output-title {
|
|
533
|
+
padding: 8px 12px;
|
|
534
|
+
background: var(--vscode-editorWidget-background);
|
|
535
|
+
border-bottom: 1px solid var(--vscode-widget-border);
|
|
536
|
+
font-size: var(--vscode-chat-font-size-body-m);
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.output-error {
|
|
540
|
+
margin: 6px 4px;
|
|
541
|
+
color: var(--vscode-errorForeground);
|
|
542
|
+
|
|
543
|
+
.output-error-header {
|
|
544
|
+
display: flex;
|
|
545
|
+
align-items: center;
|
|
546
|
+
gap: 7px;
|
|
547
|
+
margin-bottom: 4px;
|
|
548
|
+
|
|
549
|
+
.codicon-error {
|
|
550
|
+
color: var(--vscode-errorForeground) !important;
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.output-error-details {
|
|
555
|
+
font-family: var(--monaco-monospace-font);
|
|
556
|
+
font-size: var(--vscode-chat-font-size-body-xs);
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
&:not(:last-child) {
|
|
562
|
+
margin-bottom: 8px;
|
|
563
|
+
}
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.interactive-item-container .value .from-sub-agent {
|
|
567
|
+
&.chat-tool-invocation-part,
|
|
568
|
+
&.chat-confirmation-widget,
|
|
569
|
+
&.chat-terminal-confirmation-widget,
|
|
570
|
+
&.chat-codeblock-pill-widget {
|
|
571
|
+
margin-left: 18px;
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.interactive-item-container .value > .rendered-markdown li > p {
|
|
576
|
+
margin: 0;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
/* #region list indent rules */
|
|
580
|
+
.interactive-item-container .value .rendered-markdown ul {
|
|
581
|
+
/* Keep this in sync with the values for dedented codeblocks below */
|
|
582
|
+
padding-inline-start: 24px;
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.interactive-item-container .value .rendered-markdown ol {
|
|
586
|
+
/* Keep this in sync with the values for dedented codeblocks below */
|
|
587
|
+
padding-inline-start: 28px;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
/* NOTE- We want to dedent codeblocks in lists specifically to give them the full width. No more elegant way to do this, these values
|
|
591
|
+
have to be updated for changes to the rules above, or to support more deeply nested lists. */
|
|
592
|
+
.interactive-item-container .value .rendered-markdown ul .interactive-result-code-block {
|
|
593
|
+
margin-left: -24px;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.interactive-item-container .value .rendered-markdown ul ul .interactive-result-code-block {
|
|
597
|
+
margin-left: -48px;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.interactive-item-container .value .rendered-markdown ol .interactive-result-code-block {
|
|
601
|
+
margin-left: -28px;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.interactive-item-container .value .rendered-markdown ol ol .interactive-result-code-block {
|
|
605
|
+
margin-left: -56px;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.interactive-item-container .value .rendered-markdown ol ul .interactive-result-code-block,
|
|
609
|
+
.interactive-item-container .value .rendered-markdown ul ol .interactive-result-code-block {
|
|
610
|
+
margin-left: -52px;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
/* #endregion list indent rules */
|
|
614
|
+
|
|
615
|
+
.interactive-item-container .value .rendered-markdown img {
|
|
616
|
+
max-width: 100%;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.chat-tool-hover,
|
|
620
|
+
.interactive-item-container {
|
|
621
|
+
|
|
622
|
+
.monaco-tokenized-source,
|
|
623
|
+
code {
|
|
624
|
+
font-family: var(--monaco-monospace-font);
|
|
625
|
+
font-size: var(--vscode-chat-font-size-body-s);
|
|
626
|
+
color: var(--vscode-textPreformat-foreground);
|
|
627
|
+
background-color: var(--vscode-textPreformat-background);
|
|
628
|
+
padding: 1px 3px;
|
|
629
|
+
border-radius: 4px;
|
|
630
|
+
white-space: pre-wrap;
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.interactive-item-container.interactive-item-compact {
|
|
635
|
+
padding: 8px 20px;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.interactive-item-container.interactive-item-compact .header {
|
|
639
|
+
height: 16px;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.interactive-item-container.interactive-item-compact .header .avatar {
|
|
643
|
+
width: 18px;
|
|
644
|
+
height: 18px;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
.interactive-item-container.interactive-item-compact .header .avatar .icon {
|
|
648
|
+
width: 16px;
|
|
649
|
+
height: 16px;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.interactive-item-container.interactive-item-compact .header .codicon-avatar .codicon {
|
|
653
|
+
font-size: 12px;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.interactive-item-container.interactive-item-compact .header .avatar + .avatar {
|
|
657
|
+
margin-left: -4px;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.interactive-item-container.interactive-item-compact .value {
|
|
661
|
+
min-height: 0;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.interactive-item-container.interactive-item-compact .value > .rendered-markdown p {
|
|
665
|
+
margin: 0 0 8px 0;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.interactive-item-container.interactive-item-compact .value > .rendered-markdown li > p {
|
|
669
|
+
margin: 0;
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
.interactive-item-container.interactive-item-compact .value .rendered-markdown h1 {
|
|
673
|
+
margin: 8px 0;
|
|
674
|
+
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.interactive-item-container.interactive-item-compact .value .rendered-markdown h2 {
|
|
678
|
+
margin: 8px 0;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
.interactive-item-container.interactive-item-compact .value .rendered-markdown h3 {
|
|
682
|
+
margin: 8px 0;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
.interactive-item-container.minimal {
|
|
686
|
+
flex-direction: row;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
.interactive-item-container.minimal .column.left {
|
|
690
|
+
padding-top: 2px;
|
|
691
|
+
display: inline-block;
|
|
692
|
+
flex-grow: 0;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
.interactive-item-container.minimal .column.right {
|
|
696
|
+
display: inline-block;
|
|
697
|
+
flex-grow: 1;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.interactive-item-container.interactive-request.minimal .rendered-markdown .chat-animated-ellipsis {
|
|
701
|
+
display: inline-flex;
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.interactive-item-container.minimal .user > .username {
|
|
705
|
+
display: none;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.interactive-item-container.minimal .detail-container {
|
|
709
|
+
font-size: unset;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.interactive-item-container.minimal > .header {
|
|
713
|
+
position: absolute;
|
|
714
|
+
right: 0;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.chat-dnd-overlay {
|
|
718
|
+
position: absolute;
|
|
719
|
+
top: 0;
|
|
720
|
+
left: 0;
|
|
721
|
+
width: 100%;
|
|
722
|
+
height: 100%;
|
|
723
|
+
box-sizing: border-box;
|
|
724
|
+
|
|
725
|
+
display: none;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.chat-dnd-overlay.visible {
|
|
729
|
+
display: flex;
|
|
730
|
+
align-items: center;
|
|
731
|
+
justify-content: center;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
.chat-dnd-overlay .attach-context-overlay-text {
|
|
735
|
+
padding: 0.6em;
|
|
736
|
+
margin: 0.2em;
|
|
737
|
+
line-height: 12px;
|
|
738
|
+
height: 12px;
|
|
739
|
+
display: flex;
|
|
740
|
+
align-items: center;
|
|
741
|
+
text-align: center;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.chat-dnd-overlay .attach-context-overlay-text .codicon {
|
|
745
|
+
height: 12px;
|
|
746
|
+
font-size: 12px;
|
|
747
|
+
margin-right: 3px;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.interactive-session .chat-input-container {
|
|
751
|
+
box-sizing: border-box;
|
|
752
|
+
cursor: text;
|
|
753
|
+
background-color: var(--vscode-input-background);
|
|
754
|
+
border: 1px solid var(--vscode-input-border, transparent);
|
|
755
|
+
border-radius: 4px;
|
|
756
|
+
padding: 0 6px 6px 6px;
|
|
757
|
+
/* top padding is inside the editor widget */
|
|
758
|
+
width: 100%;
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.interactive-input-part:has(.chat-editing-session > .chat-editing-session-container) .chat-input-container,
|
|
762
|
+
.interactive-input-part:has(.chat-todo-list-widget-container > .chat-todo-list-widget.has-todos) .chat-input-container,
|
|
763
|
+
.interactive-input-part:has(.chat-input-widgets-container > .chat-status-widget:not([style*="display: none"])) .chat-input-container {
|
|
764
|
+
/* Remove top border radius when editing session, todo list, or status widget is present */
|
|
765
|
+
border-top-left-radius: 0;
|
|
766
|
+
border-top-right-radius: 0;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.interactive-session .chat-editing-session {
|
|
770
|
+
margin-bottom: -4px;
|
|
771
|
+
/* Counter the flex gap */
|
|
772
|
+
/* reset the 4px gap of the container for editing sessions */
|
|
773
|
+
width: 100%;
|
|
774
|
+
position: relative;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.interactive-session .chat-editing-session .chat-editing-session-container {
|
|
778
|
+
padding: 6px 3px 6px 3px;
|
|
779
|
+
box-sizing: border-box;
|
|
780
|
+
background-color: var(--vscode-editor-background);
|
|
781
|
+
border: 1px solid var(--vscode-input-border, transparent);
|
|
782
|
+
border-bottom: none;
|
|
783
|
+
border-radius: 4px 4px 0 0;
|
|
784
|
+
display: flex;
|
|
785
|
+
flex-direction: column;
|
|
786
|
+
gap: 2px;
|
|
787
|
+
overflow: hidden;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container:has(.chat-todo-list-widget.has-todos) + .chat-editing-session .chat-editing-session-container {
|
|
791
|
+
border-top-left-radius: 0;
|
|
792
|
+
border-top-right-radius: 0;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.interactive-session .chat-editing-session .monaco-list-row .chat-collapsible-list-action-bar {
|
|
796
|
+
padding-left: 5px;
|
|
797
|
+
display: none;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.interactive-session .chat-editing-session .monaco-list-row:hover .chat-collapsible-list-action-bar,
|
|
801
|
+
.interactive-session .chat-editing-session .monaco-list-row.focused .chat-collapsible-list-action-bar,
|
|
802
|
+
.interactive-session .chat-editing-session .monaco-list-row.selected .chat-collapsible-list-action-bar {
|
|
803
|
+
display: inherit;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
.interactive-session .chat-editing-session .chat-editing-session-container.show-file-icons .monaco-scrollable-element .monaco-list-rows .monaco-list-row {
|
|
807
|
+
border-radius: 2px;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.interactive-session .chat-editing-session .chat-editing-session-container.show-file-icons .chat-editing-session-list .monaco-scrollable-element:has(.visible.scrollbar.vertical) .monaco-list-row .monaco-icon-label {
|
|
811
|
+
padding-right: 12px;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.interactive-session .chat-editing-session .chat-editing-session-container .chat-editing-session-overview {
|
|
815
|
+
display: flex;
|
|
816
|
+
flex-direction: row;
|
|
817
|
+
justify-content: space-between;
|
|
818
|
+
gap: 6px;
|
|
819
|
+
padding-right: 4px;
|
|
820
|
+
cursor: pointer;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.interactive-session .chat-editing-session .chat-editing-session-container .chat-editing-session-overview > .working-set-title {
|
|
824
|
+
color: var(--vscode-descriptionForeground);
|
|
825
|
+
font-size: 11px;
|
|
826
|
+
white-space: nowrap;
|
|
827
|
+
overflow: hidden;
|
|
828
|
+
text-overflow: ellipsis;
|
|
829
|
+
align-content: center;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.interactive-session .chat-editing-session .chat-editing-session-container .chat-editing-session-overview > .working-set-title .working-set-count.file-limit-reached {
|
|
833
|
+
color: var(--vscode-notificationsWarningIcon-foreground);
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
/* Inline added/removed line count styling */
|
|
837
|
+
.interactive-session .chat-editing-session .chat-editing-session-container .chat-editing-session-overview .working-set-line-counts {
|
|
838
|
+
display: inline-flex;
|
|
839
|
+
gap: 4px;
|
|
840
|
+
margin-left: 6px;
|
|
841
|
+
font-weight: 500;
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
.interactive-session .chat-editing-session .chat-editing-session-container .chat-editing-session-overview .working-set-line-counts .working-set-lines-added {
|
|
845
|
+
color: var(--vscode-chat-linesAddedForeground);
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.interactive-session .chat-editing-session .chat-editing-session-container .chat-editing-session-overview .working-set-line-counts .working-set-lines-removed {
|
|
849
|
+
color: var(--vscode-chat-linesRemovedForeground);
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.interactive-session .chat-editing-session .chat-editing-session-list .working-set-line-counts {
|
|
853
|
+
margin-left: 6px;
|
|
854
|
+
display: inline-flex;
|
|
855
|
+
gap: 4px;
|
|
856
|
+
font-size: 11px;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.interactive-session .chat-editing-session .chat-editing-session-list .working-set-line-counts .working-set-lines-added {
|
|
860
|
+
color: var(--vscode-chat-linesAddedForeground);
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
.interactive-session .chat-editing-session .chat-editing-session-list .working-set-line-counts .working-set-lines-removed {
|
|
864
|
+
color: var(--vscode-chat-linesRemovedForeground);
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.interactive-session .chat-editing-session .working-set-title {
|
|
868
|
+
|
|
869
|
+
.monaco-button {
|
|
870
|
+
padding: 4px 6px 4px 0px;
|
|
871
|
+
border-radius: 2px;
|
|
872
|
+
border: none;
|
|
873
|
+
background-color: unset;
|
|
874
|
+
color: var(--vscode-foreground)
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
.monaco-button:focus-visible {
|
|
878
|
+
outline-offset: -1px !important;
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
.interactive-session .chat-editing-session .chat-editing-session-container .monaco-progress-container {
|
|
884
|
+
position: relative;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions,
|
|
888
|
+
.interactive-session .chat-editing-session .chat-editing-session-actions {
|
|
889
|
+
display: flex;
|
|
890
|
+
flex-direction: row;
|
|
891
|
+
flex-wrap: nowrap;
|
|
892
|
+
gap: 6px;
|
|
893
|
+
align-items: center;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions {
|
|
897
|
+
margin: 3px 0px;
|
|
898
|
+
overflow: hidden;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
.interactive-session .chat-editing-session .monaco-button {
|
|
902
|
+
height: 18px;
|
|
903
|
+
width: fit-content;
|
|
904
|
+
padding: 2px 6px;
|
|
905
|
+
font-size: 11px;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button:hover {
|
|
909
|
+
background-color: var(--vscode-button-hoverBackground);
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.interactive-session .chat-editing-session .chat-editing-session-actions-group {
|
|
913
|
+
display: flex;
|
|
914
|
+
flex-direction: row;
|
|
915
|
+
flex-wrap: wrap;
|
|
916
|
+
gap: 6px;
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button.codicon.codicon-close {
|
|
920
|
+
width: 17px;
|
|
921
|
+
height: 17px;
|
|
922
|
+
display: flex;
|
|
923
|
+
align-items: center;
|
|
924
|
+
justify-content: center;
|
|
925
|
+
font-size: 16px;
|
|
926
|
+
color: var(--vscode-descriptionForeground);
|
|
927
|
+
background-color: transparent;
|
|
928
|
+
border: none;
|
|
929
|
+
padding: 0;
|
|
930
|
+
border-radius: 5px;
|
|
931
|
+
cursor: pointer;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button.secondary {
|
|
935
|
+
color: var(--vscode-foreground);
|
|
936
|
+
background-color: transparent;
|
|
937
|
+
border: none;
|
|
938
|
+
height: 22px;
|
|
939
|
+
padding-left: 0px;
|
|
940
|
+
cursor: pointer;
|
|
941
|
+
display: flex;
|
|
942
|
+
justify-content: start;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.chat-attachments-container {
|
|
946
|
+
display: flex;
|
|
947
|
+
flex-direction: row;
|
|
948
|
+
gap: 4px;
|
|
949
|
+
margin-top: 6px;
|
|
950
|
+
flex-wrap: wrap;
|
|
951
|
+
cursor: default;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
.chat-related-files {
|
|
955
|
+
display: flex;
|
|
956
|
+
flex-wrap: wrap;
|
|
957
|
+
align-items: center;
|
|
958
|
+
gap: 4px;
|
|
959
|
+
max-width: 100%;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
.chat-related-files .monaco-button-dropdown .monaco-text-button {
|
|
963
|
+
font-size: 11px;
|
|
964
|
+
justify-content: left;
|
|
965
|
+
width: fit-content;
|
|
966
|
+
padding: 0px;
|
|
967
|
+
border: none;
|
|
968
|
+
height: 18px;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.chat-related-files .monaco-button-dropdown .monaco-text-button span {
|
|
972
|
+
font-style: italic;
|
|
973
|
+
height: 18px;
|
|
974
|
+
opacity: 0.7;
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
.chat-related-files .monaco-button-dropdown {
|
|
978
|
+
border-radius: 4px;
|
|
979
|
+
height: 18px;
|
|
980
|
+
border: 1px solid var(--vscode-input-border);
|
|
981
|
+
border-style: dashed;
|
|
982
|
+
align-items: center;
|
|
983
|
+
overflow: hidden;
|
|
984
|
+
gap: 2px;
|
|
985
|
+
padding: 0 4px;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.chat-related-files .monaco-button.codicon.codicon-add {
|
|
989
|
+
display: flex;
|
|
990
|
+
flex-direction: column;
|
|
991
|
+
color: var(--vscode-descriptionForeground);
|
|
992
|
+
padding-top: 3px;
|
|
993
|
+
margin-left: -4px;
|
|
994
|
+
padding-left: 4px;
|
|
995
|
+
font-size: 14px;
|
|
996
|
+
/* The + codicon is large, make it look more like the x codicon */
|
|
997
|
+
height: calc(100% - 3px);
|
|
998
|
+
width: 17px;
|
|
999
|
+
outline-offset: -2px !important;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.interactive-session .chat-related-files .monaco-icon-label::before {
|
|
1003
|
+
padding: 4px 3px 0 2px;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.interactive-session .chat-editing-session .chat-related-files .monaco-button.secondary:first-child {
|
|
1007
|
+
margin: 3px 0px 3px 3px;
|
|
1008
|
+
flex-shrink: 0;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.interactive-session .chat-editing-session .chat-related-files .monaco-button.secondary.monaco-icon-label::before {
|
|
1012
|
+
display: inline-flex;
|
|
1013
|
+
align-items: center;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
.interactive-session .chat-editing-session .chat-related-files .monaco-button.secondary:only-child {
|
|
1017
|
+
width: 100%;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.interactive-session .chat-editing-session .chat-related-files .monaco-button.secondary.disabled {
|
|
1021
|
+
cursor: initial;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.interactive-session .chat-editing-session .chat-related-files .monaco-button.secondary .codicon {
|
|
1025
|
+
font-size: 12px;
|
|
1026
|
+
margin-left: 4px;
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
.interactive-session .chat-editing-session .chat-editing-session-actions .monaco-button.secondary.monaco-text-button.codicon {
|
|
1030
|
+
background-color: transparent;
|
|
1031
|
+
border-color: transparent;
|
|
1032
|
+
color: var(--vscode-foreground);
|
|
1033
|
+
cursor: pointer;
|
|
1034
|
+
padding: 0px;
|
|
1035
|
+
border-radius: 2px;
|
|
1036
|
+
display: inline-flex;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.interactive-session .chat-editing-session .chat-editing-session-actions .monaco-button.secondary.monaco-text-button {
|
|
1040
|
+
background-color: var(--vscode-button-secondaryBackground);
|
|
1041
|
+
border: 1px solid var(--vscode-button-border);
|
|
1042
|
+
color: var(--vscode-button-secondaryForeground);
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.interactive-session .chat-editing-session .chat-editing-session-actions .monaco-button.secondary:hover {
|
|
1046
|
+
background-color: var(--vscode-button-secondaryHoverBackground);
|
|
1047
|
+
color: var(--vscode-button-secondaryForeground);
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
/* The Add Files button is currently implemented as a secondary button but should not have the secondary button background */
|
|
1051
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button.secondary:hover {
|
|
1052
|
+
background-color: var(--vscode-toolbar-hoverBackground);
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
.interactive-session .chat-editing-session .chat-editing-session-actions .monaco-button.secondary.monaco-text-button.codicon:not(.disabled):hover,
|
|
1056
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button:hover {
|
|
1057
|
+
background-color: var(--vscode-toolbar-hoverBackground);
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button,
|
|
1061
|
+
.interactive-session .chat-editing-session .chat-editing-session-actions .monaco-button {
|
|
1062
|
+
overflow: hidden;
|
|
1063
|
+
text-wrap: nowrap;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button-dropdown.sidebyside-button {
|
|
1067
|
+
align-items: center;
|
|
1068
|
+
border-radius: 2px;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button-dropdown.sidebyside-button .monaco-button,
|
|
1072
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button-dropdown.sidebyside-button .monaco-button:hover {
|
|
1073
|
+
border-right: 1px solid transparent;
|
|
1074
|
+
background-color: unset;
|
|
1075
|
+
padding: 0;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button-dropdown.sidebyside-button > .separator {
|
|
1079
|
+
border-right: 1px solid transparent;
|
|
1080
|
+
padding: 0 1px;
|
|
1081
|
+
height: 22px;
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button-dropdown.sidebyside-button:hover > .separator {
|
|
1085
|
+
border-color: var(--vscode-input-border, transparent);
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.interactive-session .chat-editing-session .chat-editing-session-toolbar-actions .monaco-button-dropdown.sidebyside-button:hover {
|
|
1089
|
+
background-color: var(--vscode-toolbar-hoverBackground);
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.interactive-session .interactive-input-part > .chat-input-widgets-container {
|
|
1093
|
+
margin-bottom: -4px;
|
|
1094
|
+
width: 100%;
|
|
1095
|
+
position: relative;
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
/* Chat Todo List Widget Container - mirrors chat-editing-session styling */
|
|
1099
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container {
|
|
1100
|
+
margin-bottom: -4px;
|
|
1101
|
+
/* reset the 4px gap of the container for editing sessions */
|
|
1102
|
+
width: 100%;
|
|
1103
|
+
position: relative;
|
|
1104
|
+
}
|
|
1105
|
+
|
|
1106
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget {
|
|
1107
|
+
padding: 6px 3px 6px 3px;
|
|
1108
|
+
box-sizing: border-box;
|
|
1109
|
+
border: 1px solid var(--vscode-input-border, transparent);
|
|
1110
|
+
background-color: var(--vscode-editor-background);
|
|
1111
|
+
border-bottom: none;
|
|
1112
|
+
border-top-left-radius: 4px;
|
|
1113
|
+
border-top-right-radius: 4px;
|
|
1114
|
+
flex-direction: column;
|
|
1115
|
+
gap: 2px;
|
|
1116
|
+
overflow: hidden;
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-list-expand {
|
|
1120
|
+
width: 100%;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-list-expand .monaco-button {
|
|
1124
|
+
display: flex;
|
|
1125
|
+
align-items: center;
|
|
1126
|
+
gap: 4px;
|
|
1127
|
+
cursor: pointer;
|
|
1128
|
+
justify-content: space-between;
|
|
1129
|
+
width: 100%;
|
|
1130
|
+
background-color: transparent;
|
|
1131
|
+
border-color: transparent;
|
|
1132
|
+
color: var(--vscode-foreground);
|
|
1133
|
+
padding: 0;
|
|
1134
|
+
min-width: unset;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-list-expand .monaco-button:focus:not(:focus-visible) {
|
|
1138
|
+
outline: none;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-list-expand .todo-list-title-section {
|
|
1142
|
+
padding-left: 3px;
|
|
1143
|
+
display: flex;
|
|
1144
|
+
align-items: center;
|
|
1145
|
+
flex: 1;
|
|
1146
|
+
font-size: 11px;
|
|
1147
|
+
white-space: nowrap;
|
|
1148
|
+
overflow: hidden;
|
|
1149
|
+
text-overflow: ellipsis;
|
|
1150
|
+
line-height: 16px;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-list-expand .todo-list-title-section .codicon {
|
|
1154
|
+
font-size: 16px;
|
|
1155
|
+
line-height: 16px;
|
|
1156
|
+
flex-shrink: 0;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-clear-button-container {
|
|
1160
|
+
padding-right: 2px;
|
|
1161
|
+
display: flex;
|
|
1162
|
+
align-items: center;
|
|
1163
|
+
height: 18px;
|
|
1164
|
+
opacity: 1;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-clear-button-container .monaco-button {
|
|
1168
|
+
background-color: transparent;
|
|
1169
|
+
border-color: transparent;
|
|
1170
|
+
color: var(--vscode-foreground);
|
|
1171
|
+
cursor: pointer;
|
|
1172
|
+
height: 16px;
|
|
1173
|
+
padding: 2px;
|
|
1174
|
+
border-radius: 2px;
|
|
1175
|
+
display: inline-flex;
|
|
1176
|
+
align-items: center;
|
|
1177
|
+
justify-content: center;
|
|
1178
|
+
min-width: unset;
|
|
1179
|
+
width: 14px;
|
|
1180
|
+
margin-right: 1px;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-clear-button-container .monaco-button:hover {
|
|
1184
|
+
background-color: var(--vscode-toolbar-hoverBackground);
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-clear-button-container .monaco-button:focus {
|
|
1188
|
+
outline: 1px solid var(--vscode-focusBorder);
|
|
1189
|
+
outline-offset: 1px;
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-clear-button-container .monaco-button .codicon {
|
|
1193
|
+
font-size: 10px;
|
|
1194
|
+
color: var(--vscode-foreground);
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
|
|
1198
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .expand-icon {
|
|
1199
|
+
flex-shrink: 0;
|
|
1200
|
+
margin-right: 3px;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-list-title {
|
|
1204
|
+
font-weight: normal;
|
|
1205
|
+
font-size: 11px;
|
|
1206
|
+
display: flex;
|
|
1207
|
+
align-items: center;
|
|
1208
|
+
overflow: hidden;
|
|
1209
|
+
text-overflow: ellipsis;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
1212
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-list-container {
|
|
1213
|
+
margin-top: 2px;
|
|
1214
|
+
max-height: calc(6.5 * 21px);
|
|
1215
|
+
/* 6.5 items to show half-line affordance */
|
|
1216
|
+
overflow-y: auto;
|
|
1217
|
+
overscroll-behavior: contain;
|
|
1218
|
+
scroll-behavior: smooth;
|
|
1219
|
+
scroll-padding-top: 24px;
|
|
1220
|
+
/* Half item height to show partial next item */
|
|
1221
|
+
scroll-padding-bottom: 24px;
|
|
1222
|
+
/* Half item height to show partial previous item */
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
|
|
1226
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-list {
|
|
1227
|
+
display: flex;
|
|
1228
|
+
flex-direction: column;
|
|
1229
|
+
gap: 4px;
|
|
1230
|
+
scroll-snap-type: y proximity;
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-item {
|
|
1234
|
+
display: flex;
|
|
1235
|
+
align-items: center;
|
|
1236
|
+
gap: 6px;
|
|
1237
|
+
scroll-snap-align: start;
|
|
1238
|
+
min-height: 22px;
|
|
1239
|
+
font-size: var(--vscode-chat-font-size-body-m);
|
|
1240
|
+
padding: 0px 3px;
|
|
1241
|
+
border-radius: 2px;
|
|
1242
|
+
cursor: pointer;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
|
|
1246
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-item:focus {
|
|
1247
|
+
outline: 1px solid var(--vscode-focusBorder);
|
|
1248
|
+
outline-offset: -1px;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-item.focused {
|
|
1252
|
+
background-color: var(--vscode-list-focusBackground);
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-item > .todo-status-icon.codicon {
|
|
1256
|
+
flex-shrink: 0;
|
|
1257
|
+
font-size: 16px;
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .todo-content {
|
|
1261
|
+
flex-grow: 1;
|
|
1262
|
+
overflow: hidden;
|
|
1263
|
+
white-space: nowrap;
|
|
1264
|
+
text-overflow: ellipsis;
|
|
1265
|
+
min-width: 0;
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1268
|
+
.interactive-session .interactive-input-part > .chat-todo-list-widget-container .chat-todo-list-widget .monaco-scrollable-element .monaco-list-rows .monaco-list-row {
|
|
1269
|
+
border-radius: 2px;
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
.interactive-session .interactive-input-part.compact .chat-input-container {
|
|
1273
|
+
display: flex;
|
|
1274
|
+
justify-content: space-between;
|
|
1275
|
+
padding-bottom: 0;
|
|
1276
|
+
border-radius: 2px;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
.interactive-session .interactive-input-and-side-toolbar {
|
|
1280
|
+
display: flex;
|
|
1281
|
+
gap: 4px;
|
|
1282
|
+
align-items: center;
|
|
1283
|
+
position: relative;
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.interactive-session .chat-input-container.focused {
|
|
1287
|
+
border-color: var(--vscode-focusBorder);
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
.chat-editor-container .monaco-editor .mtk1 {
|
|
1291
|
+
color: var(--vscode-input-foreground);
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
.interactive-session .chat-editor-container .monaco-editor .chat-prompt-spinner {
|
|
1295
|
+
transform-origin: 6px 6px;
|
|
1296
|
+
font-size: 12px;
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
.interactive-session .interactive-input-part .chat-editor-container .interactive-input-editor .monaco-editor,
|
|
1300
|
+
.interactive-session .interactive-input-part .chat-editor-container .interactive-input-editor .monaco-editor .monaco-editor-background {
|
|
1301
|
+
background-color: var(--vscode-input-background);
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
.interactive-session .interactive-input-part.editing .chat-input-container .chat-editor-container .monaco-editor,
|
|
1305
|
+
.interactive-session .interactive-input-part.editing .chat-input-container .chat-editor-container .monaco-editor .monaco-editor-background,
|
|
1306
|
+
.interactive-session .interactive-request.editing .interactive-input-part .chat-input-container .chat-editor-container .monaco-editor,
|
|
1307
|
+
.interactive-session .interactive-request.editing .interactive-input-part .chat-input-container .chat-editor-container .monaco-editor .monaco-editor-background {
|
|
1308
|
+
background-color: transparent;
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
.interactive-session .interactive-input-part.editing .chat-input-container,
|
|
1312
|
+
.interactive-session .interactive-request.editing .interactive-input-part .chat-input-container {
|
|
1313
|
+
background-color: var(--vscode-chat-requestBubbleBackground);
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
|
|
1317
|
+
.interactive-session .chat-editor-container .monaco-editor .cursors-layer {
|
|
1318
|
+
padding-left: 4px;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
.interactive-session .chat-input-toolbars {
|
|
1322
|
+
display: flex;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.interactive-session .chat-input-toolbars :first-child {
|
|
1326
|
+
margin-right: auto;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
.interactive-session .chat-input-toolbars .tool-warning-indicator {
|
|
1330
|
+
position: absolute;
|
|
1331
|
+
bottom: 0;
|
|
1332
|
+
right: 0;
|
|
1333
|
+
font-size: 12px !important;
|
|
1334
|
+
color: var(--vscode-problemsWarningIcon-foreground);
|
|
1335
|
+
background: var(--vscode-input-background);
|
|
1336
|
+
width: fit-content;
|
|
1337
|
+
height: fit-content;
|
|
1338
|
+
border-radius: 100%;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.interactive-session .chat-input-toolbars > .chat-input-toolbar {
|
|
1342
|
+
overflow: hidden;
|
|
1343
|
+
min-width: 0px;
|
|
1344
|
+
|
|
1345
|
+
.chat-modelPicker-item {
|
|
1346
|
+
min-width: 0px;
|
|
1347
|
+
|
|
1348
|
+
.action-label {
|
|
1349
|
+
min-width: 0px;
|
|
1350
|
+
|
|
1351
|
+
.chat-model-label {
|
|
1352
|
+
overflow: hidden;
|
|
1353
|
+
text-overflow: ellipsis;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.codicon-warning {
|
|
1357
|
+
color: var(--vscode-problemsWarningIcon-foreground);
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
span + .chat-model-label {
|
|
1361
|
+
margin-left: 2px;
|
|
1362
|
+
}
|
|
1363
|
+
}
|
|
1364
|
+
|
|
1365
|
+
.codicon {
|
|
1366
|
+
flex-shrink: 0;
|
|
1367
|
+
}
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
|
+
.interactive-session .chat-input-toolbars.scroll-top-decoration {
|
|
1372
|
+
box-shadow: var(--vscode-scrollbar-shadow) 0 6px 6px -6px inset
|
|
1373
|
+
}
|
|
1374
|
+
|
|
1375
|
+
.interactive-session .chat-input-toolbar .chat-modelPicker-item .action-label,
|
|
1376
|
+
.interactive-session .chat-input-toolbar .chat-sessionPicker-item .action-label {
|
|
1377
|
+
height: 16px;
|
|
1378
|
+
padding: 3px 0px 3px 6px;
|
|
1379
|
+
display: flex;
|
|
1380
|
+
align-items: center;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
|
|
1384
|
+
.interactive-session .chat-input-toolbar .chat-modelPicker-item .action-label .codicon-chevron-down,
|
|
1385
|
+
.interactive-session .chat-input-toolbar .chat-sessionPicker-item .action-label .codicon-chevron-down {
|
|
1386
|
+
font-size: 12px;
|
|
1387
|
+
margin-left: 2px;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
.interactive-session .chat-input-toolbars .monaco-action-bar .actions-container {
|
|
1391
|
+
display: flex;
|
|
1392
|
+
gap: 4px;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
.interactive-session .chat-input-toolbars .chat-sessionPicker-container {
|
|
1396
|
+
display: flex;
|
|
1397
|
+
max-width: 100%;
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
.interactive-session .chat-input-toolbars .codicon-debug-stop {
|
|
1401
|
+
color: var(--vscode-icon-foreground) !important;
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
.interactive-response .interactive-result-code-block .interactive-result-editor .monaco-editor,
|
|
1405
|
+
.interactive-response .interactive-result-code-block .interactive-result-editor .monaco-editor .margin,
|
|
1406
|
+
.interactive-response .interactive-result-code-block .interactive-result-editor .monaco-editor .monaco-editor-background {
|
|
1407
|
+
background-color: var(--vscode-interactive-result-editor-background-color) !important;
|
|
1408
|
+
}
|
|
1409
|
+
|
|
1410
|
+
.interactive-item-compact .interactive-result-code-block {
|
|
1411
|
+
margin: 0 0 8px 0;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
.interactive-item-container .interactive-result-code-block .monaco-toolbar .monaco-action-bar .actions-container {
|
|
1415
|
+
padding-inline-start: unset;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
@keyframes kf-chat-editing-atomic-edit {
|
|
1420
|
+
0% {
|
|
1421
|
+
opacity: 0.8;
|
|
1422
|
+
}
|
|
1423
|
+
|
|
1424
|
+
100% {
|
|
1425
|
+
opacity: 0;
|
|
1426
|
+
}
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
.monaco-editor .chat-editing-atomic-edit {
|
|
1430
|
+
z-index: 1;
|
|
1431
|
+
opacity: 0.8;
|
|
1432
|
+
background-color: var(--vscode-editor-background);
|
|
1433
|
+
animation: 350ms kf-chat-editing-atomic-edit ease-out;
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
.monaco-editor .chat-editing-pending-edit {
|
|
1437
|
+
z-index: 1;
|
|
1438
|
+
opacity: 0.6;
|
|
1439
|
+
background-color: var(--vscode-editor-background);
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
.monaco-editor .chat-editing-last-edit {
|
|
1443
|
+
background-color: var(--vscode-editor-rangeHighlightBackground);
|
|
1444
|
+
box-sizing: border-box;
|
|
1445
|
+
border: 1px solid var(--vscode-editor-rangeHighlightBorder);
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
@property --chat-editing-last-edit-shift {
|
|
1449
|
+
syntax: '<percentage>';
|
|
1450
|
+
initial-value: 100%;
|
|
1451
|
+
inherits: false;
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
@keyframes kf-chat-editing-last-edit-shift {
|
|
1455
|
+
0% {
|
|
1456
|
+
--chat-editing-last-edit-shift: 100%;
|
|
1457
|
+
}
|
|
1458
|
+
|
|
1459
|
+
50% {
|
|
1460
|
+
--chat-editing-last-edit-shift: 7%;
|
|
1461
|
+
}
|
|
1462
|
+
|
|
1463
|
+
100% {
|
|
1464
|
+
--chat-editing-last-edit-shift: 100%;
|
|
1465
|
+
}
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
.monaco-editor .chat-editing-last-edit-line {
|
|
1469
|
+
--chat-editing-last-edit-shift: 100%;
|
|
1470
|
+
background: linear-gradient(45deg, var(--vscode-editor-rangeHighlightBackground), var(--chat-editing-last-edit-shift), transparent);
|
|
1471
|
+
animation: 2.3s kf-chat-editing-last-edit-shift ease-in-out infinite;
|
|
1472
|
+
animation-delay: 330ms;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
|
|
1476
|
+
.chat-notification-widget .chat-info-codicon,
|
|
1477
|
+
.chat-notification-widget .chat-error-codicon,
|
|
1478
|
+
.chat-notification-widget .chat-warning-codicon {
|
|
1479
|
+
display: flex;
|
|
1480
|
+
align-items: start;
|
|
1481
|
+
gap: 8px;
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.interactive-item-container .value .chat-notification-widget .rendered-markdown p {
|
|
1485
|
+
margin: 0;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
.interactive-response .interactive-response-error-details {
|
|
1489
|
+
display: flex;
|
|
1490
|
+
align-items: start;
|
|
1491
|
+
gap: 6px;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1494
|
+
.interactive-response .interactive-response-error-details .rendered-markdown :last-child {
|
|
1495
|
+
margin-bottom: 0px;
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
.interactive-response .interactive-response-error-details .codicon {
|
|
1499
|
+
margin-top: 1px;
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
.chat-used-context-list .codicon-warning {
|
|
1503
|
+
color: var(--vscode-notificationsWarningIcon-foreground);
|
|
1504
|
+
/* Have to override default styles which apply to all lists */
|
|
1505
|
+
}
|
|
1506
|
+
|
|
1507
|
+
.chat-used-context-list .monaco-icon-label-container {
|
|
1508
|
+
color: var(--vscode-interactive-session-foreground);
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
.chat-attached-context .chat-attached-context-attachment .monaco-icon-name-container.warning,
|
|
1512
|
+
.chat-attached-context .chat-attached-context-attachment .monaco-icon-suffix-container.warning,
|
|
1513
|
+
.chat-used-context-list .monaco-icon-name-container.warning,
|
|
1514
|
+
.chat-used-context-list .monaco-icon-suffix-container.warning {
|
|
1515
|
+
color: var(--vscode-notificationsWarningIcon-foreground);
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.chat-attached-context .chat-attached-context-attachment.show-file-icons.warning,
|
|
1519
|
+
.chat-attached-context .chat-attached-context-attachment.show-file-icons.partial-warning {
|
|
1520
|
+
border-color: var(--vscode-notificationsWarningIcon-foreground);
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
/**
|
|
1524
|
+
* Styles for the `reusable prompts` attachment widget.
|
|
1525
|
+
*/
|
|
1526
|
+
.chat-attached-context-attachment .prompt-type {
|
|
1527
|
+
opacity: 0.7;
|
|
1528
|
+
font-size: .9em;
|
|
1529
|
+
margin-left: 0.5em;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
.chat-attached-context-attachment.warning {
|
|
1533
|
+
color: var(--vscode-notificationsWarningIcon-foreground);
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
.chat-attached-context-attachment.error {
|
|
1537
|
+
color: var(--vscode-notificationsErrorIcon-foreground);
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
.chat-attached-context-attachment .monaco-icon-label > .monaco-icon-label-container > .monaco-icon-suffix-container > .label-suffix {
|
|
1541
|
+
color: var(--vscode-peekViewTitleDescription-foreground);
|
|
1542
|
+
opacity: 1;
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.chat-notification-widget .chat-warning-codicon .codicon-warning,
|
|
1546
|
+
.chat-quota-error-widget .codicon-warning {
|
|
1547
|
+
color: var(--vscode-notificationsWarningIcon-foreground) !important;
|
|
1548
|
+
/* Have to override default styles which apply to all lists */
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
.chat-rate-limited-widget .codicon-info {
|
|
1552
|
+
color: var(--vscode-notificationsInfoIcon-foreground) !important;
|
|
1553
|
+
/* Have to override default styles which apply to all lists */
|
|
1554
|
+
}
|
|
1555
|
+
|
|
1556
|
+
.chat-notification-widget .chat-error-codicon .codicon-error,
|
|
1557
|
+
.interactive-response .interactive-response-error-details .codicon-error {
|
|
1558
|
+
color: var(--vscode-errorForeground) !important;
|
|
1559
|
+
/* Have to override default styles which apply to all lists */
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
.chat-notification-widget .chat-info-codicon .codicon-info,
|
|
1563
|
+
.interactive-response .interactive-response-error-details .codicon-info {
|
|
1564
|
+
color: var(--vscode-notificationsInfoIcon-foreground) !important;
|
|
1565
|
+
/* Have to override default styles which apply to all lists */
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
.interactive-session .interactive-input-part {
|
|
1569
|
+
margin: 0px 16px;
|
|
1570
|
+
padding: 4px 0 12px 0px;
|
|
1571
|
+
display: flex;
|
|
1572
|
+
flex-direction: column;
|
|
1573
|
+
gap: 4px;
|
|
1574
|
+
position: relative;
|
|
1575
|
+
}
|
|
1576
|
+
|
|
1577
|
+
.interactive-session .interactive-input-part.compact {
|
|
1578
|
+
margin: 0;
|
|
1579
|
+
padding: 8px 0 0 0
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1582
|
+
.action-item.chat-attachment-button .action-label,
|
|
1583
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment {
|
|
1584
|
+
display: flex;
|
|
1585
|
+
gap: 2px;
|
|
1586
|
+
overflow: hidden;
|
|
1587
|
+
font-size: 11px;
|
|
1588
|
+
padding: 0 4px;
|
|
1589
|
+
border: 1px solid var(--vscode-chat-requestBorder, var(--vscode-input-background, transparent));
|
|
1590
|
+
border-radius: 4px;
|
|
1591
|
+
height: 18px;
|
|
1592
|
+
max-width: 100%;
|
|
1593
|
+
width: fit-content;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.interactive-session .interactive-list .chat-attached-context .chat-attached-context-attachment {
|
|
1597
|
+
font-family: var(--vscode-chat-font-family, inherit);
|
|
1598
|
+
font-size: var(--vscode-chat-font-size-body-xs);
|
|
1599
|
+
}
|
|
1600
|
+
|
|
1601
|
+
.action-item.chat-attachment-button > .action-label > .codicon {
|
|
1602
|
+
font-size: 14px;
|
|
1603
|
+
height: auto;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1606
|
+
.interactive-session .action-item.chat-attachment-button .action-label:not(.has-label) {
|
|
1607
|
+
display: flex;
|
|
1608
|
+
align-items: center;
|
|
1609
|
+
justify-content: center;
|
|
1610
|
+
padding: 2px 4px 2px 4px;
|
|
1611
|
+
height: fit-content;
|
|
1612
|
+
gap: 0;
|
|
1613
|
+
border: 1px solid var(--vscode-chat-requestBorder, var(--vscode-input-background, transparent));
|
|
1614
|
+
border-radius: 4px;
|
|
1615
|
+
box-sizing: border-box;
|
|
1616
|
+
|
|
1617
|
+
.codicon {
|
|
1618
|
+
width: 14px;
|
|
1619
|
+
}
|
|
1620
|
+
}
|
|
1621
|
+
|
|
1622
|
+
.action-item.chat-attachment-button .codicon {
|
|
1623
|
+
font-size: 14px;
|
|
1624
|
+
}
|
|
1625
|
+
|
|
1626
|
+
.action-item.chat-mcp {
|
|
1627
|
+
|
|
1628
|
+
.chat-mcp-state-indicator {
|
|
1629
|
+
position: absolute;
|
|
1630
|
+
bottom: 0;
|
|
1631
|
+
right: 0;
|
|
1632
|
+
font-size: 12px !important;
|
|
1633
|
+
background: var(--vscode-input-background);
|
|
1634
|
+
width: fit-content;
|
|
1635
|
+
height: fit-content;
|
|
1636
|
+
border-radius: 100%;
|
|
1637
|
+
|
|
1638
|
+
&.chat-mcp-state-new {
|
|
1639
|
+
color: var(--vscode-button-foreground);
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
&.chat-mcp-state-error {
|
|
1643
|
+
color: var(--vscode-problemsErrorIcon-foreground);
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
&.chat-mcp-state-refreshing {
|
|
1647
|
+
color: var(--vscode-button-foreground);
|
|
1648
|
+
}
|
|
1649
|
+
}
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.action-item.chat-attached-context-attachment.chat-add-files .action-label.codicon::before {
|
|
1653
|
+
font: normal normal normal 16px/1 codicon;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-button {
|
|
1657
|
+
display: flex;
|
|
1658
|
+
align-items: center;
|
|
1659
|
+
margin-top: -2px;
|
|
1660
|
+
margin-right: -4px;
|
|
1661
|
+
padding-right: 4px;
|
|
1662
|
+
padding-left: 2px;
|
|
1663
|
+
height: calc(100% + 4px);
|
|
1664
|
+
outline-offset: -4px;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-button.codicon.codicon-plus {
|
|
1668
|
+
padding: 0 5px 0 3px;
|
|
1669
|
+
font-size: 12px;
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
.chat-related-files .monaco-button.codicon.codicon-add:hover,
|
|
1673
|
+
.action-item.chat-attached-context-attachment.chat-add-files:hover,
|
|
1674
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-button:hover {
|
|
1675
|
+
cursor: pointer;
|
|
1676
|
+
background: var(--vscode-toolbar-hoverBackground);
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1679
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment.implicit.disabled .monaco-button:hover {
|
|
1680
|
+
cursor: pointer;
|
|
1681
|
+
background: transparent;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-icon-label-container {
|
|
1685
|
+
display: flex;
|
|
1686
|
+
|
|
1687
|
+
.monaco-icon-suffix-container {
|
|
1688
|
+
overflow: hidden;
|
|
1689
|
+
text-overflow: ellipsis;
|
|
1690
|
+
}
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1693
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-icon-label-container .monaco-highlighted-label {
|
|
1694
|
+
display: inline-flex;
|
|
1695
|
+
align-items: center;
|
|
1696
|
+
overflow: hidden;
|
|
1697
|
+
white-space: nowrap;
|
|
1698
|
+
text-overflow: ellipsis;
|
|
1699
|
+
}
|
|
1700
|
+
|
|
1701
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-icon-label .monaco-button.codicon.codicon-close,
|
|
1702
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-button.codicon.codicon-close {
|
|
1703
|
+
color: var(--vscode-descriptionForeground);
|
|
1704
|
+
cursor: pointer;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-icon-label .codicon {
|
|
1708
|
+
font-size: 14px;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-icon-label .monaco-icon-label-iconpath.codicon {
|
|
1712
|
+
padding-top: 2px;
|
|
1713
|
+
}
|
|
1714
|
+
|
|
1715
|
+
.interactive-session .chat-input-container .chat-attached-context {
|
|
1716
|
+
display: contents;
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.interactive-session .chat-attached-context {
|
|
1720
|
+
display: flex;
|
|
1721
|
+
flex-wrap: wrap;
|
|
1722
|
+
gap: 4px;
|
|
1723
|
+
}
|
|
1724
|
+
|
|
1725
|
+
.interactive-session .chat-attachment-toolbar .actions-container {
|
|
1726
|
+
gap: 4px;
|
|
1727
|
+
flex-wrap: wrap;
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
.interactive-session .interactive-input-part.compact .chat-attached-context {
|
|
1731
|
+
padding-bottom: 0px;
|
|
1732
|
+
display: flex;
|
|
1733
|
+
gap: 4px;
|
|
1734
|
+
flex-wrap: wrap;
|
|
1735
|
+
}
|
|
1736
|
+
|
|
1737
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment.implicit {
|
|
1738
|
+
display: flex;
|
|
1739
|
+
gap: 4px;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment.implicit .chat-implicit-hint {
|
|
1743
|
+
opacity: 0.7;
|
|
1744
|
+
font-size: .9em;
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment.implicit.disabled .chat-implicit-hint {
|
|
1748
|
+
font-style: italic;
|
|
1749
|
+
}
|
|
1750
|
+
|
|
1751
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment.implicit.disabled {
|
|
1752
|
+
border-style: dashed;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment.implicit.disabled:focus {
|
|
1756
|
+
outline: none;
|
|
1757
|
+
border-color: var(--vscode-focusBorder);
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1760
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment.implicit.disabled .monaco-icon-label .label-name {
|
|
1761
|
+
text-decoration: line-through;
|
|
1762
|
+
font-style: italic;
|
|
1763
|
+
opacity: 0.8;
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-icon-label {
|
|
1767
|
+
gap: 4px;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-icon-label::before {
|
|
1771
|
+
height: auto;
|
|
1772
|
+
padding: 0;
|
|
1773
|
+
line-height: 100% !important;
|
|
1774
|
+
align-self: center;
|
|
1775
|
+
|
|
1776
|
+
background-size: contain;
|
|
1777
|
+
background-position: center;
|
|
1778
|
+
background-repeat: no-repeat;
|
|
1779
|
+
}
|
|
1780
|
+
|
|
1781
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment .monaco-icon-label.predefined-file-icon::before {
|
|
1782
|
+
padding: 0 0 0 2px;
|
|
1783
|
+
align-content: center;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
.interactive-session .interactive-item-container.interactive-request .chat-attached-context .chat-attached-context-attachment {
|
|
1787
|
+
padding-right: 6px;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
.interactive-session-followups {
|
|
1791
|
+
display: flex;
|
|
1792
|
+
flex-direction: column;
|
|
1793
|
+
gap: 6px;
|
|
1794
|
+
align-items: start;
|
|
1795
|
+
}
|
|
1796
|
+
|
|
1797
|
+
.interactive-session-followups .monaco-button {
|
|
1798
|
+
text-align: left;
|
|
1799
|
+
width: initial;
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
.interactive-session-followups .monaco-button .codicon {
|
|
1803
|
+
margin-left: 0;
|
|
1804
|
+
margin-top: 1px;
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
.interactive-item-container .interactive-response-followups .monaco-button {
|
|
1808
|
+
padding: 4px 8px;
|
|
1809
|
+
}
|
|
1810
|
+
|
|
1811
|
+
/* .interactive-session .interactive-input-part .interactive-input-followups .interactive-session-followups {
|
|
1812
|
+
margin-bottom: 4px;
|
|
1813
|
+
} */
|
|
1814
|
+
|
|
1815
|
+
.interactive-session .interactive-input-part .interactive-input-followups .interactive-session-followups .monaco-button {
|
|
1816
|
+
display: block;
|
|
1817
|
+
color: var(--vscode-textLink-foreground);
|
|
1818
|
+
font-size: 12px;
|
|
1819
|
+
|
|
1820
|
+
/* clamp to max 3 lines */
|
|
1821
|
+
display: -webkit-box;
|
|
1822
|
+
line-clamp: 3;
|
|
1823
|
+
-webkit-line-clamp: 3;
|
|
1824
|
+
-webkit-box-orient: vertical;
|
|
1825
|
+
overflow: hidden;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
.interactive-session .interactive-input-part .interactive-input-followups .interactive-session-followups code {
|
|
1829
|
+
font-family: var(--monaco-monospace-font);
|
|
1830
|
+
font-size: 11px;
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
.interactive-session .interactive-input-part .interactive-input-followups .interactive-session-followups .monaco-button .codicon-sparkle {
|
|
1834
|
+
float: left;
|
|
1835
|
+
}
|
|
1836
|
+
|
|
1837
|
+
.interactive-session-followups .monaco-button.interactive-followup-reply {
|
|
1838
|
+
padding: 0px;
|
|
1839
|
+
border: none;
|
|
1840
|
+
}
|
|
1841
|
+
|
|
1842
|
+
.interactive-item-container .monaco-toolbar .codicon {
|
|
1843
|
+
/* Very aggressive list styles try to apply focus colors to every codicon in a list row. */
|
|
1844
|
+
color: var(--vscode-icon-foreground) !important;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
/* #region Quick Chat */
|
|
1848
|
+
|
|
1849
|
+
.quick-input-widget .interactive-session {
|
|
1850
|
+
width: 100%;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.quick-input-widget .interactive-session .interactive-input-part {
|
|
1854
|
+
padding: 8px 6px 8px 6px;
|
|
1855
|
+
margin: 0 3px;
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.quick-input-widget .interactive-session .interactive-input-part .chat-input-toolbars .monaco-toolbar,
|
|
1859
|
+
.quick-input-widget .interactive-session .interactive-input-part .chat-input-toolbars .actions-container {
|
|
1860
|
+
height: initial;
|
|
1861
|
+
}
|
|
1862
|
+
|
|
1863
|
+
.quick-input-widget .interactive-session .interactive-input-part .chat-input-toolbars {
|
|
1864
|
+
margin-bottom: 1px;
|
|
1865
|
+
align-items: flex-end;
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.quick-input-widget .interactive-session .chat-input-container {
|
|
1869
|
+
margin: 0;
|
|
1870
|
+
border-radius: 2px;
|
|
1871
|
+
padding: 0 4px 0 6px;
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1874
|
+
.quick-input-widget .interactive-list {
|
|
1875
|
+
border-bottom-right-radius: 6px;
|
|
1876
|
+
border-bottom-left-radius: 6px;
|
|
1877
|
+
}
|
|
1878
|
+
|
|
1879
|
+
.quick-input-widget .interactive-response {
|
|
1880
|
+
min-height: 86px;
|
|
1881
|
+
}
|
|
1882
|
+
|
|
1883
|
+
.quick-input-widget .interactive-session .disclaimer {
|
|
1884
|
+
margin: 8px 12px;
|
|
1885
|
+
color: var(--vscode-descriptionForeground);
|
|
1886
|
+
font-size: 12px;
|
|
1887
|
+
|
|
1888
|
+
a {
|
|
1889
|
+
color: var(--vscode-textLink-foreground);
|
|
1890
|
+
}
|
|
1891
|
+
|
|
1892
|
+
p {
|
|
1893
|
+
margin: 0;
|
|
1894
|
+
}
|
|
1895
|
+
}
|
|
1896
|
+
|
|
1897
|
+
/* #endregion */
|
|
1898
|
+
|
|
1899
|
+
.interactive-response-progress-tree .monaco-list-row:not(.selected) .monaco-tl-row:hover {
|
|
1900
|
+
background-color: var(--vscode-list-hoverBackground);
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.interactive-response-progress-tree {
|
|
1904
|
+
margin: 16px 0px;
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
.interactive-response-progress-tree.focused {
|
|
1908
|
+
border-color: var(--vscode-focusBorder, transparent);
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.interactive-item-container .value .interactive-response-placeholder-codicon .codicon {
|
|
1912
|
+
color: var(--vscode-editorGhostText-foreground);
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
.interactive-item-container .value .interactive-response-placeholder-content {
|
|
1916
|
+
color: var(--vscode-editorGhostText-foreground);
|
|
1917
|
+
font-size: 12px;
|
|
1918
|
+
margin-bottom: 16px;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
.interactive-item-container .value .interactive-response-placeholder-content p {
|
|
1922
|
+
margin: 0;
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
.interactive-response .interactive-response-codicon-details {
|
|
1926
|
+
display: flex;
|
|
1927
|
+
align-items: start;
|
|
1928
|
+
gap: 6px;
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1931
|
+
.chat-used-context-list .monaco-list {
|
|
1932
|
+
border: none;
|
|
1933
|
+
border-radius: 4px;
|
|
1934
|
+
width: auto;
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.interactive-item-container .chat-resource-widget {
|
|
1938
|
+
background-color: var(--vscode-chat-slashCommandBackground);
|
|
1939
|
+
color: var(--vscode-chat-slashCommandForeground);
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
|
|
1943
|
+
.interactive-item-container .chat-resource-widget,
|
|
1944
|
+
.interactive-item-container .chat-agent-widget .monaco-button {
|
|
1945
|
+
border-radius: 4px;
|
|
1946
|
+
padding: 1px 3px;
|
|
1947
|
+
}
|
|
1948
|
+
|
|
1949
|
+
.interactive-item-container .chat-agent-command {
|
|
1950
|
+
background-color: var(--vscode-chat-slashCommandBackground);
|
|
1951
|
+
color: var(--vscode-chat-slashCommandForeground);
|
|
1952
|
+
display: inline-flex;
|
|
1953
|
+
align-items: center;
|
|
1954
|
+
margin-right: 0.5ch;
|
|
1955
|
+
border-radius: 4px;
|
|
1956
|
+
padding: 0 0 0 3px;
|
|
1957
|
+
}
|
|
1958
|
+
|
|
1959
|
+
.interactive-item-container .chat-agent-command > .monaco-button {
|
|
1960
|
+
display: flex;
|
|
1961
|
+
align-self: stretch;
|
|
1962
|
+
align-items: center;
|
|
1963
|
+
cursor: pointer;
|
|
1964
|
+
padding: 0 2px;
|
|
1965
|
+
margin-left: 2px;
|
|
1966
|
+
border-top-right-radius: 4px;
|
|
1967
|
+
border-bottom-right-radius: 4px;
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.interactive-item-container .chat-agent-command > .monaco-button:hover {
|
|
1971
|
+
background: var(--vscode-toolbar-hoverBackground);
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
.interactive-item-container .chat-agent-widget .monaco-text-button {
|
|
1975
|
+
display: inline;
|
|
1976
|
+
border: none;
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
.interactive-session .checkpoint-file-changes-summary {
|
|
1980
|
+
display: flex;
|
|
1981
|
+
flex-direction: column;
|
|
1982
|
+
flex-wrap: wrap;
|
|
1983
|
+
align-items: center;
|
|
1984
|
+
border-radius: 4px;
|
|
1985
|
+
border: 1px solid var(--vscode-chat-requestBorder);
|
|
1986
|
+
|
|
1987
|
+
.chat-view-changes-icon {
|
|
1988
|
+
padding: 3px;
|
|
1989
|
+
float: right;
|
|
1990
|
+
cursor: pointer;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.chat-view-changes-icon:hover {
|
|
1994
|
+
border-radius: 5px;
|
|
1995
|
+
background-color: var(--vscode-toolbar-hoverBackground);
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
.insertions-and-deletions {
|
|
1999
|
+
display: flex;
|
|
2000
|
+
margin-right: 5px;
|
|
2001
|
+
font-size: 12px;
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
.checkpoint-file-changes-summary-header {
|
|
2005
|
+
padding: 3px 3px 3px 3px;
|
|
2006
|
+
width: 100%;
|
|
2007
|
+
display: flex;
|
|
2008
|
+
box-sizing: border-box;
|
|
2009
|
+
justify-content: space-between;
|
|
2010
|
+
}
|
|
2011
|
+
|
|
2012
|
+
.checkpoint-file-changes-summary-header .monaco-button-mdlabel {
|
|
2013
|
+
display: flex;
|
|
2014
|
+
width: 100%;
|
|
2015
|
+
text-align: left;
|
|
2016
|
+
align-items: center;
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
.checkpoint-file-changes-summary-header .chat-file-changes-label {
|
|
2020
|
+
width: 100%;
|
|
2021
|
+
float: left;
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
.checkpoint-file-changes-summary-header .chat-file-changes-label .monaco-button {
|
|
2025
|
+
width: 100%;
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2028
|
+
.checkpoint-file-changes-summary-header .chat-file-changes-label .monaco-button .codicon {
|
|
2029
|
+
font-size: 16px;
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
.chat-summary-list {
|
|
2033
|
+
width: 100%;
|
|
2034
|
+
max-width: 100%;
|
|
2035
|
+
padding: 0px;
|
|
2036
|
+
margin-bottom: 0px;
|
|
2037
|
+
border-bottom: 0px;
|
|
2038
|
+
border-left: 0px;
|
|
2039
|
+
border-right: 0px;
|
|
2040
|
+
box-sizing: border-box;
|
|
2041
|
+
border-radius: 0px;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
.chat-summary-list .monaco-icon-label {
|
|
2045
|
+
display: flex;
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
.chat-summary-list .monaco-scrollable-element {
|
|
2049
|
+
border-radius: 4px;
|
|
2050
|
+
}
|
|
2051
|
+
|
|
2052
|
+
.insertions {
|
|
2053
|
+
color: var(--vscode-chat-linesAddedForeground);
|
|
2054
|
+
font-weight: bold;
|
|
2055
|
+
padding-left: 5px;
|
|
2056
|
+
padding-right: 5px;
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
.deletions {
|
|
2060
|
+
color: var(--vscode-chat-linesRemovedForeground);
|
|
2061
|
+
font-weight: bold;
|
|
2062
|
+
}
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
.interactive-session .checkpoint-file-changes-summary.chat-file-changes-collapsed .chat-summary-list,
|
|
2066
|
+
.interactive-session .chat-used-context.chat-used-context-collapsed .chat-used-context-list {
|
|
2067
|
+
display: none;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.interactive-session .chat-used-context {
|
|
2071
|
+
display: flex;
|
|
2072
|
+
flex-direction: column;
|
|
2073
|
+
gap: 2px;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
.interactive-response-progress-tree,
|
|
2077
|
+
.chat-notification-widget,
|
|
2078
|
+
.chat-summary-list,
|
|
2079
|
+
.chat-used-context-list,
|
|
2080
|
+
.chat-quota-error-widget,
|
|
2081
|
+
.chat-rate-limited-widget {
|
|
2082
|
+
border: 1px solid var(--vscode-chat-requestBorder);
|
|
2083
|
+
border-radius: 4px;
|
|
2084
|
+
margin-bottom: 8px;
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
.interactive-response-progress-tree,
|
|
2088
|
+
.interactive-session .chat-summary-list,
|
|
2089
|
+
.interactive-session .chat-used-context-list {
|
|
2090
|
+
padding: 4px 3px;
|
|
2091
|
+
|
|
2092
|
+
.monaco-icon-label {
|
|
2093
|
+
padding: 0px 3px;
|
|
2094
|
+
}
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
.interactive-session .chat-editing-session-list {
|
|
2098
|
+
|
|
2099
|
+
.monaco-icon-label {
|
|
2100
|
+
padding: 0px 3px;
|
|
2101
|
+
}
|
|
2102
|
+
|
|
2103
|
+
.monaco-icon-label.excluded {
|
|
2104
|
+
color: var(--vscode-notificationsWarningIcon-foreground)
|
|
2105
|
+
}
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
.interactive-session .chat-editing-session-list.collapsed {
|
|
2109
|
+
display: none;
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
.interactive-session .chat-list-divider {
|
|
2113
|
+
display: flex;
|
|
2114
|
+
align-items: center;
|
|
2115
|
+
padding: 4px 3px 2px 3px;
|
|
2116
|
+
font-size: 11px;
|
|
2117
|
+
color: var(--vscode-descriptionForeground);
|
|
2118
|
+
gap: 8px;
|
|
2119
|
+
pointer-events: none;
|
|
2120
|
+
user-select: none;
|
|
2121
|
+
}
|
|
2122
|
+
|
|
2123
|
+
.interactive-session .monaco-list .monaco-list-row:has(.chat-list-divider) {
|
|
2124
|
+
background-color: transparent !important;
|
|
2125
|
+
cursor: default;
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2128
|
+
.interactive-session .chat-list-divider .chat-list-divider-label {
|
|
2129
|
+
text-transform: uppercase;
|
|
2130
|
+
letter-spacing: 0.04em;
|
|
2131
|
+
flex-shrink: 0;
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2134
|
+
.interactive-session .chat-list-divider .chat-list-divider-line {
|
|
2135
|
+
flex: 1;
|
|
2136
|
+
height: 1px;
|
|
2137
|
+
background-color: var(--vscode-editorWidget-border, var(--vscode-contrastBorder));
|
|
2138
|
+
opacity: 0.5;
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2141
|
+
.interactive-session .chat-list-divider .chat-list-divider-toolbar {
|
|
2142
|
+
display: flex;
|
|
2143
|
+
align-items: center;
|
|
2144
|
+
pointer-events: auto;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
.interactive-session .chat-summary-list .monaco-list .monaco-list-row {
|
|
2148
|
+
border-radius: 4px;
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
.interactive-session .chat-summary-list .monaco-list .monaco-list-row:hover {
|
|
2152
|
+
background-color: var(--vscode-list-hoverBackground) !important;
|
|
2153
|
+
}
|
|
2154
|
+
|
|
2155
|
+
.interactive-session .chat-used-context-list .monaco-list .monaco-list-row {
|
|
2156
|
+
border-radius: 2px;
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
.interactive-session .chat-file-changes-label {
|
|
2160
|
+
color: var(--vscode-interactive-session-foreground);
|
|
2161
|
+
user-select: none;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
.interactive-session .chat-used-context-label {
|
|
2165
|
+
font-size: var(--vscode-chat-font-size-body-s);
|
|
2166
|
+
font-family: var(--vscode-chat-font-family, inherit);
|
|
2167
|
+
color: var(--vscode-descriptionForeground);
|
|
2168
|
+
user-select: none;
|
|
2169
|
+
|
|
2170
|
+
code {
|
|
2171
|
+
font-size: var(--vscode-chat-font-size-body-xs);
|
|
2172
|
+
}
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
.interactive-session .chat-file-changes-label:hover,
|
|
2176
|
+
.interactive-session .chat-used-context-label:hover {
|
|
2177
|
+
opacity: unset;
|
|
2178
|
+
}
|
|
2179
|
+
|
|
2180
|
+
.interactive-session .chat-file-changes-label .monaco-button,
|
|
2181
|
+
.interactive-session .chat-used-context-label .monaco-button {
|
|
2182
|
+
width: fit-content;
|
|
2183
|
+
border: none;
|
|
2184
|
+
border-radius: 4px;
|
|
2185
|
+
gap: 4px;
|
|
2186
|
+
text-align: initial;
|
|
2187
|
+
justify-content: initial;
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
.interactive-session .chat-used-context-label .monaco-button {
|
|
2191
|
+
/* unset Button styles */
|
|
2192
|
+
display: inline-flex;
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
.interactive-session .chat-file-changes-label .monaco-button {
|
|
2196
|
+
padding: 2px 2px 2px 2px;
|
|
2197
|
+
}
|
|
2198
|
+
|
|
2199
|
+
.interactive-session .chat-used-context-label .monaco-button {
|
|
2200
|
+
padding: 2px 6px 2px 2px;
|
|
2201
|
+
}
|
|
2202
|
+
|
|
2203
|
+
.interactive-session .chat-file-changes-label .monaco-button:hover {
|
|
2204
|
+
background-color: var(--vscode-toolbar-hoverBackground);
|
|
2205
|
+
}
|
|
2206
|
+
|
|
2207
|
+
.interactive-session .chat-used-context-label .monaco-button:hover {
|
|
2208
|
+
background-color: var(--vscode-list-hoverBackground);
|
|
2209
|
+
color: var(--vscode-foreground);
|
|
2210
|
+
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
.interactive-session .chat-file-changes-label .monaco-text-button:focus,
|
|
2214
|
+
.interactive-session .chat-used-context-label .monaco-text-button:focus {
|
|
2215
|
+
outline: none;
|
|
2216
|
+
}
|
|
2217
|
+
|
|
2218
|
+
.interactive-session .chat-file-changes-label .monaco-text-button:focus-visible,
|
|
2219
|
+
.interactive-session .chat-used-context-label .monaco-text-button:focus-visible {
|
|
2220
|
+
outline: 1px solid var(--vscode-focusBorder);
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
.interactive-session .chat-file-changes-label .monaco-button .codicon,
|
|
2224
|
+
.interactive-session .chat-used-context-label .monaco-button .codicon {
|
|
2225
|
+
font-size: var(--vscode-chat-font-size-body-s);
|
|
2226
|
+
color: var(--vscode-icon-foreground) !important;
|
|
2227
|
+
}
|
|
2228
|
+
|
|
2229
|
+
.interactive-item-container .progress-container {
|
|
2230
|
+
display: flex;
|
|
2231
|
+
align-items: center;
|
|
2232
|
+
gap: 7px;
|
|
2233
|
+
margin: 0 0 6px 4px;
|
|
2234
|
+
|
|
2235
|
+
/* Tool calls transition from a progress to a collapsible list part, which needs to have this top padding.
|
|
2236
|
+
The working progress also can be replaced by a tool progress part. So align this padding so the text doesn't appear to shift. */
|
|
2237
|
+
padding-top: 2px;
|
|
2238
|
+
|
|
2239
|
+
> .codicon[class*='codicon-'] {
|
|
2240
|
+
font-size: var(--vscode-chat-font-size-body-s);
|
|
2241
|
+
|
|
2242
|
+
&::before {
|
|
2243
|
+
font-size: var(--vscode-chat-font-size-body-s);
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
|
|
2247
|
+
.codicon {
|
|
2248
|
+
/* Very aggressive list styles try to apply focus colors to every codicon in a list row. */
|
|
2249
|
+
color: var(--vscode-icon-foreground) !important;
|
|
2250
|
+
|
|
2251
|
+
&.codicon-error {
|
|
2252
|
+
color: var(--vscode-editorError-foreground) !important;
|
|
2253
|
+
}
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
.rendered-markdown.progress-step {
|
|
2257
|
+
white-space: normal;
|
|
2258
|
+
|
|
2259
|
+
& > p {
|
|
2260
|
+
color: var(--vscode-descriptionForeground);
|
|
2261
|
+
font-size: var(--vscode-chat-font-size-body-s);
|
|
2262
|
+
margin: 0;
|
|
2263
|
+
|
|
2264
|
+
code {
|
|
2265
|
+
font-size: var(--vscode-chat-font-size-body-xs);
|
|
2266
|
+
}
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
.chat-inline-anchor-widget {
|
|
2270
|
+
display: inline;
|
|
2271
|
+
}
|
|
2272
|
+
}
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2275
|
+
.interactive-item-container .chat-command-button {
|
|
2276
|
+
display: flex;
|
|
2277
|
+
margin-bottom: 16px;
|
|
2278
|
+
}
|
|
2279
|
+
|
|
2280
|
+
.interactive-item-container .chat-notification-widget {
|
|
2281
|
+
display: flex;
|
|
2282
|
+
align-items: center;
|
|
2283
|
+
flex-direction: row;
|
|
2284
|
+
padding: 8px 12px;
|
|
2285
|
+
gap: 6px;
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
.interactive-item-container .chat-confirmation-widget .interactive-result-code-block,
|
|
2289
|
+
.interactive-item-container .chat-confirmation-widget .chat-attached-context {
|
|
2290
|
+
margin-bottom: 8px;
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
.interactive-item-container .chat-command-button .monaco-button .codicon {
|
|
2294
|
+
margin-left: 0;
|
|
2295
|
+
margin-top: 1px;
|
|
2296
|
+
}
|
|
2297
|
+
|
|
2298
|
+
.chat-code-citation-label {
|
|
2299
|
+
opacity: 0.7;
|
|
2300
|
+
white-space: pre-wrap;
|
|
2301
|
+
}
|
|
2302
|
+
|
|
2303
|
+
.chat-code-citation-button-container {
|
|
2304
|
+
display: inline;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
.chat-code-citation-button-container .monaco-button {
|
|
2308
|
+
display: inline;
|
|
2309
|
+
border: none;
|
|
2310
|
+
padding: 0;
|
|
2311
|
+
color: var(--vscode-textLink-foreground);
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
.chat-attached-context-hover {
|
|
2315
|
+
padding: 0 6px;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
.chat-attached-context-hover .chat-attached-context-image-container {
|
|
2319
|
+
padding: 6px 0 4px;
|
|
2320
|
+
height: auto;
|
|
2321
|
+
width: 100%;
|
|
2322
|
+
display: block;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
.chat-attached-context-hover .chat-attached-context-image-container .chat-attached-context-image {
|
|
2326
|
+
width: 100%;
|
|
2327
|
+
height: 100%;
|
|
2328
|
+
object-fit: contain;
|
|
2329
|
+
display: block;
|
|
2330
|
+
max-height: 350px;
|
|
2331
|
+
max-width: 100%;
|
|
2332
|
+
min-width: 200px;
|
|
2333
|
+
min-height: 200px;
|
|
2334
|
+
|
|
2335
|
+
}
|
|
2336
|
+
|
|
2337
|
+
.chat-attached-context-hover .chat-attached-context-url {
|
|
2338
|
+
color: var(--vscode-textLink-foreground);
|
|
2339
|
+
cursor: pointer;
|
|
2340
|
+
margin-top: 4px;
|
|
2341
|
+
padding: 2px 0;
|
|
2342
|
+
width: 100%;
|
|
2343
|
+
overflow: hidden;
|
|
2344
|
+
text-overflow: ellipsis;
|
|
2345
|
+
white-space: nowrap;
|
|
2346
|
+
max-width: 100%;
|
|
2347
|
+
display: block;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
.chat-attached-context-hover .chat-attached-context-url-separator {
|
|
2351
|
+
border-top: 1px solid var(--vscode-chat-requestBorder);
|
|
2352
|
+
left: 0;
|
|
2353
|
+
right: 0;
|
|
2354
|
+
position: absolute;
|
|
2355
|
+
margin-top: 2px;
|
|
2356
|
+
}
|
|
2357
|
+
|
|
2358
|
+
|
|
2359
|
+
.chat-attached-context-attachment .chat-attached-context-pill {
|
|
2360
|
+
font-size: 12px;
|
|
2361
|
+
display: inline-flex;
|
|
2362
|
+
align-items: center;
|
|
2363
|
+
padding: 2px 0 2px 0px;
|
|
2364
|
+
border-radius: 2px;
|
|
2365
|
+
margin-right: 1px;
|
|
2366
|
+
user-select: none;
|
|
2367
|
+
outline: none;
|
|
2368
|
+
border: none;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2371
|
+
.chat-attached-context-attachment .attachment-additional-info {
|
|
2372
|
+
opacity: 0.7;
|
|
2373
|
+
font-size: .9em;
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
.chat-attached-context-attachment .chat-attached-context-pill-image {
|
|
2377
|
+
width: 14px;
|
|
2378
|
+
height: 14px;
|
|
2379
|
+
border-radius: 2px;
|
|
2380
|
+
object-fit: cover;
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
.chat-attached-context-attachment .chat-attached-context-custom-text {
|
|
2384
|
+
vertical-align: middle;
|
|
2385
|
+
user-select: none;
|
|
2386
|
+
outline: none;
|
|
2387
|
+
border: none;
|
|
2388
|
+
white-space: nowrap;
|
|
2389
|
+
overflow: hidden;
|
|
2390
|
+
text-overflow: ellipsis;
|
|
2391
|
+
max-width: 100%;
|
|
2392
|
+
display: inline-block;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
.chat-attached-context-attachment.show-file-icons.warning .chat-attached-context-custom-text {
|
|
2396
|
+
color: var(--vscode-notificationsWarningIcon-foreground);
|
|
2397
|
+
text-decoration: line-through;
|
|
2398
|
+
}
|
|
2399
|
+
|
|
2400
|
+
.chat-attached-context-attachment.show-file-icons.partial-warning .chat-attached-context-custom-text {
|
|
2401
|
+
color: var(--vscode-notificationsWarningIcon-foreground);
|
|
2402
|
+
}
|
|
2403
|
+
|
|
2404
|
+
.interactive-session .chat-scroll-down {
|
|
2405
|
+
display: none;
|
|
2406
|
+
position: absolute;
|
|
2407
|
+
bottom: 7px;
|
|
2408
|
+
right: 12px;
|
|
2409
|
+
border-radius: 100%;
|
|
2410
|
+
width: 27px;
|
|
2411
|
+
height: 27px;
|
|
2412
|
+
|
|
2413
|
+
.codicon {
|
|
2414
|
+
margin: 0px;
|
|
2415
|
+
}
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
.interactive-session.show-scroll-down .chat-scroll-down {
|
|
2419
|
+
display: initial;
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
.chat-quota-error-widget,
|
|
2423
|
+
.chat-rate-limited-widget {
|
|
2424
|
+
padding: 8px 12px;
|
|
2425
|
+
display: flex;
|
|
2426
|
+
gap: 6px;
|
|
2427
|
+
|
|
2428
|
+
.monaco-button {
|
|
2429
|
+
width: fit-content;
|
|
2430
|
+
padding: 2px 11px;
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
.chat-quota-error-button,
|
|
2434
|
+
.chat-rate-limited-button {
|
|
2435
|
+
margin-top: 6px;
|
|
2436
|
+
margin-bottom: 2px;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
.chat-quota-error-secondary-button {
|
|
2440
|
+
margin-top: 6px;
|
|
2441
|
+
padding: 0px;
|
|
2442
|
+
border: none;
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
.chat-quota-error-secondary-button,
|
|
2446
|
+
.chat-quota-wait-warning {
|
|
2447
|
+
font-size: 12px;
|
|
2448
|
+
}
|
|
2449
|
+
|
|
2450
|
+
.chat-quota-wait-warning {
|
|
2451
|
+
margin-top: 2px;
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
.chat-quota-error-message,
|
|
2455
|
+
.chat-rate-limited-message {
|
|
2456
|
+
.rendered-markdown p {
|
|
2457
|
+
margin: 0px;
|
|
2458
|
+
}
|
|
2459
|
+
}
|
|
2460
|
+
}
|
|
2461
|
+
|
|
2462
|
+
.hideSuggestTextIcons .suggest-widget .monaco-list .monaco-list-row .suggest-icon.codicon-symbol-text::before {
|
|
2463
|
+
display: none;
|
|
2464
|
+
}
|
|
2465
|
+
|
|
2466
|
+
.interactive-session:not(.chat-widget > .interactive-session) {
|
|
2467
|
+
|
|
2468
|
+
.interactive-item-container {
|
|
2469
|
+
padding: 5px 16px;
|
|
2470
|
+
}
|
|
2471
|
+
|
|
2472
|
+
.interactive-item-container.interactive-request {
|
|
2473
|
+
align-items: flex-end;
|
|
2474
|
+
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
.interactive-item-container.interactive-request:not(.editing):hover .request-hover {
|
|
2478
|
+
opacity: 1 !important;
|
|
2479
|
+
}
|
|
2480
|
+
|
|
2481
|
+
.interactive-item-container.interactive-request.confirmation-message {
|
|
2482
|
+
align-items: flex-start;
|
|
2483
|
+
|
|
2484
|
+
.checkpoint-container {
|
|
2485
|
+
display: none;
|
|
2486
|
+
}
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
.interactive-item-container.interactive-request .value .rendered-markdown {
|
|
2490
|
+
background-color: var(--vscode-chat-requestBubbleBackground);
|
|
2491
|
+
border-radius: 8px;
|
|
2492
|
+
padding: 8px 12px;
|
|
2493
|
+
max-width: 90%;
|
|
2494
|
+
margin-left: auto;
|
|
2495
|
+
width: fit-content;
|
|
2496
|
+
margin-bottom: 5px;
|
|
2497
|
+
position: relative;
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
.interactive-item-container.interactive-request .value .rendered-markdown {
|
|
2501
|
+
margin-left: auto;
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.interactive-item-container.interactive-request .value .rendered-markdown.clickable:hover {
|
|
2505
|
+
cursor: pointer;
|
|
2506
|
+
background-color: var(--vscode-chat-requestBubbleHoverBackground);
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
.hc-black .interactive-item-container.interactive-request .value .rendered-markdown,
|
|
2510
|
+
.hc-light .interactive-item-container.interactive-request .value .rendered-markdown {
|
|
2511
|
+
border: 1px dotted var(--vscode-focusBorder);
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
.interactive-item-container.interactive-request .value .rendered-markdown > :last-child {
|
|
2515
|
+
margin-bottom: 0px;
|
|
2516
|
+
}
|
|
2517
|
+
|
|
2518
|
+
.interactive-item-container.interactive-request .value > .rendered-markdown p {
|
|
2519
|
+
width: fit-content;
|
|
2520
|
+
}
|
|
2521
|
+
|
|
2522
|
+
.interactive-item-container.interactive-request .chat-attached-context {
|
|
2523
|
+
max-width: 100%;
|
|
2524
|
+
width: fit-content;
|
|
2525
|
+
justify-content: flex-end;
|
|
2526
|
+
margin-left: auto;
|
|
2527
|
+
padding-bottom: 5px;
|
|
2528
|
+
}
|
|
2529
|
+
|
|
2530
|
+
.interactive-request .header.header-disabled,
|
|
2531
|
+
.request-hover.has-no-actions,
|
|
2532
|
+
.request-hover.hidden,
|
|
2533
|
+
.request-hover.checkpoints-enabled.has-no-actions,
|
|
2534
|
+
.checkpoint-container.hidden,
|
|
2535
|
+
.checkpoint-restore-container.hidden {
|
|
2536
|
+
display: none;
|
|
2537
|
+
}
|
|
2538
|
+
|
|
2539
|
+
.interactive-request .header.partially-disabled .avatar-container,
|
|
2540
|
+
.interactive-request .header.partially-disabled .username {
|
|
2541
|
+
display: none;
|
|
2542
|
+
}
|
|
2543
|
+
|
|
2544
|
+
.interactive-request .header.partially-disabled .detail-container {
|
|
2545
|
+
margin-left: 4px;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
.interactive-item-container .header .detail .codicon-check {
|
|
2549
|
+
margin-right: 7px;
|
|
2550
|
+
vertical-align: middle;
|
|
2551
|
+
font-size: 11px;
|
|
2552
|
+
}
|
|
2553
|
+
|
|
2554
|
+
.request-hover {
|
|
2555
|
+
position: absolute;
|
|
2556
|
+
overflow: hidden;
|
|
2557
|
+
z-index: 100;
|
|
2558
|
+
background-color: var(--vscode-interactive-result-editor-background-color, var(--vscode-editor-background));
|
|
2559
|
+
border: 1px solid var(--vscode-chat-requestBorder);
|
|
2560
|
+
top: -13px;
|
|
2561
|
+
right: 20px;
|
|
2562
|
+
border-radius: 3px;
|
|
2563
|
+
width: 28px;
|
|
2564
|
+
height: 26px;
|
|
2565
|
+
}
|
|
2566
|
+
|
|
2567
|
+
.request-hover.expanded:not(.checkpoints-enabled) {
|
|
2568
|
+
width: 50px;
|
|
2569
|
+
}
|
|
2570
|
+
|
|
2571
|
+
.request-hover.checkpoints-enabled {
|
|
2572
|
+
top: 15px;
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
.request-hover.editing {
|
|
2576
|
+
opacity: 1 !important;
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
.request-hover:not(.expanded) .actions-container {
|
|
2580
|
+
width: 22px;
|
|
2581
|
+
height: 22px;
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2584
|
+
.request-hover.expanded .actions-container {
|
|
2585
|
+
padding: 0 3px;
|
|
2586
|
+
}
|
|
2587
|
+
|
|
2588
|
+
.request-hover:not(.expanded) .actions-container {
|
|
2589
|
+
|
|
2590
|
+
.action-label.codicon-discard,
|
|
2591
|
+
.action-label.codicon-x,
|
|
2592
|
+
.action-label.codicon-edit {
|
|
2593
|
+
margin-top: 4px;
|
|
2594
|
+
padding: 3px 3px;
|
|
2595
|
+
}
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2598
|
+
.request-hover:focus-within {
|
|
2599
|
+
opacity: 1 !important;
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
|
|
2603
|
+
.checkpoint-container,
|
|
2604
|
+
.checkpoint-restore-container {
|
|
2605
|
+
display: flex;
|
|
2606
|
+
width: 100%;
|
|
2607
|
+
position: relative;
|
|
2608
|
+
|
|
2609
|
+
.checkpoint-divider {
|
|
2610
|
+
border-top: 1px dashed var(--vscode-chat-checkpointSeparator);
|
|
2611
|
+
margin: 15px 0;
|
|
2612
|
+
width: 100%;
|
|
2613
|
+
height: 0;
|
|
2614
|
+
}
|
|
2615
|
+
|
|
2616
|
+
.codicon-container {
|
|
2617
|
+
color: var(--vscode-descriptionForeground);
|
|
2618
|
+
padding-right: 4px;
|
|
2619
|
+
display: flex;
|
|
2620
|
+
align-items: center;
|
|
2621
|
+
gap: 4px;
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
.codicon-container .codicon {
|
|
2625
|
+
font-size: 14px;
|
|
2626
|
+
color: var(--vscode-chat-checkpointSeparator);
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2629
|
+
.monaco-toolbar {
|
|
2630
|
+
opacity: 0;
|
|
2631
|
+
height: fit-content;
|
|
2632
|
+
width: fit-content;
|
|
2633
|
+
user-select: none;
|
|
2634
|
+
position: absolute;
|
|
2635
|
+
top: 4px;
|
|
2636
|
+
margin-left: 25px;
|
|
2637
|
+
background: var(--vscode-sideBar-background);
|
|
2638
|
+
}
|
|
2639
|
+
|
|
2640
|
+
.monaco-toolbar .action-label {
|
|
2641
|
+
border: 1px solid var(--vscode-chat-requestBorder, var(--vscode-input-background));
|
|
2642
|
+
padding: 1px 5px;
|
|
2643
|
+
background-color: var(--vscode-sideBar-background);
|
|
2644
|
+
}
|
|
2645
|
+
}
|
|
2646
|
+
|
|
2647
|
+
.checkpoint-restore-container {
|
|
2648
|
+
margin-top: 10px;
|
|
2649
|
+
|
|
2650
|
+
.checkpoint-label-text {
|
|
2651
|
+
font-size: 12px;
|
|
2652
|
+
color: var(--vscode-descriptionForeground);
|
|
2653
|
+
background-color: var(--vscode-sideBar-background);
|
|
2654
|
+
padding: 4px;
|
|
2655
|
+
display: flex;
|
|
2656
|
+
align-items: center;
|
|
2657
|
+
gap: 4px;
|
|
2658
|
+
position: absolute;
|
|
2659
|
+
margin-left: 71px;
|
|
2660
|
+
margin-top: 2px;
|
|
2661
|
+
}
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
.checkpoint-container .monaco-toolbar:focus-within,
|
|
2665
|
+
.checkpoint-restore-container .monaco-toolbar,
|
|
2666
|
+
.interactive-item-container.interactive-request:not(.editing):hover .checkpoint-container .monaco-toolbar {
|
|
2667
|
+
opacity: 1;
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2670
|
+
.interactive-item-container.interactive-request.editing .checkpoint-container {
|
|
2671
|
+
display: none;
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2674
|
+
.interactive-list > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row {
|
|
2675
|
+
overflow: visible !important;
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
.interactive-list > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.monaco-list-row.focused.request {
|
|
2679
|
+
outline: none !important;
|
|
2680
|
+
}
|
|
2681
|
+
|
|
2682
|
+
div[data-index="0"] .monaco-tl-contents {
|
|
2683
|
+
.interactive-item-container.interactive-request:not(.editing) {
|
|
2684
|
+
padding-top: 19px;
|
|
2685
|
+
}
|
|
2686
|
+
|
|
2687
|
+
.request-hover {
|
|
2688
|
+
top: 0px;
|
|
2689
|
+
}
|
|
2690
|
+
|
|
2691
|
+
.checkpoint-container {
|
|
2692
|
+
display: none;
|
|
2693
|
+
}
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
.interactive-list > .monaco-list:focus > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row.focused.request {
|
|
2697
|
+
outline: none !important;
|
|
2698
|
+
|
|
2699
|
+
.interactive-item-container .value .rendered-markdown {
|
|
2700
|
+
outline: 1px solid var(--vscode-focusBorder);
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2703
|
+
.request-hover:not(.has-no-actions) {
|
|
2704
|
+
display: block;
|
|
2705
|
+
}
|
|
2706
|
+
}
|
|
2707
|
+
|
|
2708
|
+
.interactive-request.editing .rendered-markdown,
|
|
2709
|
+
.interactive-request.editing .value {
|
|
2710
|
+
display: none;
|
|
2711
|
+
}
|
|
2712
|
+
|
|
2713
|
+
.interactive-request.editing-input .rendered-markdown {
|
|
2714
|
+
outline: 1px solid var(--vscode-focusBorder);
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
.interactive-request.editing {
|
|
2718
|
+
padding: 0px;
|
|
2719
|
+
|
|
2720
|
+
.interactive-input-part .chat-input-container .interactive-input-editor .monaco-editor .native-edit-context {
|
|
2721
|
+
opacity: 0;
|
|
2722
|
+
}
|
|
2723
|
+
}
|
|
2724
|
+
}
|
|
2725
|
+
|
|
2726
|
+
.editor-instance .interactive-session .interactive-item-container.interactive-response .checkpoint-restore-container {
|
|
2727
|
+
|
|
2728
|
+
.checkpoint-label-text,
|
|
2729
|
+
.monaco-toolbar {
|
|
2730
|
+
background-color: var(--vscode-editor-background);
|
|
2731
|
+
}
|
|
2732
|
+
}
|
|
2733
|
+
|
|
2734
|
+
.chat-buttons-container {
|
|
2735
|
+
display: flex;
|
|
2736
|
+
gap: 8px;
|
|
2737
|
+
margin-top: 0px;
|
|
2738
|
+
flex-wrap: wrap;
|
|
2739
|
+
flex-basis: 100%;
|
|
2740
|
+
padding: 0 8px;
|
|
2741
|
+
margin: 8px 0;
|
|
2742
|
+
|
|
2743
|
+
& .monaco-button.monaco-dropdown-button {
|
|
2744
|
+
padding: 0 3px;
|
|
2745
|
+
}
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2748
|
+
.interactive-item-container .chat-command-button .monaco-button,
|
|
2749
|
+
.chat-buttons-container .monaco-button:not(.monaco-dropdown-button) {
|
|
2750
|
+
text-align: left;
|
|
2751
|
+
width: initial;
|
|
2752
|
+
padding: 4px 8px;
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
.interactive-item-container .chat-edit-input-container {
|
|
2756
|
+
width: 100%;
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
.chat-row-disabled-overlay,
|
|
2760
|
+
.interactive-item-container .chat-edit-input-container .chat-editing-session {
|
|
2761
|
+
display: none;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
.chat-row-disabled-overlay.disabled,
|
|
2765
|
+
.chat-input-overlay.disabled {
|
|
2766
|
+
position: absolute;
|
|
2767
|
+
inset: 0;
|
|
2768
|
+
background-color: var(--vscode-sideBar-background);
|
|
2769
|
+
opacity: 0.6;
|
|
2770
|
+
display: flex;
|
|
2771
|
+
z-index: 101;
|
|
2772
|
+
user-select: none;
|
|
2773
|
+
cursor: default;
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2776
|
+
.interactive-session .focused-input-dom {
|
|
2777
|
+
position: absolute;
|
|
2778
|
+
top: -50000px;
|
|
2779
|
+
width: 1px;
|
|
2780
|
+
height: 1px;
|
|
2781
|
+
}
|
|
2782
|
+
|
|
2783
|
+
|
|
2784
|
+
.interactive-session .chat-attached-context .chat-attached-context-attachment.implicit.disabled:hover {
|
|
2785
|
+
cursor: pointer;
|
|
2786
|
+
border-style: solid;
|
|
2787
|
+
background-color: var(--vscode-toolbar-hoverBackground);
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
/* Chat Suggest Next Widget */
|
|
2791
|
+
/* Suggested Actions widget - reuses chat-welcome-view-suggested-prompts styling */
|
|
2792
|
+
|
|
2793
|
+
.interactive-session > .chat-suggest-next-widget {
|
|
2794
|
+
/* Override positioning from welcome view styles (relative instead of absolute) */
|
|
2795
|
+
position: relative;
|
|
2796
|
+
bottom: auto;
|
|
2797
|
+
left: auto;
|
|
2798
|
+
right: auto;
|
|
2799
|
+
margin: 0 0 0 0;
|
|
2800
|
+
/* Keep standard padding with space for title */
|
|
2801
|
+
padding: 32px 16px 8px 16px;
|
|
2802
|
+
/* Left align buttons to match standard welcome view */
|
|
2803
|
+
justify-content: flex-start;
|
|
2804
|
+
/* Ensure flex layout is properly applied */
|
|
2805
|
+
display: flex;
|
|
2806
|
+
flex-wrap: wrap;
|
|
2807
|
+
gap: 8px;
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
.chat-welcome-view-suggested-prompt.chat-suggest-next-has-dropdown {
|
|
2811
|
+
padding-right: 12px;
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
/* Dropdown container for chevron in suggested prompt buttons - provides larger hit area */
|
|
2815
|
+
.chat-welcome-view-suggested-prompt > .chat-suggest-next-dropdown {
|
|
2816
|
+
display: flex;
|
|
2817
|
+
align-items: center;
|
|
2818
|
+
justify-content: center;
|
|
2819
|
+
height: 100%;
|
|
2820
|
+
margin: -1px -8px -1px 0; /* Extend to button edge, accounting for button padding */
|
|
2821
|
+
padding: 0 4px 0 2px;
|
|
2822
|
+
gap: 4px;
|
|
2823
|
+
cursor: pointer;
|
|
2824
|
+
border-top-right-radius: 4px;
|
|
2825
|
+
border-bottom-right-radius: 4px;
|
|
2826
|
+
box-sizing: border-box;
|
|
2827
|
+
}
|
|
2828
|
+
|
|
2829
|
+
.chat-welcome-view-suggested-prompt > .chat-suggest-next-dropdown:hover {
|
|
2830
|
+
background-color: var(--vscode-toolbar-hoverBackground);
|
|
2831
|
+
}
|
|
2832
|
+
|
|
2833
|
+
.chat-welcome-view-suggested-prompt > .chat-suggest-next-dropdown:focus {
|
|
2834
|
+
outline: 1px solid var(--vscode-focusBorder);
|
|
2835
|
+
outline-offset: -1px;
|
|
2836
|
+
}
|
|
2837
|
+
|
|
2838
|
+
/* Chevron icon in dropdown container */
|
|
2839
|
+
.chat-welcome-view-suggested-prompt .codicon-chevron-down.dropdown-chevron {
|
|
2840
|
+
font-size: 12px;
|
|
2841
|
+
opacity: 0.7;
|
|
2842
|
+
flex-shrink: 0;
|
|
2843
|
+
}
|
|
2844
|
+
|
|
2845
|
+
.chat-welcome-view-suggested-prompt > .chat-suggest-next-dropdown:hover .dropdown-chevron,
|
|
2846
|
+
.chat-welcome-view-suggested-prompt > .chat-suggest-next-dropdown:focus .dropdown-chevron {
|
|
2847
|
+
opacity: 1;
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2850
|
+
/* Vertical separator between label and chevron in suggested next actions */
|
|
2851
|
+
.chat-suggest-next-dropdown > .chat-suggest-next-separator {
|
|
2852
|
+
width: 1px;
|
|
2853
|
+
height: 16px;
|
|
2854
|
+
background-color: currentColor;
|
|
2855
|
+
opacity: 0.5;
|
|
2856
|
+
border-radius: 1px;
|
|
2857
|
+
align-self: center;
|
|
2858
|
+
flex-shrink: 0;
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2861
|
+
/* Show more attachments button styling */
|
|
2862
|
+
.chat-attachments-show-more-button {
|
|
2863
|
+
opacity: 0.8;
|
|
2864
|
+
transition: opacity 0.2s ease;
|
|
2865
|
+
}
|
|
2866
|
+
|
|
2867
|
+
.chat-attachments-show-more-button:hover {
|
|
2868
|
+
opacity: 1;
|
|
2869
|
+
background-color: var(--vscode-list-hoverBackground) !important;
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
.chat-attachments-show-more-button:focus {
|
|
2873
|
+
outline: 1px solid var(--vscode-focusBorder);
|
|
2874
|
+
outline-offset: -1px;
|
|
2875
|
+
}
|
|
2876
|
+
|
|
2877
|
+
.chat-attachments-show-more-button .chat-attached-context-custom-text {
|
|
2878
|
+
font-style: italic;
|
|
2879
|
+
color: var(--vscode-descriptionForeground);
|
|
2880
|
+
}
|