[ACA-3174] Add custom icons for processes and tasks (#5631)

This commit is contained in:
arditdomi
2020-04-22 13:39:45 +01:00
committed by GitHub
parent 6485ad71b4
commit b3c004eb46
3 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><rect fill="none" height="24" width="24"/></g><g><g/><g><path d="M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"/><path d="M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"/><path d="M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"/></g></g><g display="none"><g display="inline"/><g display="inline"><path d="M8,8H6v7c0,1.1,0.9,2,2,2h9v-2H8V8z"/><path d="M20,3h-8c-1.1,0-2,0.9-2,2v6c0,1.1,0.9,2,2,2h8c1.1,0,2-0.9,2-2V5C22,3.9,21.1,3,20,3z M20,11h-8V7h8V11z"/><path d="M4,12H2v7c0,1.1,0.9,2,2,2h9v-2H4V12z"/></g></g></svg>

After

Width:  |  Height:  |  Size: 671 B

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="19px" viewBox="0 0 20 19" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: sketchtool 63.1 (101010) - https://sketch.com -->
<title>6CD6F51D-648C-41C4-AAD9-15D7BE9802AF</title>
<desc>Created with sketchtool.</desc>
<g id="1.-🎨-Styles-/-Atoms-/-Molecules-/-Compounds" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="07.3-Icons-(Light)" transform="translate(-900.000000, -378.000000)">
<g id="icons" transform="translate(63.000000, 323.000000)">
<g id="Filetype">
<g id="row1" transform="translate(41.000000, 42.000000)">
<g id="icons" transform="translate(42.000000, 11.000000)">
<g id="ic-archive-sync" transform="translate(752.000000, 0.000000)">
<polygon id="Bounding-box" points="0 5.32907052e-15 24 5.32907052e-15 24 24 0 24"></polygon>
<path d="M2,2 L7,2 L7,7 L2,7 L2,2 Z M4.5,16 C5.88071187,16 7,17.1192881 7,18.5 C7,19.8807119 5.88071187,21 4.5,21 C3.11928813,21 2,19.8807119 2,18.5 C2,17.1192881 3.11928813,16 4.5,16 Z M19.5,16 L22,21 L17,21 L19.5,16 Z M10.5,18 L10.5,19 L9.5,19 L9.5,18 L10.5,18 Z M12.5,18 L12.5,19 L11.5,19 L11.5,18 L12.5,18 Z M14.5,18 L14.5,19 L13.5,19 L13.5,18 L14.5,18 Z M5,13 L5,14 L4,14 L4,13 L5,13 Z M20,13 L20,14 L19,14 L19,13 L20,13 Z M5,11 L5,12 L4,12 L4,11 L5,11 Z M20,11 L20,12 L19,12 L19,11 L20,11 Z M5,9 L5,10 L4,10 L4,9 L5,9 Z M20,9 L20,10 L19,10 L19,9 L20,9 Z M20.6502757,2 L22,4.5 L20.5,7 L17.5,7 L16,4.5 L17.5,2 L20.6502757,2 Z M10.5,4 L10.5,5 L9.5,5 L9.5,4 L10.5,4 Z M12.5,4 L12.5,5 L11.5,5 L11.5,4 L12.5,4 Z M14.5,4 L14.5,5 L13.5,5 L13.5,4 L14.5,4 Z" id="Combined-Shape" fill="#000000" opacity="0.87"></path>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -155,7 +155,9 @@ export class ThumbnailService {
'ruleFolder': './assets/images/ft_ic_folder_rule.svg', 'ruleFolder': './assets/images/ft_ic_folder_rule.svg',
'linkFolder': './assets/images/ft_ic_folder_shortcut_link.svg', 'linkFolder': './assets/images/ft_ic_folder_shortcut_link.svg',
'disable/folder': './assets/images/ft_ic_folder_disable.svg', 'disable/folder': './assets/images/ft_ic_folder_disable.svg',
'selected': './assets/images/ft_ic_selected.svg' 'selected': './assets/images/ft_ic_selected.svg',
'dynamic-feed': './assets/images/dynamic_feed-24px.svg',
'ic-process': './assets/images/ic-process.svg'
}; };
constructor(protected apiService: AlfrescoApiService, matIconRegistry: MatIconRegistry, sanitizer: DomSanitizer) { constructor(protected apiService: AlfrescoApiService, matIconRegistry: MatIconRegistry, sanitizer: DomSanitizer) {