Browse Source

Adds files icon for graph changes column

main
Ramin Tadayon 1 year ago
parent
commit
4976b43aea
No known key found for this signature in database GPG Key ID: 79D60DDE3DFB95F5
2 changed files with 9 additions and 0 deletions
  1. +1
    -0
      src/webviews/apps/plus/graph/GraphWrapper.tsx
  2. +8
    -0
      src/webviews/apps/plus/graph/graph.scss

+ 1
- 0
src/webviews/apps/plus/graph/GraphWrapper.tsx View File

@ -133,6 +133,7 @@ const createIconElements = (): { [key: string]: ReactElement } => {
'datetime',
'message',
'changes',
'files',
];
const miniIconList = ['upstream-ahead', 'upstream-behind'];

+ 8
- 0
src/webviews/apps/plus/graph/graph.scss View File

@ -752,6 +752,14 @@ button:not([disabled]),
content: '\eb43';
}
}
&--files {
&::before {
// codicon-files
font-family: codicon;
content: '\eaf0';
}
}
}
.titlebar {

Loading…
Cancel
Save