Skip to content

Commit fa7b644

Browse files
authored
voice chat: Fix mic icon centering in all contexts (microsoft#205978)
* voice chat: Fix mic icon centering in all contexts
1 parent 078596b commit fa7b644

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed
Binary file not shown.

src/vs/workbench/contrib/chat/electron-sandbox/actions/voiceChatActions.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -786,18 +786,16 @@ registerThemingParticipant((theme, collector) => {
786786
collector.addRule(`
787787
.monaco-workbench:not(.reduce-motion) .interactive-input-part .monaco-action-bar .action-label.codicon-loading.codicon-modifier-spin:not(.disabled),
788788
.monaco-workbench:not(.reduce-motion) .inline-chat .monaco-action-bar .action-label.codicon-loading.codicon-modifier-spin:not(.disabled) {
789-
outline: 2px solid ${activeRecordingColor};
790789
border-radius: 50%;
790+
outline: 2px solid ${activeRecordingColor};
791791
animation: pulseAnimation 1500ms ease-in-out infinite !important;
792-
padding-left: 4px;
793-
height: 17px;
794792
}
795793
796794
@keyframes pulseAnimation {
797795
0% {
798796
outline-width: 2px;
799797
}
800-
50% {
798+
62% {
801799
outline-width: 5px;
802800
outline-color: ${activeRecordingDimmedColor};
803801
}

0 commit comments

Comments
 (0)