File tree Expand file tree Collapse file tree 2 files changed +0
-27
lines changed
src/vs/platform/actions/browser Expand file tree Collapse file tree 2 files changed +0
-27
lines changed Original file line number Diff line number Diff line change 11
11
background-size : 16px ;
12
12
}
13
13
14
- @keyframes shift {
15
- 0% {
16
- transform : translateX (0px );
17
- }
18
-
19
- 33% {
20
- transform : translateX (0.5px );
21
- }
22
-
23
- 66% {
24
- transform : translateX (-0.5px );
25
- }
26
- }
27
-
28
- .monaco-toolbar .config .monaco-action-bar .action-item {
29
- animation-duration : 1.2s ;
30
- animation-iteration-count : infinite;
31
- animation-name : shift;
32
- }
33
-
34
- .monaco-toolbar .config .monaco-action-bar .action-item : nth-child (odd) {
35
- animation-delay : 0.6s ;
36
- }
37
-
38
14
.monaco-dropdown-with-default {
39
15
display : flex !important ;
40
16
flex-direction : row;
Original file line number Diff line number Diff line change @@ -187,16 +187,13 @@ export class WorkbenchToolBar extends ToolBar {
187
187
} ) ) ;
188
188
}
189
189
190
- // this.getElement().classList.toggle('config', true);
191
-
192
190
this . _contextMenuService . showContextMenu ( {
193
191
getAnchor : ( ) => e ,
194
192
getActions : ( ) => actions ,
195
193
// add context menu actions (iff appicable)
196
194
menuId : this . _options ?. contextMenu ,
197
195
menuActionOptions : { renderShortTitle : true , ...this . _options ?. menuOptions } ,
198
196
contextKeyService : this . _contextKeyService ,
199
- onHide : ( ) => this . getElement ( ) . classList . toggle ( 'config' , false ) ,
200
197
} ) ;
201
198
} ) ) ;
202
199
}
You can’t perform that action at this time.
0 commit comments