@@ -100,7 +100,7 @@ import { IUriIdentityService } from 'vs/platform/uriIdentity/common/uriIdentity'
100100import { EditOperation } from 'vs/editor/common/core/editOperation' ;
101101import { stripIcons } from 'vs/base/common/iconLabels' ;
102102import { IconLabel } from 'vs/base/browser/ui/iconLabel/iconLabel' ;
103- import { registerColor , transparent } from 'vs/platform/theme/common/colorRegistry' ;
103+ import { foreground , listActiveSelectionForeground , registerColor , transparent } from 'vs/platform/theme/common/colorRegistry' ;
104104
105105// type SCMResourceTreeNode = IResourceNode<ISCMResource, ISCMResourceGroup>;
106106// type SCMHistoryItemChangeResourceTreeNode = IResourceNode<SCMHistoryItemChangeTreeElement, SCMHistoryItemTreeElement>;
@@ -132,12 +132,18 @@ registerColor('scm.historyItemDeletionsForeground', {
132132} , localize ( 'scm.historyItemDeletionsForeground' , "History item deletions foreground color." ) ) ;
133133
134134registerColor ( 'scm.historyItemStatisticsBorder' , {
135- dark : transparent ( ' foreground' , 0.1 ) ,
136- light : transparent ( ' foreground' , 0.1 ) ,
137- hcDark : transparent ( ' foreground' , 0.1 ) ,
138- hcLight : transparent ( ' foreground' , 0.1 )
135+ dark : transparent ( foreground , 0.2 ) ,
136+ light : transparent ( foreground , 0.2 ) ,
137+ hcDark : transparent ( foreground , 0.2 ) ,
138+ hcLight : transparent ( foreground , 0.2 )
139139} , localize ( 'scm.historyItemStatisticsBorder' , "History item statistics border color." ) ) ;
140140
141+ registerColor ( 'scm.historyItemSelectedStatisticsBorder' , {
142+ dark : transparent ( listActiveSelectionForeground , 0.2 ) ,
143+ light : transparent ( listActiveSelectionForeground , 0.2 ) ,
144+ hcDark : transparent ( listActiveSelectionForeground , 0.2 ) ,
145+ hcLight : transparent ( listActiveSelectionForeground , 0.2 )
146+ } , localize ( 'scm.historyItemSelectedStatisticsBorder' , "History item selected statistics border color." ) ) ;
141147
142148interface ISCMLayout {
143149 height : number | undefined ;
0 commit comments