File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
components/panels/sourcecontrol Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export const SourceControlItem = (props: SourceControlItemProps) => {
52
52
if ( ! file . statusNames || file . statusNames . length === 0 ) return null
53
53
54
54
return ( < >
55
- < div data-status = { file . statusNames . join ( '-' ) } data-file = { file . filename } className = "d-flex w-100 d-flex flex-row align-items-center" >
55
+ < div data-status = { file . statusNames . join ( '-' ) } data-file = { file . filename } className = "d-flex w-100 d-flex flex-row align-items-center mt-2 " >
56
56
< div className = 'pointer gitfile long-and-truncated' onClick = { async ( ) => await fileClick ( file ) } >
57
57
< span className = 'fw-bold long-and-truncated' > { path . basename ( file . filename ) } </ span >
58
58
< div className = 'text-secondary long-and-truncated' > { file . filename } </ div >
Original file line number Diff line number Diff line change 18
18
}
19
19
20
20
.commit-navigation : hover {
21
- background-color : var (--custom-select );
21
+ background-color : var (--custom-onsurface-layer-2 );
22
22
}
23
23
24
24
.commitdetailsitem {
25
25
align-items : baseline;
26
26
}
27
27
28
28
.gitfile : hover {
29
- background-color : var (--custom-select );
29
+ background-color : var (--custom-onsurface-layer-2 );
30
30
}
31
31
32
32
hr {
33
- background-color : var (--custom-select );
33
+ background-color : var (--custom-onsurface-layer-2 );
34
34
}
35
35
36
36
.messageTip {
You can’t perform that action at this time.
0 commit comments