Merge pull request #292331 from microsoft/mrleemurray/yielding-magenta-ocelot

Mrleemurray/yielding-magenta-ocelot
This commit is contained in:
Lee Murray 2026-02-02 15:53:43 +00:00 committed by GitHub
commit 238adc8bc6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 19 additions and 8 deletions

View File

@ -317,7 +317,7 @@
}
.codicon {
font-size: var(--vscode-chat-font-size-body-s);
font-size: 12px;
}
&:hover {

View File

@ -22,10 +22,14 @@
font-size: 13px;
padding-left: 1px;
.codicon, .monaco-button-mdlabel {
.monaco-button-mdlabel {
font-size: var(--vscode-chat-font-size-body-s);
}
.codicon {
font-size: 12px;
}
.rendered-markdown.collapsible-title-content {
line-height: unset;
}

View File

@ -14,7 +14,7 @@
}
.interactive-item-container .chat-tip-widget .codicon-lightbulb {
font-size: var(--vscode-chat-font-size-body-s);
font-size: 12px;
color: var(--vscode-descriptionForeground);
}

View File

@ -2052,6 +2052,12 @@ have to be updated for changes to the rules above, or to support more deeply nes
.monaco-icon-label {
padding: 0px 3px;
gap: 2px;
&::before {
width: var(--vscode-chat-font-size-body-s);
padding-right: 0;
}
}
}
@ -2088,7 +2094,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
}
.interactive-session .chat-used-context-label {
font-size: var(--vscode-chat-font-size-body-s);
font-size: 13px;
font-family: var(--vscode-chat-font-family, inherit);
color: var(--vscode-descriptionForeground);
user-select: none;
@ -2128,7 +2134,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
.interactive-session .chat-used-context-label .monaco-button {
padding: 2px 6px 2px 2px;
font-size: var(--vscode-chat-font-size-body-m);
font-size: var(--vscode-chat-font-size-body-s);
line-height: unset;
}
@ -2154,7 +2160,7 @@ have to be updated for changes to the rules above, or to support more deeply nes
.interactive-session .chat-file-changes-label .monaco-button .codicon,
.interactive-session .chat-used-context-label .monaco-button .codicon {
font-size: var(--vscode-chat-font-size-body-s);
font-size: 12px;
color: var(--vscode-icon-foreground) !important;
}
@ -2163,16 +2169,17 @@ have to be updated for changes to the rules above, or to support more deeply nes
align-items: center;
gap: 4px;
margin: 0 0 6px 2px;
font-size: 13px;
/* Tool calls transition from a progress to a collapsible list part, which needs to have this top padding.
The working progress also can be replaced by a tool progress part. So align this padding so the text doesn't appear to shift. */
padding-top: 2px;
> .codicon[class*='codicon-'] {
font-size: var(--vscode-chat-font-size-body-s);
font-size: 12px;
&::before {
font-size: var(--vscode-chat-font-size-body-s);
font-size: 12px;
}
}