File tree 3 files changed +9
-13
lines changed
extensions/github-plus-theme-master/themes
3 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export function Collapse({
82
82
const adjustedSize = useRef < number [ ] > ( [ ] ) ;
83
83
const first = useRef ( true ) ;
84
84
85
- const isUndefined = ( key ) : boolean => {
85
+ const isUndefined = ( key : UniqueId ) : boolean => {
86
86
return key === undefined ;
87
87
} ;
88
88
@@ -125,7 +125,7 @@ export function Collapse({
125
125
return null ;
126
126
} ;
127
127
128
- const handleChangeCallback = ( key : UniqueId , index ) => {
128
+ const handleChangeCallback = ( key : UniqueId , index : number ) => {
129
129
const currentKeys = [ ...activePanelKeys ] ;
130
130
if ( ! isUndefined ( currentKeys [ index ] ) ) {
131
131
delete currentKeys [ index ] ;
Original file line number Diff line number Diff line change @@ -15,14 +15,10 @@ $split_pane_visible: #{$split}__pane__item--visible;
15
15
}
16
16
17
17
& __pane {
18
- & --collapsing {
19
- transition : top ease-in-out 0.2s , height ease-in-out 0.2s ;
20
- }
18
+ transition : top ease-out 0.15s , height ease-out 0.15s ;
21
19
22
- & :not (#{$split_pane_visible} ~ #{$split_pane_visible}) {
23
- #{$collapse } __header {
24
- border-top : 0 ;
25
- }
20
+ & :first-child #{$collapse } __header {
21
+ border-top-color : transparent ;
26
22
}
27
23
}
28
24
@@ -43,14 +39,14 @@ $split_pane_visible: #{$split}__pane__item--visible;
43
39
44
40
& __header {
45
41
align-items : center ;
46
- border-top : 1px solid var (--sideBarSectionHeader-border );
42
+ border-bottom : 1px solid transparent ;
43
+ border-top : 1px solid var (--sideBarSectionHeader-border , transparent );
47
44
box-sizing : border-box ;
48
45
cursor : pointer ;
49
46
display : flex ;
50
47
font-size : 11px ;
51
48
font-weight : bold ;
52
- height : 25px ;
53
- outline : none ;
49
+ height : 26px ;
54
50
outline : 1px solid transparent ;
55
51
outline-offset : -1px ;
56
52
padding : 1px 2px ;
Original file line number Diff line number Diff line change 39
39
"scrollbar.shadow" : " #00000000" ,
40
40
"quickInputList.focusBackground" : " #e7e6e5" ,
41
41
"quickInputList.focusForeground" : " #24292e" ,
42
+ "list.focusOutline" : " #ffffff" ,
42
43
"list.highlightForeground" : " #0066BF" ,
43
44
"list.focusHighlightForeground" : " #0066BF" ,
44
-
45
45
"terminal.background" : " #ffffff" ,
46
46
"terminal.foreground" : " #333333" ,
47
47
"terminal.ansiBlack" : " #414141" ,
You can’t perform that action at this time.
0 commit comments