File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
src/vs/workbench/contrib/chat/electron-sandbox/actions Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change
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
+ .monaco-workbench .interactive-input-part .monaco-action-bar .action-label .codicon-loading .codicon-modifier-spin : not (.disabled ): hover ,
7
+ .monaco-workbench .inline-chat .monaco-action-bar .action-label .codicon-loading .codicon-modifier-spin : not (.disabled ): hover {
8
+ animation : none; /* stop the running voice recording animation for showing another codicon to stop */
9
+ }
10
+
11
+ .monaco-workbench .interactive-input-part .monaco-action-bar .action-label .codicon-loading .codicon-modifier-spin : not (.disabled ): hover ::before ,
12
+ .monaco-workbench .inline-chat .monaco-action-bar .action-label .codicon-loading .codicon-modifier-spin : not (.disabled ): hover ::before {
13
+ content : "\eba5" ; /* use `stop-circle` icon unicode for hovering over running voice recording */
14
+ }
Original file line number Diff line number Diff line change 3
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
4
*--------------------------------------------------------------------------------------------*/
5
5
6
+ import 'vs/css!./media/voiceChatActions' ;
6
7
import { Event } from 'vs/base/common/event' ;
7
8
import { firstOrDefault } from 'vs/base/common/arrays' ;
8
9
import { CancellationTokenSource } from 'vs/base/common/cancellation' ;
You can’t perform that action at this time.
0 commit comments