File tree 2 files changed +6
-9
lines changed
2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ export function Tab<T>(props: ITabProps) {
61
61
const handleMouseOut = ( ) => setHover ( false ) ;
62
62
const handleOnContextMenu = useCallback (
63
63
( event : React . MouseEvent ) => {
64
+ event . preventDefault ( ) ;
64
65
onContextMenu ?.( event , props ) ;
65
66
} ,
66
67
[ props ]
Original file line number Diff line number Diff line change 10
10
background : var (--activityBar-activeBorder );
11
11
}
12
12
13
- & __item--checked {
14
- #{$activityBar } __label {
15
- background-color : var (--activityBar-activeBackground );
16
- border-color : var (--activityBar-activeFocusBorder );
17
- color : var (--activityBar-activeBorder );
18
- }
19
- }
20
-
21
13
& __item {
22
14
color : var (--activityBar-inactiveForeground );
23
15
24
16
& :hover ,
25
- & __label .codicon {
17
+ & __label {
26
18
background-color : var (--activityBar-activeBackground );
27
19
border-color : var (--activityBar-activeBorder );
28
20
color : var (--activityBar-activeBorder );
29
21
}
30
22
}
23
+
24
+ & __item--checked {
25
+ color : var (--activityBar-activeBorder );
26
+ }
31
27
}
You can’t perform that action at this time.
0 commit comments