Converts images to svg

Adds blame toggle to the editor toolbar
This commit is contained in:
Eric Amodio
2017-02-13 00:55:47 -05:00
parent aaa1b78d29
commit 6641233284
10 changed files with 70 additions and 6 deletions

View File

@@ -34,12 +34,12 @@ export class BlameAnnotationProvider extends Disposable {
highlightDecoration = window.createTextEditorDecorationType({
dark: {
backgroundColor: 'rgba(255, 255, 255, 0.15)',
gutterIconPath: context.asAbsolutePath('images/blame-dark.png'),
gutterIconPath: context.asAbsolutePath('images/blame-dark.svg'),
overviewRulerColor: 'rgba(255, 255, 255, 0.75)'
},
light: {
backgroundColor: 'rgba(0, 0, 0, 0.15)',
gutterIconPath: context.asAbsolutePath('images/blame-light.png'),
gutterIconPath: context.asAbsolutePath('images/blame-light.svg'),
overviewRulerColor: 'rgba(0, 0, 0, 0.75)'
},
gutterIconSize: 'contain',