Cleaner note icon rendering

Before: We drew 2 fontawesome comment icons, on on top of the other
After: Moved icon into iD spritesheet and gave it an actual `stroke` property that can be styled
This commit is contained in:
Bryan Housel
2018-07-16 13:17:17 -04:00
parent 33de399bac
commit 70f87632c7
7 changed files with 29 additions and 35 deletions
+1 -6
View File
@@ -24,12 +24,7 @@ export function uiNoteHeader() {
iconEnter
.append('div')
.attr('class', 'preset-icon-28')
.call(svgIcon('#fas-comment-alt', 'note-shadow'));
iconEnter
.append('div')
.attr('class', 'preset-icon-24')
.call(svgIcon('#fas-comment-alt', 'note-fill'));
.call(svgIcon('#iD-icon-note', 'note-fill'));
headerEnter
.append('div')