#152 support for mime type icons
@@ -23,6 +23,12 @@
|
||||
source="name"
|
||||
class="full-width name-column">
|
||||
</content-column>
|
||||
<!--
|
||||
<content-column
|
||||
title="Type"
|
||||
source="content.mimeType">
|
||||
</content-column>
|
||||
-->
|
||||
<content-column
|
||||
title="{{'DOCUMENT_LIST.COLUMNS.CREATED_BY' | translate}}"
|
||||
source="createdByUser.displayName">
|
||||
|
@@ -18,8 +18,8 @@
|
||||
"copy-html-css:w": "cpx './src/**/*.{html,css}' dist/src -w",
|
||||
"copy-i18n": "cpx './i18n/**/*.json' dist/i18n",
|
||||
"copy-i18n:w": "cpx './i18n/**/*.json' dist/i18n -w",
|
||||
"copy-images": "cpx './src/**/*.{png,jpg,gif}' dist/src",
|
||||
"copy-images:w": "cpx './src/**/*.{png,jpg,gif}' dist/src -w",
|
||||
"copy-images": "cpx './src/**/*.{png,jpg,gif,svg}' dist/src",
|
||||
"copy-images:w": "cpx './src/**/*.{png,jpg,gif,svg}' dist/src -w",
|
||||
"tsc": "tsc",
|
||||
"tsc:w": "tsc -w",
|
||||
"pretest": "npm run build",
|
||||
|
@@ -1,11 +1,6 @@
|
||||
:host .full-width { width: 100%; }
|
||||
|
||||
:host .folder-thumbnail {
|
||||
font-size: 48px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
:host .document-thumbnail {
|
||||
:host .thumbnail {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
cursor: pointer;
|
||||
|
@@ -41,12 +41,7 @@
|
||||
(click)="onItemClick(content, $event)"
|
||||
[attr.data-automation-id]="col.source === '$thumbnail' ? '$thumbnail' : col.source + '_' + getObjectValue(content.entry, col.source)">
|
||||
<div *ngSwitchWhen="'$thumbnail'">
|
||||
<div *ngIf="content.entry.isFolder">
|
||||
<i class="material-icons folder-thumbnail">{{folderIcon || 'folder_open'}}</i>
|
||||
</div>
|
||||
<div *ngIf="!content.entry.isFolder">
|
||||
<img class="document-thumbnail" alt="" src="{{getDocumentThumbnailUrl(content)}}">
|
||||
</div>
|
||||
<img class="thumbnail" src="{{getThumbnailUrl(content)}}">
|
||||
</div>
|
||||
<span *ngSwitchDefault>
|
||||
{{getObjectValue(content.entry, col.source)}}
|
||||
@@ -109,7 +104,7 @@
|
||||
[ngForTemplate]="emptyFolderTemplate">
|
||||
</template>
|
||||
<img *ngIf="!emptyFolderTemplate"
|
||||
[src]="__baseUrl + '/document-list.empty-folder.png'">
|
||||
[src]="__baseUrl + '/img/document-list.empty-folder.png'">
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
@@ -46,7 +46,7 @@ export class DocumentList implements OnInit, AfterViewChecked, AfterContentInit,
|
||||
|
||||
DEFAULT_ROOT_FOLDER: string = '/Sites/swsdp/documentLibrary';
|
||||
|
||||
__baseUrl = __moduleName.replace('/document-list.js', '');
|
||||
__baseUrl = __moduleName.replace('/components/document-list.js', '');
|
||||
|
||||
@Input()
|
||||
navigate: boolean = true;
|
||||
@@ -57,6 +57,9 @@ export class DocumentList implements OnInit, AfterViewChecked, AfterContentInit,
|
||||
@Input('folder-icon')
|
||||
folderIcon: string;
|
||||
|
||||
@Input()
|
||||
thumbnails: boolean = false;
|
||||
|
||||
@Output()
|
||||
itemClick: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
@@ -237,14 +240,35 @@ export class DocumentList implements OnInit, AfterViewChecked, AfterContentInit,
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets thumbnail URL for the given document node.
|
||||
* Gets thumbnail URL for the given node.
|
||||
* @param node Node to get URL for.
|
||||
* @returns {string} URL address.
|
||||
*/
|
||||
getDocumentThumbnailUrl(node: MinimalNodeEntity): string {
|
||||
if (this._alfrescoService) {
|
||||
return this._alfrescoService.getDocumentThumbnailUrl(node);
|
||||
getThumbnailUrl(node: MinimalNodeEntity): string {
|
||||
if (node && node.entry) {
|
||||
let entry = node.entry;
|
||||
|
||||
if (entry.isFolder) {
|
||||
return `${this.__baseUrl}/img/ft_ic_folder.svg`;
|
||||
}
|
||||
|
||||
if (entry.isFile) {
|
||||
if (this.thumbnails) {
|
||||
if (this._alfrescoService) {
|
||||
return this._alfrescoService.getDocumentThumbnailUrl(node);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
if (entry.content && entry.content.mimeType) {
|
||||
let icon = this._alfrescoService.getMimeTypeIcon(entry.content.mimeType);
|
||||
return `${this.__baseUrl}/img/${icon}`;
|
||||
}
|
||||
}
|
||||
|
||||
return `${this.__baseUrl}/img/ft_ic_miscellaneous.svg`;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 202 KiB After Width: | Height: | Size: 202 KiB |
144
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_archive.svg
Executable file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st12" d="M20.5,5.2l-1.4-1.7C18.9,3.2,18.5,3,18,3H6C5.5,3,5.1,3.2,4.8,3.5L3.5,5.2C3.2,5.6,3,6,3,6.5V19
|
||||
c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6.5C21,6,20.8,5.6,20.5,5.2z M17,11h-2v2h2v2h-2v2h2v2h-2v-2h-2v-2h2v-2h-2v-2h2V9h-2V7h2v2
|
||||
h2V11z M5.1,5l0.8-1h12l0.9,1H5.1z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_24_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_22_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
143
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_audio.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st15" d="M12,3v9.3c-0.5-0.2-1-0.3-1.5-0.3C8,12,6,14,6,16.5S8,21,10.5,21c2.3,0,4.2-1.8,4.4-4H15V6h4V3H12z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_32_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_30_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
142
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_database.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st12" d="M2,20h20v-4H2V20z M4,17h2v2H4V17z M2,4v4h20V4H2z M6,7H4V5h2V7z M2,14h20v-4H2V14z M4,11h2v2H4V11z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_68_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_48_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
143
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_document.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st11" d="M19,4H5C4.5,4,4,4.5,4,5v14c0,0.5,0.5,1,1,1h14c0.6,0,1-0.5,1-1V5C20,4.5,19.6,4,19,4z M13,15H7v-1h6V15z
|
||||
M17,13H7v-1h10V13z M17,11H7v-1h10V11z M17,9H7V8h10V9z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_80_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_60_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
143
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_ebook.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st13" d="M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M6,4h5v8l-2.5-1.5
|
||||
L6,12V4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_66_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_46_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
142
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_folder.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st9" d="M10,4H4C2.9,4,2,4.9,2,6l0,12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8c0-1.1-0.9-2-2-2h-8L10,4z"/>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_1_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_3_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
143
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_folder_empty.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st9" d="M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6l0,12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V8
|
||||
h16V18z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_8_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_5_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
143
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_form.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st18" d="M18,4H6C4.9,4,4,4.9,4,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M9,16H7v-2h2V16z
|
||||
M9,13H7v-2h2V13z M9,10H7V8h2V10z M17,16h-7v-2h7V16z M17,13h-7v-2h7V13z M17,10h-7V8h7V10z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_74_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_54_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
147
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_google_docs.svg
Executable file
@@ -0,0 +1,147 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<path class="st11" d="M16,2H6C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6L16,2z M13,17H7v-1h6V17z M17,15H7v-1
|
||||
h10V15z M17,13H7v-1h10V13z M17,11H7v-1h10V11z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_112_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_92_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
147
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_google_drawings.svg
Executable file
@@ -0,0 +1,147 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<g>
|
||||
<path class="st13" d="M16,2H6C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6L16,2z M7,12.5C7,10.6,8.6,9,10.5,9
|
||||
s3.5,1.6,3.5,3.5c0,0.2,0,0.3-0.1,0.5H11v2.9c-0.2,0-0.3,0.1-0.5,0.1C8.6,16,7,14.4,7,12.5z M17,19h-5v-5l5,0V19z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_104_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_84_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
147
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_google_forms.svg
Executable file
@@ -0,0 +1,147 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<path class="st18" d="M16,2H6C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6L16,2z M9,18H7v-2h2V18z M9,15H7v-2h2
|
||||
V15z M9,12H7v-2h2V12z M17,18h-7v-2h7V18z M17,15h-7v-2h7V15z M17,12h-7v-2h7V12z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_106_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_86_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
148
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_google_sheets.svg
Executable file
@@ -0,0 +1,148 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<path class="st8" d="M6,2C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6l-4-4H6z"/>
|
||||
<path class="st6" d="M17,9L17,9L7,9v0h0v10h10L17,9L17,9z M10,13v2H8v-2H10z M8,12v-2h2v2H8z M11,13h5v2h-5V13z M11,12v-2h5v2H11
|
||||
z M8,18v-2h2v2H8z M11,18v-2h5v2H11z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_110_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_90_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
146
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_google_slides.svg
Executable file
@@ -0,0 +1,146 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<path class="st14" d="M16,2H6C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6L16,2z M17,17H7v-7h10V17z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_108_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_88_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
142
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_miscellaneous.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st9" d="M6,2C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8l-6-6H6z M13,9V3.5L18.5,9H13z"/>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_28_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_26_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
157
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_ms_excel.svg
Executable file
@@ -0,0 +1,157 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<g>
|
||||
<path class="st8" d="M22,17.2c0-3.9,0-7.9,0-11.8c0-0.4,0-0.8-0.2-1.1C21.4,4,21,4.1,20.6,4c-2.3,0-4.5,0-6.8,0
|
||||
c0-0.6,0-1.2,0-1.8h-1.3C9,2.8,5.5,3.4,2,4.1C2,9.4,2,14.7,2,20c3.5,0.6,6.9,1.2,10.4,1.8h1.4c0-0.7,0-1.4,0-2c2.4,0,4.7,0,7.1,0
|
||||
c0.4,0,0.9,0,1-0.5C22.1,18.6,22,17.9,22,17.2z M8.7,15.6c-0.4-0.9-0.9-1.9-1.1-2.9c-0.3,0.9-0.7,1.8-1.1,2.7c-0.5,0-1,0-1.5,0
|
||||
c0.6-1.1,1.1-2.3,1.7-3.4c-0.5-1.2-1.1-2.3-1.6-3.5c0.5,0,1-0.1,1.5-0.1c0.3,0.9,0.7,1.8,1,2.7c0.3-1,0.7-1.9,1.1-2.8
|
||||
c0.5,0,1-0.1,1.5-0.1c-0.6,1.2-1.2,2.5-1.8,3.7c0.6,1.3,1.3,2.5,1.9,3.8C9.8,15.6,9.2,15.6,8.7,15.6z M21.3,19c-2.5,0-5,0-7.5,0
|
||||
c0-0.5,0-0.9,0-1.4c0.6,0,1.2,0,1.8,0c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0c0-0.3,0-0.6,0-0.9c0.6,0,1.2,0,1.8,0
|
||||
c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0c0-0.3,0-0.6,0-0.9c0.6,0,1.2,0,1.8,0c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0
|
||||
c0-0.3,0-0.6,0-0.9c0.6,0,1.2,0,1.8,0c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0c0-0.3,0-0.6,0-0.9c0.6,0,1.2,0,1.8,0
|
||||
c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0c0-0.5,0-0.9,0-1.4c2.5,0,5,0,7.5,0C21.3,9.5,21.3,14.3,21.3,19z"/>
|
||||
<path class="st8" d="M16.5,6.1c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,7.2,16.5,6.6,16.5,6.1z"/>
|
||||
<path class="st8" d="M16.5,8.6c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,9.7,16.5,9.1,16.5,8.6z"/>
|
||||
<path class="st8" d="M16.5,11.1c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,12.2,16.5,11.6,16.5,11.1z"/>
|
||||
<path class="st8" d="M16.5,13.6c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,14.7,16.5,14.1,16.5,13.6z"/>
|
||||
<path class="st8" d="M16.5,16.1c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,17.2,16.5,16.6,16.5,16.1z"/>
|
||||
</g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_118_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_98_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.0 KiB |
152
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_ms_powerpoint.svg
Executable file
@@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<g>
|
||||
<path class="st14" d="M15.4,6.5c0,1,0,2,0,3c1,0,2,0,3,0C18.3,7.9,17,6.6,15.4,6.5z"/>
|
||||
<path class="st14" d="M22,5.2c0.1-0.5-0.4-0.9-0.9-0.9c-2.4,0-4.9,0-7.3,0c0-0.7,0-1.4,0-2h-1.3C9,2.8,5.5,3.4,2,4.1
|
||||
C2,9.4,2,14.7,2,20c3.5,0.6,6.9,1.2,10.4,1.8h1.4c0-0.8,0-1.5,0-2.3c2.3,0,4.5,0,6.8,0c0.4,0,0.8,0,1.2-0.2
|
||||
c0.3-0.4,0.2-0.9,0.2-1.4C22,13.7,22,9.4,22,5.2z M8.7,12.8C8.1,13,7.6,13,7,13c0,0.9,0,1.8,0,2.7c-0.4,0-0.9-0.1-1.4-0.1
|
||||
c0-2.4,0-4.9,0-7.3c1.2,0.1,2.7-0.5,3.8,0.4C10.4,9.9,10.1,12,8.7,12.8z M21.3,18.8c-2.5,0-5,0-7.5,0c0-0.6,0-1.2,0-1.8
|
||||
c1.8,0,3.6,0,5.5,0c0-0.3,0-0.6,0-0.9c-1.8,0-3.6,0-5.5,0c0-0.4,0-0.8,0-1.1c1.8,0,3.6,0,5.5,0c0-0.3,0-0.6,0-0.9
|
||||
c-1.8,0-3.6,0-5.5,0c0-0.4,0-0.9,0-1.3c0.9,0.3,1.9,0.3,2.7-0.3c0.9-0.5,1.3-1.5,1.4-2.5c-1,0-2,0-3,0c0-1,0-2,0-3
|
||||
c-0.4,0.1-0.7,0.1-1.1,0.2c0-0.8,0-1.5,0-2.3c2.5,0,5,0,7.5,0C21.3,9.6,21.3,14.2,21.3,18.8z"/>
|
||||
<path class="st14" d="M7,9.5c0,0.8,0,1.5,0,2.3c0.5-0.1,1,0,1.3-0.5c0.2-0.5,0.2-1,0-1.5C8,9.4,7.4,9.4,7,9.5z"/>
|
||||
</g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_116_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_96_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.3 KiB |
151
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_ms_word.svg
Executable file
@@ -0,0 +1,151 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st11" d="M22,4.9c0-0.5-0.4-0.9-0.9-0.9c-2.4,0-4.9,0-7.3,0c0-0.6,0-1.2,0-1.8h-1.4C9,2.8,5.5,3.4,2,4.1
|
||||
C2,9.4,2,14.7,2,20c3.5,0.6,6.9,1.2,10.4,1.8h1.4c0-0.6,0-1.2,0-1.8c2.3,0,4.5,0,6.8,0c0.4,0,0.8,0,1.1-0.2
|
||||
c0.3-0.4,0.2-0.9,0.2-1.4C22,13.9,22,9.4,22,4.9z M9.6,15.1c-0.4,0.2-0.9,0-1.4,0c-0.3-1.5-0.7-3-0.9-4.5C7,12.1,6.6,13.5,6.3,15
|
||||
c-0.4,0-0.9,0-1.3-0.1c-0.4-2-0.8-4-1.2-6c0.4,0,0.8,0,1.2,0c0.2,1.4,0.5,2.9,0.7,4.3c0.3-1.5,0.6-3,1-4.5c0.4,0,0.9,0,1.3-0.1
|
||||
c0.3,1.5,0.6,3.1,0.9,4.6c0.3-1.6,0.5-3.1,0.8-4.7c0.5,0,0.9,0,1.4-0.1C10.6,10.7,10.1,12.9,9.6,15.1z M21.3,19.3
|
||||
c-2.5,0-5,0-7.5,0c0-0.6,0-1.2,0-1.8c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.4,0-0.8,0-1.1c2,0,3.9,0,5.9,0
|
||||
c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.4,0-0.8,0-1.1c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.4,0-0.8,0-1.1
|
||||
c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.4,0-0.8,0-1.1c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0
|
||||
c0-0.4,0-0.8,0-1.1c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.5,0-1.1,0-1.6c2.5,0,5,0,7.5,0
|
||||
C21.3,9.6,21.3,14.4,21.3,19.3z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_120_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_100_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.4 KiB |
144
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_pdf.svg
Executable file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<path class="st19" d="M19,3c0.5,0,1,0.2,1.4,0.6C20.8,4,21,4.4,21,5v14c0,0.5-0.2,1-0.6,1.4C20,20.8,19.6,21,19,21H5
|
||||
c-0.5,0-1-0.2-1.4-0.6C3.2,20,3,19.5,3,19V5c0-0.5,0.2-1,0.6-1.4S4.5,3,5,3H19z M9.5,11.5v-1c0-0.4-0.1-0.8-0.4-1.1
|
||||
C8.7,9.1,8.4,9,8,9H5.5v6H7v-2h1c0.4,0,0.8-0.1,1.1-0.4C9.3,12.3,9.5,11.9,9.5,11.5z M7,11.5h1v-1H7V11.5z M14.5,13.5v-3
|
||||
c0-0.4-0.1-0.8-0.4-1.1C13.8,9.1,13.4,9,13,9h-2.5v6H13c0.4,0,0.8-0.1,1.1-0.4C14.4,14.2,14.5,13.9,14.5,13.5z M12,13.5h1v-3h-1
|
||||
V13.5z M18.5,10.5V9h-3v6H17v-2h1.5v-1.5H17v-1H18.5z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_62_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_42_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.9 KiB |
142
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_presentation.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st14" d="M18,4H6C4.9,4,4,4.9,4,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M17,14H7V8h10V14z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_76_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_56_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
143
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_raster_image.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st8" d="M21,19V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14C20.1,21,21,20.1,21,19z M8.5,13.5l2.5,3
|
||||
l3.5-4.5l4.5,6H5L8.5,13.5z"/>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_64_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_44_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
151
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_spreadsheet.svg
Executable file
@@ -0,0 +1,151 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<rect x="8" y="14" class="st8" width="2" height="2"/>
|
||||
<rect x="11" y="14" class="st8" width="5" height="2"/>
|
||||
<rect x="8" y="11" class="st8" width="2" height="2"/>
|
||||
<rect x="8" y="8" class="st8" width="2" height="2"/>
|
||||
<path class="st8" d="M19,4H5C4.5,4,4,4.5,4,5v14c0,0.5,0.5,1,1,1h14c0.6,0,1-0.5,1-1V5C20,4.5,19.6,4,19,4z M17,17H7V7h0v0h10v0
|
||||
h0V17z"/>
|
||||
<rect x="11" y="8" class="st8" width="5" height="2"/>
|
||||
<rect x="11" y="11" class="st8" width="5" height="2"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_78_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_58_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
144
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_vector_image.svg
Executable file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<path class="st13" d="M18,4H6C4.9,4,4,4.9,4,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M7,10.5
|
||||
C7,8.6,8.6,7,10.5,7S14,8.6,14,10.5c0,0.2,0,0.3-0.1,0.5H11v2.9c-0.2,0-0.3,0.1-0.5,0.1C8.6,14,7,12.4,7,10.5z M17,17h-5v-5l5,0
|
||||
V17z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_72_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_52_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
144
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_video.svg
Executable file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" class="st0" width="24" height="24"/>
|
||||
<path class="st14" d="M18,3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3H18z M8,17H6v-2h2V17z M8,13H6v-2h2V13z M8,9H6V7h2V9z
|
||||
M18,17h-2v-2h2V17z M18,13h-2v-2h2V13z M18,9h-2V7h2V9z"/>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_36_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_34_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
142
ng2-components/ng2-alfresco-documentlist/src/img/ft_ic_website.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st11" d="M9.4,16.6L4.8,12l4.6-4.6L8,6l-6,6l6,6L9.4,16.6z M14.6,16.6l4.6-4.6l-4.6-4.6L16,6l6,6l-6,6L14.6,16.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_70_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_50_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
@@ -23,6 +23,7 @@ import { AlfrescoSettingsService } from 'ng2-alfresco-core/dist/ng2-alfresco-cor
|
||||
|
||||
declare let AlfrescoApi: any;
|
||||
|
||||
// TODO: consider renaming to something like 'DocumentListService'
|
||||
/**
|
||||
* Internal service used by Document List component.
|
||||
*/
|
||||
@@ -31,6 +32,19 @@ export class AlfrescoService {
|
||||
|
||||
private _baseUrlPath: string = '/alfresco/api/-default-/public/alfresco/versions/1';
|
||||
|
||||
mimeTypeIcons: any = {
|
||||
'image/png': 'ft_ic_raster_image.svg',
|
||||
'image/jpeg': 'ft_ic_raster_image.svg',
|
||||
'image/gif': 'ft_ic_raster_image.svg',
|
||||
'application/pdf': 'ft_ic_pdf.svg',
|
||||
'application/vnd.ms-excel': 'ft_ic_ms_excel.svg',
|
||||
'application/msword': 'ft_ic_ms_word.svg',
|
||||
'application/vnd.ms-powerpoint': 'ft_ic_ms_powerpoint.svg',
|
||||
'video/mp4': 'ft_ic_video.svg',
|
||||
'text/plain': 'ft_ic_document.svg',
|
||||
'application/x-javascript': 'ft_ic_document.svg'
|
||||
};
|
||||
|
||||
constructor(
|
||||
private settings: AlfrescoSettingsService) {
|
||||
}
|
||||
@@ -101,6 +115,11 @@ export class AlfrescoService {
|
||||
document.entry.id + '/content';
|
||||
}
|
||||
|
||||
getMimeTypeIcon(mimeType: string): string {
|
||||
let icon = this.mimeTypeIcons[mimeType];
|
||||
return icon || 'ft_ic_miscellaneous.svg';
|
||||
}
|
||||
|
||||
private handleError(error: Response) {
|
||||
// in a real world app, we may send the error to some remote logging infrastructure
|
||||
// instead of just logging it to the console
|
||||
|