mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-14 01:25:43 -05:00
Changes show all commits icon
This commit is contained in:
4
images/dark/icon-unfold.svg
Normal file
4
images/dark/icon-unfold.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg width="16" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#C5C5C5" d="m12.5,11l2.5,2.5c0,0.55 -0.45,1 -1,1l-4,0l0,-1l3.5,0l-2,-2l-7,0l-2,2l3.5,0l0,1l-4,0c-0.55,0 -1,-0.45 -1,-1l2.5,-2.5l-2.5,-2.5c0,-0.55 0.45,-1 1,-1l4,0l0,1l-3.5,0l2,2l7,0l2,-2l-3.5,0l0,-1l4,0c0.55,0 1,0.45 1,1l-2.5,2.5l0,0zm-5.5,-1.5l2,0l0,-3l2,0l-3,-3l-3,3l2,0l0,3l0,0zm2,3l-2,0l0,3l-2,0l3,3l3,-3l-2,0l0,-3l0,0z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 467 B |
4
images/light/icon-unfold.svg
Normal file
4
images/light/icon-unfold.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg width="16" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="#424242" d="m12.5,11l2.5,2.5c0,0.55 -0.45,1 -1,1l-4,0l0,-1l3.5,0l-2,-2l-7,0l-2,2l3.5,0l0,1l-4,0c-0.55,0 -1,-0.45 -1,-1l2.5,-2.5l-2.5,-2.5c0,-0.55 0.45,-1 1,-1l4,0l0,1l-3.5,0l2,2l7,0l2,-2l-3.5,0l0,-1l4,0c0.55,0 1,0.45 1,1l-2.5,2.5l0,0zm-5.5,-1.5l2,0l0,-3l2,0l-3,-3l-3,3l2,0l0,3l0,0zm2,3l-2,0l0,3l-2,0l3,3l3,-3l-2,0l0,-3l0,0z" />
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 467 B |
@@ -73,8 +73,8 @@ export class PagerNode extends ExplorerNode {
|
||||
item.contextValue = this.resourceType;
|
||||
item.command = this.getCommand();
|
||||
item.iconPath = {
|
||||
dark: this.context.asAbsolutePath('images/dark/icon-sync.svg'),
|
||||
light: this.context.asAbsolutePath('images/light/icon-sync.svg')
|
||||
dark: this.context.asAbsolutePath('images/dark/icon-unfold.svg'),
|
||||
light: this.context.asAbsolutePath('images/light/icon-unfold.svg')
|
||||
};
|
||||
return item;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user