File tree 1 file changed +5
-1
lines changed
src/vs/workbench/contrib/files/browser/views
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ import { Event } from 'vs/base/common/event';
54
54
import { attachStyler , IColorMapping } from 'vs/platform/theme/common/styler' ;
55
55
import { ColorValue , listDropBackground } from 'vs/platform/theme/common/colorRegistry' ;
56
56
import { Color } from 'vs/base/common/color' ;
57
+ import { SIDE_BAR_BACKGROUND } from 'vs/workbench/common/theme' ;
57
58
58
59
interface IExplorerViewColors extends IColorMapping {
59
60
listDropBackground ?: ColorValue | undefined ;
@@ -381,7 +382,10 @@ export class ExplorerView extends ViewletPanel {
381
382
sorter : this . instantiationService . createInstance ( FileSorter ) ,
382
383
dnd : this . instantiationService . createInstance ( FileDragAndDrop ) ,
383
384
autoExpandSingleChildren : true ,
384
- additionalScrollHeight : ExplorerDelegate . ITEM_HEIGHT
385
+ additionalScrollHeight : ExplorerDelegate . ITEM_HEIGHT ,
386
+ overrideStyles : {
387
+ listBackground : SIDE_BAR_BACKGROUND
388
+ }
385
389
} ) ;
386
390
this . _register ( this . tree ) ;
387
391
You can’t perform that action at this time.
0 commit comments