[ADF-506] Unify thumbnail service (#2014)
* move thumbnail service in core * fix folder
@@ -87,7 +87,7 @@ module.exports = {
|
||||
emitErrors: true,
|
||||
licenseFile: path.resolve(__dirname, '../assets/license_header.txt')
|
||||
},
|
||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/],
|
||||
exclude: [/node_modules/, /bundles/, /dist/, /demo/]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@@ -24,36 +24,6 @@ export class ActivitiContentService {
|
||||
|
||||
static UNKNOWN_ERROR_MESSAGE: string = 'Unknown error';
|
||||
static GENERIC_ERROR_MESSAGE: string = 'Server error';
|
||||
static DEFAULT_MIME_TYPE_ICON: string = 'ft_ic_miscellaneous.svg';
|
||||
|
||||
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/vnd.openxmlformats-officedocument.spreadsheetml.sheet': 'ft_ic_ms_excel.svg',
|
||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.template': 'ft_ic_ms_excel.svg',
|
||||
'application/msword': 'ft_ic_ms_word.svg',
|
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.document': 'ft_ic_ms_word.svg',
|
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.template': 'ft_ic_ms_word.svg',
|
||||
'application/vnd.ms-powerpoint': 'ft_ic_ms_powerpoint.svg',
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.presentation': 'ft_ic_ms_powerpoint.svg',
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.template': 'ft_ic_ms_powerpoint.svg',
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.slideshow': 'ft_ic_ms_powerpoint.svg',
|
||||
'video/mp4': 'ft_ic_video.svg',
|
||||
'text/plain': 'ft_ic_document.svg',
|
||||
'application/x-javascript': 'ft_ic_document.svg',
|
||||
'application/json': 'ft_ic_document.svg',
|
||||
'image/svg+xml': 'ft_ic_vector_image.svg',
|
||||
'text/html': 'ft_ic_website.svg',
|
||||
'application/x-compressed': 'ft_ic_archive.svg',
|
||||
'application/x-zip-compressed': 'ft_ic_archive.svg',
|
||||
'application/zip': 'ft_ic_archive.svg',
|
||||
'application/vnd.apple.keynote': 'ft_ic_presentation.svg',
|
||||
'application/vnd.apple.pages': 'ft_ic_document.svg',
|
||||
'application/vnd.apple.numbers': 'ft_ic_spreadsheet.svg'
|
||||
};
|
||||
|
||||
constructor(private apiService: AlfrescoApiService,
|
||||
private logService: LogService) {
|
||||
@@ -129,11 +99,6 @@ export class ActivitiContentService {
|
||||
return Observable.throw(errMsg);
|
||||
}
|
||||
|
||||
getMimeTypeIcon(mimeType: string): string {
|
||||
let icon = this.mimeTypeIcons[mimeType];
|
||||
return icon || ActivitiContentService.DEFAULT_MIME_TYPE_ICON;
|
||||
}
|
||||
|
||||
createTaskRelatedContent(taskId: string, file: any, opts?: any) {
|
||||
return Observable.fromPromise(this.apiService.getInstance().activiti.contentApi.createRelatedContentOnTask(taskId, file, opts))
|
||||
.catch(err => this.handleError(err));
|
||||
|
@@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
import { Component, OnChanges, Input, SimpleChanges, Output, EventEmitter } from '@angular/core';
|
||||
import { AlfrescoTranslationService, ContentService } from 'ng2-alfresco-core';
|
||||
import { AlfrescoTranslationService, ContentService, ThumbnailService } from 'ng2-alfresco-core';
|
||||
import { ActivitiContentService } from 'ng2-activiti-form';
|
||||
|
||||
@Component({
|
||||
@@ -42,7 +42,8 @@ export class ActivitiProcessAttachmentListComponent implements OnChanges {
|
||||
|
||||
constructor(private translateService: AlfrescoTranslationService,
|
||||
private activitiContentService: ActivitiContentService,
|
||||
private contentService: ContentService) {
|
||||
private contentService: ContentService,
|
||||
private thumbnailService: ThumbnailService) {
|
||||
|
||||
if (translateService) {
|
||||
translateService.addTranslationFolder('ng2-activiti-processlist', 'assets/ng2-activiti-processlist');
|
||||
@@ -55,7 +56,7 @@ export class ActivitiProcessAttachmentListComponent implements OnChanges {
|
||||
}
|
||||
}
|
||||
|
||||
reset () {
|
||||
reset() {
|
||||
this.attachments = [];
|
||||
}
|
||||
|
||||
@@ -74,7 +75,7 @@ export class ActivitiProcessAttachmentListComponent implements OnChanges {
|
||||
name: content.name,
|
||||
created: content.created,
|
||||
createdBy: content.createdBy.firstName + ' ' + content.createdBy.lastName,
|
||||
icon: this.activitiContentService.getMimeTypeIcon(content.mimeType)
|
||||
icon: this.thumbnailService.getMimeTypeIcon(content.mimeType)
|
||||
});
|
||||
});
|
||||
this.success.emit(this.attachments);
|
||||
|
@@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
import { Component, OnChanges, Input, Output, EventEmitter, SimpleChanges } from '@angular/core';
|
||||
import { AlfrescoTranslationService, ContentService } from 'ng2-alfresco-core';
|
||||
import { AlfrescoTranslationService, ContentService, ThumbnailService } from 'ng2-alfresco-core';
|
||||
import { ActivitiContentService } from 'ng2-activiti-form';
|
||||
|
||||
@Component({
|
||||
@@ -42,7 +42,8 @@ export class TaskAttachmentListComponent implements OnChanges {
|
||||
|
||||
constructor(private translateService: AlfrescoTranslationService,
|
||||
private activitiContentService: ActivitiContentService,
|
||||
private contentService: ContentService) {
|
||||
private contentService: ContentService,
|
||||
private thumbnailService: ThumbnailService) {
|
||||
|
||||
if (translateService) {
|
||||
translateService.addTranslationFolder('ng2-activiti-tasklist', 'assets/ng2-activiti-tasklist');
|
||||
@@ -74,14 +75,15 @@ export class TaskAttachmentListComponent implements OnChanges {
|
||||
name: content.name,
|
||||
created: content.created,
|
||||
createdBy: content.createdBy.firstName + ' ' + content.createdBy.lastName,
|
||||
icon: this.activitiContentService.getMimeTypeIcon(content.mimeType)
|
||||
icon: this.thumbnailService.getMimeTypeIcon(content.mimeType)
|
||||
});
|
||||
});
|
||||
this.success.emit(this.attachments);
|
||||
},
|
||||
(err) => {
|
||||
this.error.emit(err);
|
||||
}); }
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
private deleteAttachmentById(contentId: string) {
|
||||
|
@@ -47,7 +47,9 @@ import {
|
||||
LogServiceMock,
|
||||
NotificationService,
|
||||
ContentService,
|
||||
AppConfigService, InitAppConfigServiceProvider
|
||||
AppConfigService,
|
||||
InitAppConfigServiceProvider,
|
||||
ThumbnailService
|
||||
} from './src/services/index';
|
||||
|
||||
import { FileSizePipe } from './src/pipes/file-size.pipe';
|
||||
|
@@ -0,0 +1,208 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="566px" height="165px" viewBox="0 0 566 165" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<!-- Generator: Sketch 3.8.3 (29802) - http://www.bohemiancoding.com/sketch -->
|
||||
<title>empty_doc_lib</title>
|
||||
<desc>Created with Sketch.</desc>
|
||||
<defs>
|
||||
<rect id="path-1" x="5.68434189e-14" y="-1.01962883e-12" width="78.1679389" height="78.1679389" rx="2"></rect>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-2">
|
||||
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.24 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
||||
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
||||
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<rect id="path-3" x="-4.54747351e-13" y="5.68434189e-13" width="78.1679389" height="78.1679389" rx="2"></rect>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-4">
|
||||
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.24 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
||||
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
||||
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<rect id="path-5" x="-1.08002496e-12" y="7.81597009e-14" width="78.1679389" height="78.1679389" rx="2"></rect>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-6">
|
||||
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.24 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
||||
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
||||
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<rect id="path-7" x="1.29318778e-12" y="9.23705556e-14" width="78.1679389" height="78.1679389" rx="2"></rect>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-8">
|
||||
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.24 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
||||
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
||||
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<rect id="path-9" x="-2.96651592e-13" y="-7.60280727e-13" width="78.1679389" height="78.1679389" rx="2"></rect>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-10">
|
||||
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.24 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
||||
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
||||
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<rect id="path-11" x="3.48165941e-13" y="2.27373675e-13" width="78.1679389" height="78.1679389" rx="2"></rect>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-12">
|
||||
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.24 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
||||
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
||||
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<rect id="path-13" x="0" y="-5.40012479e-13" width="78.1679389" height="78.1679389" rx="2"></rect>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-14">
|
||||
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.24 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
||||
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
||||
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
<rect id="path-15" x="0" y="0" width="78.1679389" height="78.1679389" rx="2"></rect>
|
||||
<filter x="-50%" y="-50%" width="200%" height="200%" filterUnits="objectBoundingBox" id="filter-16">
|
||||
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.24 0" type="matrix" in="shadowBlurOuter1" result="shadowMatrixOuter1"></feColorMatrix>
|
||||
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetOuter2"></feOffset>
|
||||
<feGaussianBlur stdDeviation="1" in="shadowOffsetOuter2" result="shadowBlurOuter2"></feGaussianBlur>
|
||||
<feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" type="matrix" in="shadowBlurOuter2" result="shadowMatrixOuter2"></feColorMatrix>
|
||||
<feMerge>
|
||||
<feMergeNode in="shadowMatrixOuter1"></feMergeNode>
|
||||
<feMergeNode in="shadowMatrixOuter2"></feMergeNode>
|
||||
</feMerge>
|
||||
</filter>
|
||||
</defs>
|
||||
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<g id="empty-folder-state-desktop" transform="translate(-37.000000, -168.000000)">
|
||||
<g id="empty_doc_lib" transform="translate(38.000000, 169.000000)">
|
||||
<g id="Group-5" transform="translate(241.569490, 92.634375) rotate(-355.000000) translate(-241.569490, -92.634375) translate(202.069490, 53.134375)">
|
||||
<g id="Rectangle-1196-Copy-2">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
|
||||
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-1"></use>
|
||||
</g>
|
||||
<g id="filetype_video" transform="translate(9.770992, 9.770992)">
|
||||
<polygon id="Fill-1" points="0 58.6259542 58.6259542 58.6259542 58.6259542 0 0 0"></polygon>
|
||||
<path d="M39.0839695,21.9847328 L43.9694656,21.9847328 L43.9694656,17.0992366 L39.0839695,17.0992366 L39.0839695,21.9847328 Z M39.0839695,31.7557252 L43.9694656,31.7557252 L43.9694656,26.870229 L39.0839695,26.870229 L39.0839695,31.7557252 Z M39.0839695,41.5267176 L43.9694656,41.5267176 L43.9694656,36.6412214 L39.0839695,36.6412214 L39.0839695,41.5267176 Z M14.6564885,21.9847328 L19.5419847,21.9847328 L19.5419847,17.0992366 L14.6564885,17.0992366 L14.6564885,21.9847328 Z M14.6564885,31.7557252 L19.5419847,31.7557252 L19.5419847,26.870229 L14.6564885,26.870229 L14.6564885,31.7557252 Z M14.6564885,41.5267176 L19.5419847,41.5267176 L19.5419847,36.6412214 L14.6564885,36.6412214 L14.6564885,41.5267176 Z M43.9694656,7.32824427 L43.9694656,12.2137405 L39.0839695,12.2137405 L39.0839695,7.32824427 L19.5419847,7.32824427 L19.5419847,12.2137405 L14.6564885,12.2137405 L14.6564885,7.32824427 L9.77099237,7.32824427 L9.77099237,51.2977099 L14.6564885,51.2977099 L14.6564885,46.4122137 L19.5419847,46.4122137 L19.5419847,51.2977099 L39.0839695,51.2977099 L39.0839695,46.4122137 L43.9694656,46.4122137 L43.9694656,51.2977099 L48.8549618,51.2977099 L48.8549618,7.32824427 L43.9694656,7.32824427 Z" id="Fill-2" fill="#FFC107"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-7" transform="translate(515.948329, 81.354522) rotate(-345.000000) translate(-515.948329, -81.354522) translate(476.448329, 41.854522)">
|
||||
<g id="Rectangle-1196-Copy-3">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-4)" xlink:href="#path-3"></use>
|
||||
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-3"></use>
|
||||
</g>
|
||||
<g id="filetype_image" transform="translate(9.770992, 9.770992)">
|
||||
<polygon id="Fill-1" points="0 58.6259542 58.6259542 58.6259542 58.6259542 0 0 0"></polygon>
|
||||
<path d="M20.7636031,32.9773435 L26.8704733,40.3178015 L35.4200916,29.3132214 L46.412458,43.9697099 L12.2139847,43.9697099 L20.7636031,32.9773435 Z M51.2979542,46.412458 L51.2979542,12.2139847 C51.2979542,9.51474809 49.1116947,7.32848855 46.412458,7.32848855 L12.2139847,7.32848855 C9.51474809,7.32848855 7.32848855,9.51474809 7.32848855,12.2139847 L7.32848855,46.412458 C7.32848855,49.1116947 9.51474809,51.2979542 12.2139847,51.2979542 L46.412458,51.2979542 C49.1116947,51.2979542 51.2979542,49.1116947 51.2979542,46.412458 L51.2979542,46.412458 Z" id="Fill-2" fill="#22BE73"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-8" transform="translate(309.051884, 62.261808) rotate(-5.000000) translate(-309.051884, -62.261808) translate(269.551884, 22.761808)">
|
||||
<g id="Rectangle-1196-Copy-4">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-6)" xlink:href="#path-5"></use>
|
||||
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-5"></use>
|
||||
</g>
|
||||
<g id="filetype_googledocs" transform="translate(9.770992, 9.770992)">
|
||||
<polygon id="Fill-1" points="6.82121026e-13 58.6259542 58.6259542 58.6259542 58.6259542 -2.98427949e-13 6.82121026e-13 -2.98427949e-13"></polygon>
|
||||
<g id="Group-6" transform="translate(9.770992, 4.885496)">
|
||||
<path d="M7.32824427,21.9847328 L31.7557252,21.9847328 L31.7557252,19.5419847 L7.32824427,19.5419847 L7.32824427,21.9847328 Z M7.32824427,26.870229 L31.7557252,26.870229 L31.7557252,24.4274809 L7.32824427,24.4274809 L7.32824427,26.870229 Z M7.32824427,31.7557252 L31.7557252,31.7557252 L31.7557252,29.3129771 L7.32824427,29.3129771 L7.32824427,31.7557252 Z M7.32824427,36.6412214 L21.9847328,36.6412214 L21.9847328,34.1984733 L7.32824427,34.1984733 L7.32824427,36.6412214 Z M29.3129771,0 L4.88549618,0 C2.18625954,0 0.0244274809,2.18625954 0.0244274809,4.88549618 L0,43.9694656 C0,46.6687023 2.16183206,48.8549618 4.8610687,48.8549618 L34.1984733,48.8549618 C36.8977099,48.8549618 39.0839695,46.6687023 39.0839695,43.9694656 L39.0839695,9.77099237 L29.3129771,0 Z" id="Fill-2" fill="#2979FF"></path>
|
||||
<polygon id="Fill-4" fill-opacity="0.5" fill="#FFFFFF" points="29.3129771 9.77099237 29.3129771 -2.84217094e-14 39.0839695 9.77099237"></polygon>
|
||||
<polygon id="Fill-5" fill-opacity="0.2" fill="#000000" points="39.0839695 9.77099237 39.0839695 19.5419847 29.3129771 9.77099237"></polygon>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-9" transform="translate(155.408682, 49.364493) rotate(-345.000000) translate(-155.408682, -49.364493) translate(115.908682, 9.864493)">
|
||||
<g id="Rectangle-1196-Copy-5">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-8)" xlink:href="#path-7"></use>
|
||||
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-7"></use>
|
||||
</g>
|
||||
<g id="filetype_pdf" transform="translate(9.770992, 9.770992)">
|
||||
<polygon id="Fill-1" points="0 58.6259542 58.6259542 58.6259542 58.6259542 0 0 0"></polygon>
|
||||
<path d="M45.1888855,25.5877863 L45.1888855,21.9187786 L37.853313,21.9187786 L37.853313,36.5923664 L41.5198779,36.5923664 L41.5198779,31.7777099 L45.1888855,31.7777099 L45.1888855,28.1087023 L41.5198779,28.1087023 L41.5198779,25.5877863 L45.1888855,25.5877863 Z M29.3696489,32.9233588 L31.7757557,32.9233588 L31.7757557,25.5877863 L29.3696489,25.5877863 L29.3696489,32.9233588 Z M35.4447634,32.9233588 L35.4447634,25.5877863 C35.4447634,24.5960305 35.1027786,23.7361832 34.4139237,23.0082443 C33.7275115,22.2827481 32.8481221,21.9187786 31.7781985,21.9187786 L25.703084,21.9187786 L25.703084,36.5923664 L31.7781985,36.5923664 C32.8481221,36.5923664 33.7275115,36.2308397 34.4139237,35.5029008 C35.1027786,34.7774046 35.4447634,33.9175573 35.4447634,32.9233588 L35.4447634,32.9233588 Z M17.1070534,28.1087023 L19.5131603,28.1087023 L19.5131603,25.5877863 L17.1070534,25.5877863 L17.1070534,28.1087023 Z M23.1821679,28.1087023 L23.1821679,25.5877863 C23.1821679,24.5960305 22.8181985,23.7361832 22.0927023,23.0082443 C21.3672061,22.2827481 20.5073588,21.9187786 19.5131603,21.9187786 L13.4380458,21.9187786 L13.4380458,36.5923664 L17.1070534,36.5923664 L17.1070534,31.7777099 L19.5131603,31.7777099 C20.5073588,31.7777099 21.3672061,31.4161832 22.0927023,30.6882443 C22.8181985,29.9627481 23.1821679,29.1029008 23.1821679,28.1087023 L23.1821679,28.1087023 Z M46.483542,7.32824427 C47.783084,7.32824427 48.9091908,7.8070229 49.8643053,8.7621374 C50.8218626,9.71725191 51.2981985,10.8433588 51.2981985,12.1429008 L51.2981985,46.3682443 C51.2981985,47.670229 50.8218626,48.8158779 49.8643053,49.8076336 C48.9091908,50.8018321 47.783084,51.2977099 46.483542,51.2977099 L12.2581985,51.2977099 C10.9586565,51.2977099 9.81300763,50.8018321 8.81880916,49.8076336 C7.82461069,48.8158779 7.32873282,47.670229 7.32873282,46.3682443 L7.32873282,12.1429008 C7.32873282,10.8433588 7.82461069,9.71725191 8.81880916,8.7621374 C9.81300763,7.8070229 10.9586565,7.32824427 12.2581985,7.32824427 L46.483542,7.32824427 Z" id="Fill-2" fill="#E91E63"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-12" transform="translate(49.364493, 62.584254) rotate(-15.000000) translate(-49.364493, -62.584254) translate(9.864493, 23.084254)">
|
||||
<g id="Rectangle-1196-Copy-7">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-10)" xlink:href="#path-9"></use>
|
||||
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-9"></use>
|
||||
</g>
|
||||
<g id="filetype_forms" transform="translate(9.770992, 9.770992)">
|
||||
<polygon id="Fill-1" points="0 58.6259542 58.6259542 58.6259542 58.6259542 0 0 0"></polygon>
|
||||
<path d="M24.4274809,24.4250382 L41.5267176,24.4250382 L41.5267176,19.539542 L24.4274809,19.539542 L24.4274809,24.4250382 Z M24.4274809,31.7532824 L41.5267176,31.7532824 L41.5267176,26.8677863 L24.4274809,26.8677863 L24.4274809,31.7532824 Z M24.4274809,39.0839695 L41.5267176,39.0839695 L41.5267176,34.1984733 L24.4274809,34.1984733 L24.4274809,39.0839695 Z M17.0992366,24.4250382 L21.9847328,24.4250382 L21.9847328,19.539542 L17.0992366,19.539542 L17.0992366,24.4250382 Z M17.0992366,31.7532824 L21.9847328,31.7532824 L21.9847328,26.8677863 L17.0992366,26.8677863 L17.0992366,31.7532824 Z M17.0992366,39.0839695 L21.9847328,39.0839695 L21.9847328,34.1984733 L17.0992366,34.1984733 L17.0992366,39.0839695 Z M43.9694656,9.77099237 L14.6564885,9.77099237 C11.9694656,9.77099237 9.77099237,11.9694656 9.77099237,14.6564885 L9.77099237,43.9694656 C9.77099237,46.6564885 11.9694656,48.8549618 14.6564885,48.8549618 L43.9694656,48.8549618 C46.6564885,48.8549618 48.8549618,46.6564885 48.8549618,43.9694656 L48.8549618,14.6564885 C48.8549618,11.9694656 46.6564885,9.77099237 43.9694656,9.77099237 L43.9694656,9.77099237 Z" id="Fill-2" fill="#651FFF"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-11" transform="translate(107.814782, 114.998541) rotate(-10.000000) translate(-107.814782, -114.998541) translate(68.314782, 75.498541)">
|
||||
<g id="Rectangle-1196-Copy-6">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-12)" xlink:href="#path-11"></use>
|
||||
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-11"></use>
|
||||
</g>
|
||||
<g id="filetype_excel" transform="translate(9.770992, 9.770992)">
|
||||
<polygon id="Fill-1" points="-5.68434189e-14 58.6259542 58.6259542 58.6259542 58.6259542 -1.56319402e-13 -5.68434189e-14 -1.56319402e-13"></polygon>
|
||||
<g id="Group-10" transform="translate(4.885496, 4.885496)" fill="#22BE73">
|
||||
<path d="M47.1621374,41.632 L28.848855,41.632 L28.848855,38.3025344 L33.2873282,38.3025344 L33.2873282,34.4161221 L28.848855,34.4161221 L28.848855,32.1981069 L33.2873282,32.1981069 L33.2873282,28.3116947 L28.848855,28.3116947 L28.848855,26.0936794 L33.2873282,26.0936794 L33.2873282,22.2072672 L28.848855,22.2072672 L28.848855,19.9868092 L33.2873282,19.9868092 L33.2873282,16.1028397 L28.848855,16.1028397 L28.848855,13.8823817 L33.2873282,13.8823817 L33.2873282,9.99841221 L28.848855,9.99841221 L28.848855,6.66894656 L47.1621374,6.66894656 L47.1621374,41.632 L47.1621374,41.632 Z M16.3444275,33.1141374 C15.4015267,30.7984122 14.2509924,28.5632977 13.5743511,26.1425344 C12.819542,28.3947481 11.7422901,30.5223817 10.8775573,32.730626 C9.6610687,32.7135267 8.4470229,32.6646718 7.23053435,32.613374 C8.65709924,29.821313 10.0348092,27.0072672 11.5053435,24.2323053 C10.2546565,21.3742901 8.88427481,18.572458 7.59694656,15.731542 C8.81832061,15.6582595 10.0396947,15.5874198 11.2610687,15.5190229 C12.0867176,17.690626 12.9929771,19.832916 13.6745038,22.0582595 C14.4073282,19.6985649 15.5016794,17.4781069 16.4372519,15.1990229 C17.6928244,15.1086412 18.9532824,15.032916 20.2112977,14.9718473 C18.7309924,18.0057405 17.2433588,21.0420763 15.7337405,24.0661985 C17.260458,27.1758168 18.8189313,30.2610076 20.3505344,33.3681832 C19.0143511,33.2900153 17.6806107,33.2069618 16.3444275,33.1141374 L16.3444275,33.1141374 Z M48.8329771,37.2203969 C48.8280916,27.591084 48.8158779,17.961771 48.8427481,8.32757252 C48.8036641,7.38467176 48.8720611,6.34161832 48.300458,5.51841221 C47.4845802,4.9590229 46.4512977,5.0249771 45.5132824,4.98589313 C39.9584733,5.01520611 34.4036641,5.00299237 28.848855,5.00299237 L28.848855,0.564519084 L25.551145,0.564519084 C17.0381679,2.06680916 8.5178626,3.52757252 4.68958206e-13,5.00787786 L4.68958206e-13,43.852458 C8.46900763,45.3327634 16.9429008,46.7544427 25.4021374,48.2909313 L28.848855,48.2909313 L28.848855,43.2979542 C34.6039695,43.2857405 40.359084,43.3126107 46.1068702,43.2979542 C47.0351145,43.2588702 48.4225954,43.2295573 48.6448855,42.0765802 C48.9819847,40.4839084 48.8036641,38.8350534 48.8329771,37.2203969 L48.8329771,37.2203969 Z" id="Fill-2"></path>
|
||||
<path d="M35.5077863,13.8821374 L43.2781679,13.8821374 L43.2781679,9.99816794 L35.5077863,9.99816794 L35.5077863,13.8821374 Z M35.5077863,19.9865649 L43.2781679,19.9865649 L43.2781679,16.1025954 L35.5077863,16.1025954 L35.5077863,19.9865649 Z M35.5077863,26.0909924 L43.2781679,26.0909924 L43.2781679,22.2070229 L35.5077863,22.2070229 L35.5077863,26.0909924 Z M35.5077863,32.1954198 L43.2781679,32.1954198 L43.2781679,28.3114504 L35.5077863,28.3114504 L35.5077863,32.1954198 Z M35.5077863,38.3022901 L43.2781679,38.3022901 L43.2781679,34.4183206 L35.5077863,34.4183206 L35.5077863,38.3022901 Z" id="Combined-Shape"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-4" transform="translate(388.820630, 86.064353) rotate(-350.000000) translate(-388.820630, -86.064353) translate(349.320630, 46.564353)">
|
||||
<g id="Rectangle-1196-Copy">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-14)" xlink:href="#path-13"></use>
|
||||
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-13"></use>
|
||||
</g>
|
||||
<g id="filetype_audio" transform="translate(9.770992, 9.770992)">
|
||||
<polygon id="Fill-1" points="-1.13686838e-13 58.6259542 58.6259542 58.6259542 58.6259542 -6.39488462e-14 -1.13686838e-13 -6.39488462e-14"></polygon>
|
||||
<path d="M29.3129771,7.32824427 L43.9694656,7.32824427 L43.9694656,17.0601527 L34.2375573,17.0601527 L34.2375573,41.5658015 C34.2375573,44.2381679 33.2629008,46.5270229 31.3160305,48.4348092 C29.3691603,50.3450382 27.0607634,51.2977099 24.3883969,51.2977099 C21.7160305,51.2977099 19.4271756,50.3450382 17.5193893,48.4348092 C15.6091603,46.5270229 14.6564885,44.2381679 14.6564885,41.5658015 C14.6564885,38.8934351 15.6091603,36.5850382 17.5193893,34.6381679 C19.4271756,32.6912977 21.7160305,31.7166412 24.3883969,31.7166412 C25.9932824,31.7166412 27.6323664,32.1758779 29.3129771,33.0919084 L29.3129771,7.32824427 Z" id="Fill-2" fill="#E91E63"></path>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-2" transform="translate(411.603053, 1.221374)">
|
||||
<g id="Group-3">
|
||||
<g id="Rectangle-1196">
|
||||
<use fill="black" fill-opacity="1" filter="url(#filter-16)" xlink:href="#path-15"></use>
|
||||
<use fill="#FFFFFF" fill-rule="evenodd" xlink:href="#path-15"></use>
|
||||
</g>
|
||||
<polygon id="Fill-1" points="9.77099237 68.3969466 68.3969466 68.3969466 68.3969466 9.77099237 9.77099237 9.77099237"></polygon>
|
||||
</g>
|
||||
<g id="filetype_book" transform="translate(9.770992, 9.770992)">
|
||||
<polygon id="Fill-1" points="0 58.6259542 58.6259542 58.6259542 58.6259542 0 0 0"></polygon>
|
||||
<path d="M14.6564885,9.77099237 L26.870229,9.77099237 L26.870229,29.3129771 L20.7633588,25.648855 L14.6564885,29.3129771 L14.6564885,9.77099237 Z M43.9694656,4.88549618 L14.6564885,4.88549618 C11.9572519,4.88549618 9.77099237,7.07175573 9.77099237,9.77099237 L9.77099237,48.8549618 C9.77099237,51.5541985 11.9572519,53.740458 14.6564885,53.740458 L43.9694656,53.740458 C46.6687023,53.740458 48.8549618,51.5541985 48.8549618,48.8549618 L48.8549618,9.77099237 C48.8549618,7.07175573 46.6687023,4.88549618 43.9694656,4.88549618 L43.9694656,4.88549618 Z" id="Fill-2" fill="#FF6D40"></path>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 8.0 KiB |
Before Width: | Height: | Size: 7.3 KiB After Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 6.9 KiB After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
@@ -31,3 +31,4 @@ export * from './alfresco-authentication.service';
|
||||
export * from './alfresco-translation.service';
|
||||
export * from './alfresco-translate-loader.service';
|
||||
export * from './app-config.service';
|
||||
export * from './thumbnail.service';
|
||||
|
@@ -0,0 +1,80 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { TestBed, async } from '@angular/core/testing';
|
||||
import { HttpModule } from '@angular/http';
|
||||
import { ThumbnailService } from './thumbnail.service';
|
||||
import { AlfrescoContentService } from './alfresco-content.service';
|
||||
import { AlfrescoAuthenticationService } from './alfresco-authentication.service';
|
||||
import { AlfrescoSettingsService } from './alfresco-settings.service';
|
||||
import { AppConfigService } from './app-config.service';
|
||||
import { LogService } from './log.service';
|
||||
import { AlfrescoApiService } from './alfresco-api.service';
|
||||
import { StorageService } from './storage.service';
|
||||
import { CookieService } from './cookie.service';
|
||||
import { CookieServiceMock } from './../assets/cookie.service.mock';
|
||||
|
||||
describe('ThumbnailService', () => {
|
||||
|
||||
let service: ThumbnailService;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [
|
||||
HttpModule
|
||||
],
|
||||
providers: [
|
||||
AlfrescoAuthenticationService,
|
||||
AlfrescoContentService,
|
||||
AlfrescoSettingsService,
|
||||
AppConfigService,
|
||||
{ provide: CookieService, useClass: CookieServiceMock },
|
||||
ThumbnailService,
|
||||
AlfrescoApiService,
|
||||
AlfrescoSettingsService,
|
||||
StorageService,
|
||||
LogService
|
||||
]
|
||||
}).compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
service = TestBed.get(ThumbnailService);
|
||||
});
|
||||
|
||||
it('should return the correct icon for a plain text file', () => {
|
||||
expect(service.getMimeTypeIcon('text/plain')).toContain('ft_ic_document');
|
||||
});
|
||||
|
||||
it('should return the correct icon for a PNG file', () => {
|
||||
expect(service.getMimeTypeIcon('image/png')).toContain('ft_ic_raster_image');
|
||||
});
|
||||
|
||||
it('should return the correct icon for a MP4 video file', () => {
|
||||
expect(service.getMimeTypeIcon('video/mp4')).toContain('ft_ic_video');
|
||||
});
|
||||
|
||||
it('should return a generic icon for an unknown file', () => {
|
||||
expect(service.getMimeTypeIcon('x-unknown/yyy')).toContain('ft_ic_miscellaneous');
|
||||
});
|
||||
|
||||
it('should return the thumbnail URL for a content item', () => {
|
||||
spyOn(service.contentService, 'getDocumentThumbnailUrl').and.returnValue('/fake-thumbnail.png');
|
||||
expect(service.getDocumentThumbnailUrl({})).toContain('/fake-thumbnail.png');
|
||||
});
|
||||
|
||||
});
|
@@ -0,0 +1,86 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
import { AlfrescoContentService } from './alfresco-content.service';
|
||||
|
||||
@Injectable()
|
||||
export class ThumbnailService {
|
||||
|
||||
DEFAULT_ICON: string = require('../assets/images/ft_ic_miscellaneous.svg');
|
||||
|
||||
mimeTypeIcons: any = {
|
||||
'image/png': require('../assets/images/ft_ic_raster_image.svg'),
|
||||
'image/jpeg': require('../assets/images/ft_ic_raster_image.svg'),
|
||||
'image/gif': require('../assets/images/ft_ic_raster_image.svg'),
|
||||
'application/pdf': require('../assets/images/ft_ic_pdf.svg'),
|
||||
'application/vnd.ms-excel': require('../assets/images/ft_ic_ms_excel.svg'),
|
||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': require('../assets/images/ft_ic_ms_excel.svg'),
|
||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.template': require('../assets/images/ft_ic_ms_excel.svg'),
|
||||
'application/msword': require('../assets/images/ft_ic_ms_word.svg'),
|
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.document': require('../assets/images/ft_ic_ms_word.svg'),
|
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.template': require('../assets/images/ft_ic_ms_word.svg'),
|
||||
'application/vnd.ms-powerpoint': require('../assets/images/ft_ic_ms_powerpoint.svg'),
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.presentation': require('../assets/images/ft_ic_ms_powerpoint.svg'),
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.template': require('../assets/images/ft_ic_ms_powerpoint.svg'),
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.slideshow': require('../assets/images/ft_ic_ms_powerpoint.svg'),
|
||||
'video/mp4': require('../assets/images/ft_ic_video.svg'),
|
||||
'text/plain': require('../assets/images/ft_ic_document.svg'),
|
||||
'application/x-javascript': require('../assets/images/ft_ic_document.svg'),
|
||||
'application/json': require('../assets/images/ft_ic_document.svg'),
|
||||
'image/svg+xml': require('../assets/images/ft_ic_vector_image.svg'),
|
||||
'text/html': require('../assets/images/ft_ic_website.svg'),
|
||||
'application/x-compressed': require('../assets/images/ft_ic_archive.svg'),
|
||||
'application/x-zip-compressed': require('../assets/images/ft_ic_archive.svg'),
|
||||
'application/zip': require('../assets/images/ft_ic_archive.svg'),
|
||||
'application/vnd.apple.keynote': require('../assets/images/ft_ic_presentation.svg'),
|
||||
'application/vnd.apple.pages': require('../assets/images/ft_ic_document.svg'),
|
||||
'application/vnd.apple.numbers': require('../assets/images/ft_ic_spreadsheet.svg'),
|
||||
'folder': require('../assets/images/ft_ic_folder.svg')
|
||||
};
|
||||
|
||||
constructor(public contentService: AlfrescoContentService) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get thumbnail URL for the given document node.
|
||||
* @param document Node to get URL for.
|
||||
* @returns {string} URL address.
|
||||
*/
|
||||
public getDocumentThumbnailUrl(document: any): string {
|
||||
let thumbnail = this.contentService.getDocumentThumbnailUrl(document);
|
||||
return thumbnail || this.DEFAULT_ICON;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get mimeType SVG
|
||||
* @param mimeType
|
||||
* @returns {string} URL SVG address.
|
||||
*/
|
||||
public getMimeTypeIcon(mimeType: string): string {
|
||||
let icon = this.mimeTypeIcons[mimeType];
|
||||
return (icon || this.DEFAULT_ICON);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get default SVG
|
||||
* @returns {string} URL SVG default.
|
||||
*/
|
||||
public getDefaultMimeTypeIcon(): string {
|
||||
return this.DEFAULT_ICON;
|
||||
}
|
||||
}
|
@@ -28,33 +28,6 @@ export class ObjectDataTableAdapter implements DataTableAdapter {
|
||||
private _sorting: DataSorting;
|
||||
private _rows: DataRow[];
|
||||
private _columns: DataColumn[];
|
||||
private icons: string[] = [
|
||||
'empty_doc_lib.svg',
|
||||
'ft_ic_archive.svg',
|
||||
'ft_ic_audio.svg',
|
||||
'ft_ic_database.svg',
|
||||
'ft_ic_document.svg',
|
||||
'ft_ic_ebook.svg',
|
||||
'ft_ic_folder.svg',
|
||||
'ft_ic_folder_empty.svg',
|
||||
'ft_ic_form.svg',
|
||||
'ft_ic_google_docs.svg',
|
||||
'ft_ic_google_drawings.svg',
|
||||
'ft_ic_google_forms.svg',
|
||||
'ft_ic_google_sheets.svg',
|
||||
'ft_ic_google_slides.svg',
|
||||
'ft_ic_miscellaneous.svg',
|
||||
'ft_ic_ms_excel.svg',
|
||||
'ft_ic_ms_powerpoint.svg',
|
||||
'ft_ic_ms_word.svg',
|
||||
'ft_ic_pdf.svg',
|
||||
'ft_ic_presentation.svg',
|
||||
'ft_ic_raster_image.svg',
|
||||
'ft_ic_spreadsheet.svg',
|
||||
'ft_ic_vector_image.svg',
|
||||
'ft_ic_video.svg',
|
||||
'ft_ic_website.svg'
|
||||
];
|
||||
|
||||
selectedRow: DataRow;
|
||||
|
||||
@@ -142,20 +115,13 @@ export class ObjectDataTableAdapter implements DataTableAdapter {
|
||||
}
|
||||
|
||||
if (col.type === 'icon') {
|
||||
const iconName = row.getValue(col.key);
|
||||
if (this.icons.indexOf(iconName) > -1) {
|
||||
return this.getImagePath(iconName);
|
||||
}
|
||||
return this.getImagePath('ft_ic_miscellaneous.svg');
|
||||
const icon = row.getValue(col.key);
|
||||
return icon;
|
||||
}
|
||||
|
||||
return value;
|
||||
}
|
||||
|
||||
getImagePath(id: string): any {
|
||||
return require('./../assets/images/' + id);
|
||||
}
|
||||
|
||||
getSorting(): DataSorting {
|
||||
return this._sorting;
|
||||
}
|
||||
|
@@ -91,7 +91,6 @@ The properties currentFolderId, folderNode and node are the entry initialization
|
||||
| navigate | boolean | true | Toggles navigation to folder content or file preview |
|
||||
| navigationMode | string (click,dblclick) | dblclick | User interaction for folder navigation or file preview |
|
||||
| thumbnails | boolean | false | Show document thumbnails rather than icons |
|
||||
| fallbackThumbnail | string | | Path to fallback image to use if the row thumbnail is missing |
|
||||
| multiselect | boolean | false | Toggles multiselect mode |
|
||||
| contentActions | boolean | false | Toggles content actions for each row |
|
||||
| contentActionsPosition | string (left\|right) | right | Position of the content actions dropdown menu. |
|
||||
|
@@ -25,6 +25,7 @@ import {
|
||||
AlfrescoContentService,
|
||||
AlfrescoApiService,
|
||||
LogService
|
||||
ThumbnailService
|
||||
} from 'ng2-alfresco-core';
|
||||
|
||||
export class DocumentListServiceMock extends DocumentListService {
|
||||
@@ -38,9 +39,10 @@ export class DocumentListServiceMock extends DocumentListService {
|
||||
authService?: AlfrescoAuthenticationService,
|
||||
contentService?: AlfrescoContentService,
|
||||
apiService?: AlfrescoApiService,
|
||||
logService?: LogService
|
||||
logService?: LogService,
|
||||
thumbnailService?: ThumbnailService
|
||||
) {
|
||||
super(authService, contentService, apiService, logService);
|
||||
super(authService, contentService, apiService, logService, thumbnailService);
|
||||
}
|
||||
|
||||
getFolder(folder: string) {
|
||||
|
@@ -1,144 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.6 KiB |
@@ -1,143 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,142 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,143 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,143 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,142 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,143 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,143 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.6 KiB |
@@ -1,147 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.6 KiB |
@@ -1,147 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.7 KiB |
@@ -1,147 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.7 KiB |
@@ -1,148 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.7 KiB |
@@ -1,146 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.6 KiB |
@@ -1,142 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,157 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 8.0 KiB |
@@ -1,152 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 7.3 KiB |
@@ -1,151 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 7.4 KiB |
@@ -1,144 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.9 KiB |
@@ -1,142 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,143 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -1,151 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.8 KiB |
@@ -1,144 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.6 KiB |
@@ -1,144 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.6 KiB |
@@ -1,142 +0,0 @@
|
||||
<?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>
|
Before Width: | Height: | Size: 6.5 KiB |
@@ -51,9 +51,6 @@ export class DocumentListComponent implements OnInit, OnChanges, AfterContentIni
|
||||
|
||||
@ContentChild(DataColumnListComponent) columnList: DataColumnListComponent;
|
||||
|
||||
@Input()
|
||||
fallbackThumbnail: string = require('../assets/images/ft_ic_miscellaneous.svg');
|
||||
|
||||
@Input()
|
||||
navigate: boolean = true;
|
||||
|
||||
|
@@ -15,43 +15,56 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { TestBed, async } from '@angular/core/testing';
|
||||
import { DataColumn, DataRow, DataSorting } from 'ng2-alfresco-datatable';
|
||||
import { DocumentListServiceMock } from './../assets/document-list.service.mock';
|
||||
import { DocumentListService } from './../services/document-list.service';
|
||||
import { ShareDataTableAdapter, ShareDataRow } from './share-datatable-adapter';
|
||||
import { FileNode, FolderNode/*, PageNode*/ } from './../assets/document-library.model.mock';
|
||||
import { FileNode, FolderNode } from './../assets/document-library.model.mock';
|
||||
import { CoreModule } from 'ng2-alfresco-core';
|
||||
|
||||
describe('ShareDataTableAdapter', () => {
|
||||
|
||||
let documentListService: DocumentListServiceMock;
|
||||
let documentListService: DocumentListService;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [
|
||||
CoreModule.forRoot()
|
||||
],
|
||||
providers: [
|
||||
DocumentListService
|
||||
]
|
||||
}).compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
documentListService = new DocumentListServiceMock();
|
||||
documentListService = TestBed.get(DocumentListService);
|
||||
});
|
||||
|
||||
it('should setup rows and columns with constructor', () => {
|
||||
let schema = [<DataColumn> {}];
|
||||
let adapter = new ShareDataTableAdapter(null, schema);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, schema);
|
||||
|
||||
expect(adapter.getRows()).toEqual([]);
|
||||
expect(adapter.getColumns()).toEqual(schema);
|
||||
});
|
||||
|
||||
it('should setup columns when constructor is missing schema', () => {
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
expect(adapter.getColumns()).toEqual([]);
|
||||
});
|
||||
|
||||
it('should set new columns', () => {
|
||||
let columns = [<DataColumn> {}, <DataColumn> {}];
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
adapter.setColumns(columns);
|
||||
expect(adapter.getColumns()).toEqual(columns);
|
||||
});
|
||||
|
||||
it('should reset columns', () => {
|
||||
let columns = [<DataColumn> {}, <DataColumn> {}];
|
||||
let adapter = new ShareDataTableAdapter(null, columns);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, columns);
|
||||
|
||||
expect(adapter.getColumns()).toEqual(columns);
|
||||
adapter.setColumns(null);
|
||||
@@ -60,7 +73,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
|
||||
it('should set new rows', () => {
|
||||
let rows = [<DataRow> {}, <DataRow> {}];
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
expect(adapter.getRows()).toEqual([]);
|
||||
adapter.setRows(rows);
|
||||
@@ -69,7 +82,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
|
||||
it('should reset rows', () => {
|
||||
let rows = [<DataRow> {}, <DataRow> {}];
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
adapter.setRows(rows);
|
||||
expect(adapter.getRows()).toEqual(rows);
|
||||
@@ -79,7 +92,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
});
|
||||
|
||||
it('should sort new rows', () => {
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
spyOn(adapter, 'sort').and.callThrough();
|
||||
|
||||
let rows = [<DataRow> {}];
|
||||
@@ -89,48 +102,21 @@ describe('ShareDataTableAdapter', () => {
|
||||
});
|
||||
|
||||
it('should fail when getting value for missing row', () => {
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let check = () => { return adapter.getValue(null, <DataColumn>{}); };
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
let check = () => {
|
||||
return adapter.getValue(null, <DataColumn>{});
|
||||
};
|
||||
expect(check).toThrowError(adapter.ERR_ROW_NOT_FOUND);
|
||||
});
|
||||
|
||||
it('should fail when getting value for missing column', () => {
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let check = () => { return adapter.getValue(<DataRow>{}, null); };
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
let check = () => {
|
||||
return adapter.getValue(<DataRow>{}, null);
|
||||
};
|
||||
expect(check).toThrowError(adapter.ERR_COL_NOT_FOUND);
|
||||
});
|
||||
|
||||
/*
|
||||
it('should require path to load data', () => {
|
||||
spyOn(documentListService, 'getFolder').and.callThrough();
|
||||
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
adapter.loadPath(null);
|
||||
|
||||
expect(documentListService.getFolder).not.toHaveBeenCalled();
|
||||
});
|
||||
*/
|
||||
|
||||
/*
|
||||
it('should load data for path', () => {
|
||||
let folder = new FolderNode();
|
||||
let path = '/some/path';
|
||||
let page = new PageNode([folder]);
|
||||
|
||||
spyOn(documentListService, 'getFolder').and.callThrough();
|
||||
documentListService.getFolderResult = page;
|
||||
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
adapter.loadPath(path);
|
||||
|
||||
expect(documentListService.getFolder).toHaveBeenCalledWith(path, jasmine.anything());
|
||||
|
||||
let rows = adapter.getRows();
|
||||
expect(rows.length).toBe(1);
|
||||
expect((<ShareDataRow>rows[0]).node).toBe(folder);
|
||||
});
|
||||
*/
|
||||
|
||||
it('should covert cell value to formatted date', () => {
|
||||
let rawValue = new Date(2015, 6, 15, 21, 43, 11); // Wed Jul 15 2015 21:43:11 GMT+0100 (BST);
|
||||
let dateValue = 'Jul 15, 2015, 9:43:11 PM';
|
||||
@@ -145,7 +131,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
};
|
||||
|
||||
let row = new ShareDataRow(file);
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toBe(dateValue);
|
||||
@@ -165,7 +151,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
};
|
||||
|
||||
let row = new ShareDataRow(file);
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toBe(dateValue);
|
||||
@@ -183,7 +169,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
};
|
||||
|
||||
let row = new ShareDataRow(file);
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toBe(rawValue);
|
||||
@@ -201,7 +187,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
};
|
||||
|
||||
let row = new ShareDataRow(file);
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
spyOn(console, 'error').and.stub();
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
@@ -209,18 +195,6 @@ describe('ShareDataTableAdapter', () => {
|
||||
expect(console.error).toHaveBeenCalled();
|
||||
});
|
||||
|
||||
it('should generate fallback icon for a file thumbnail with unknown mime type', () => {
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
let file = new FileNode('file', 'wrong-mime');
|
||||
let row = new ShareDataRow(file);
|
||||
let col = <DataColumn> { type: 'image', key: '$thumbnail' };
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toContain(`assets/images/ft_ic_miscellaneous`);
|
||||
expect(value).toContain(`svg`);
|
||||
});
|
||||
|
||||
it('should generate fallback icon for a file thumbnail with missing mime type', () => {
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
@@ -228,7 +202,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
file.entry.content.mimeType = null;
|
||||
|
||||
let row = new ShareDataRow(file);
|
||||
let col = <DataColumn> { type: 'image', key: '$thumbnail' };
|
||||
let col = <DataColumn> {type: 'image', key: '$thumbnail'};
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toContain(`assets/images/ft_ic_miscellaneous`);
|
||||
@@ -242,20 +216,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
file.entry.content = null;
|
||||
|
||||
let row = new ShareDataRow(file);
|
||||
let col = <DataColumn> { type: 'image', key: '$thumbnail' };
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toContain(`assets/images/ft_ic_miscellaneous`);
|
||||
expect(value).toContain(`svg`);
|
||||
});
|
||||
|
||||
it('should generate fallback icon when document service fails to find one', () => {
|
||||
spyOn(documentListService, 'getMimeTypeIcon').and.returnValue(null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
let file = new FileNode();
|
||||
let row = new ShareDataRow(file);
|
||||
let col = <DataColumn> { type: 'image', key: '$thumbnail' };
|
||||
let col = <DataColumn> {type: 'image', key: '$thumbnail'};
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toContain(`assets/images/ft_ic_miscellaneous`);
|
||||
@@ -268,19 +229,19 @@ describe('ShareDataTableAdapter', () => {
|
||||
let file = new FileNode();
|
||||
file.entry['icon'] = imageUrl;
|
||||
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
let row = new ShareDataRow(file);
|
||||
let col = <DataColumn> { type: 'image', key: 'icon' };
|
||||
let col = <DataColumn> {type: 'image', key: 'icon'};
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toBe(imageUrl);
|
||||
});
|
||||
|
||||
it('should resolve folder icon', () => {
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
let row = new ShareDataRow(new FolderNode());
|
||||
let col = <DataColumn> { type: 'image', key: '$thumbnail' };
|
||||
let col = <DataColumn> {type: 'image', key: '$thumbnail'};
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toContain(`assets/images/ft_ic_folder`);
|
||||
@@ -296,7 +257,7 @@ describe('ShareDataTableAdapter', () => {
|
||||
|
||||
let file = new FileNode();
|
||||
let row = new ShareDataRow(file);
|
||||
let col = <DataColumn> { type: 'image', key: '$thumbnail' };
|
||||
let col = <DataColumn> {type: 'image', key: '$thumbnail'};
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toBe(imageUrl);
|
||||
@@ -304,39 +265,27 @@ describe('ShareDataTableAdapter', () => {
|
||||
});
|
||||
|
||||
it('should resolve fallback file icon for unknown node', () => {
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
let adapter = new ShareDataTableAdapter(documentListService, null);
|
||||
|
||||
let file = new FileNode();
|
||||
file.entry.isFile = false;
|
||||
file.entry.isFolder = false;
|
||||
|
||||
let row = new ShareDataRow(file);
|
||||
let col = <DataColumn> { type: 'image', key: '$thumbnail' };
|
||||
let col = <DataColumn> {type: 'image', key: '$thumbnail'};
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toContain(`assets/images/ft_ic_miscellaneous`);
|
||||
expect(value).toContain(`svg`);
|
||||
});
|
||||
|
||||
it('should require document service to resolve thumbnail', () => {
|
||||
let adapter = new ShareDataTableAdapter(null, null);
|
||||
adapter.thumbnails = true;
|
||||
|
||||
let file = new FileNode();
|
||||
let row = new ShareDataRow(file);
|
||||
let col = <DataColumn> { type: 'image', key: '$thumbnail' };
|
||||
|
||||
let value = adapter.getValue(row, col);
|
||||
expect(value).toBeNull();
|
||||
});
|
||||
|
||||
it('should put folders on top upon sort', () => {
|
||||
let file1 = new FileNode('file1');
|
||||
let file2 = new FileNode('file2');
|
||||
let folder = new FolderNode();
|
||||
|
||||
let col = <DataColumn> { key: 'name' };
|
||||
let adapter = new ShareDataTableAdapter(null, [col]);
|
||||
let col = <DataColumn> {key: 'name'};
|
||||
let adapter = new ShareDataTableAdapter(documentListService, [col]);
|
||||
adapter.setSorting(new DataSorting('name', 'asc'));
|
||||
|
||||
adapter.setRows([
|
||||
@@ -358,8 +307,8 @@ describe('ShareDataTableAdapter', () => {
|
||||
let file2 = new FileNode('file2');
|
||||
file2.entry['dateProp'] = new Date(2016, 6, 30, 13, 14, 2);
|
||||
|
||||
let col = <DataColumn> { key: 'dateProp' };
|
||||
let adapter = new ShareDataTableAdapter(null, [col]);
|
||||
let col = <DataColumn> {key: 'dateProp'};
|
||||
let adapter = new ShareDataTableAdapter(documentListService, [col]);
|
||||
|
||||
adapter.setRows([
|
||||
new ShareDataRow(file2),
|
||||
@@ -388,7 +337,9 @@ describe('ShareDataRow', () => {
|
||||
});
|
||||
|
||||
it('should require object source', () => {
|
||||
expect(() => { return new ShareDataRow(null); }).toThrowError(ShareDataRow.ERR_OBJECT_NOT_FOUND);
|
||||
expect(() => {
|
||||
return new ShareDataRow(null);
|
||||
}).toThrowError(ShareDataRow.ERR_OBJECT_NOT_FOUND);
|
||||
});
|
||||
|
||||
it('should resolve value from node entry', () => {
|
||||
|
@@ -108,30 +108,23 @@ export class ShareDataTableAdapter implements DataTableAdapter {
|
||||
let node = (<ShareDataRow> row).node;
|
||||
|
||||
if (node.entry.isFolder) {
|
||||
return this.getImagePath('ft_ic_folder.svg');
|
||||
return this.documentListService.getMimeTypeIcon('folder');
|
||||
}
|
||||
|
||||
if (node.entry.isFile) {
|
||||
|
||||
if (this.thumbnails) {
|
||||
if (this.documentListService) {
|
||||
return this.documentListService.getDocumentThumbnailUrl(node);
|
||||
}
|
||||
return null;
|
||||
return this.documentListService.getDocumentThumbnailUrl(node);
|
||||
}
|
||||
|
||||
if (node.entry.content) {
|
||||
let mimeType = node.entry.content.mimeType;
|
||||
if (mimeType) {
|
||||
let icon = this.documentListService.getMimeTypeIcon(mimeType);
|
||||
if (icon) {
|
||||
return this.getImagePath(icon);
|
||||
}
|
||||
return this.documentListService.getMimeTypeIcon(mimeType);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return this.getImagePath('ft_ic_miscellaneous.svg');
|
||||
return this.documentListService.getDefaultMimeTypeIcon();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -227,9 +220,6 @@ export class ShareDataTableAdapter implements DataTableAdapter {
|
||||
this.rows = rows;
|
||||
}
|
||||
|
||||
getImagePath(id: string): any {
|
||||
return require('../assets/images/' + id);
|
||||
}
|
||||
}
|
||||
|
||||
export class ShareDataRow implements DataRow {
|
||||
|
@@ -22,7 +22,6 @@ import {
|
||||
LogService,
|
||||
LogServiceMock
|
||||
} from 'ng2-alfresco-core';
|
||||
import { FileNode } from '../assets/document-library.model.mock';
|
||||
import { CookieServiceMock } from '../../../ng2-alfresco-core/src/assets/cookie.service.mock';
|
||||
import { DocumentListService } from './document-list.service';
|
||||
|
||||
@@ -115,26 +114,6 @@ describe('DocumentListService', () => {
|
||||
jasmine.Ajax.uninstall();
|
||||
});
|
||||
|
||||
it('should require node to get thumbnail url', () => {
|
||||
expect(service.getDocumentThumbnailUrl(null)).toBeNull();
|
||||
});
|
||||
|
||||
it('should require content service to get thumbnail url', () => {
|
||||
let file = new FileNode();
|
||||
expect(service.getDocumentThumbnailUrl(file)).not.toBeNull();
|
||||
});
|
||||
|
||||
it('should resolve fallback icon for mime type', () => {
|
||||
let icon = service.getMimeTypeIcon('image/png');
|
||||
expect(icon).toBe(service.mimeTypeIcons['image/png']);
|
||||
});
|
||||
|
||||
it('should resolve default icon for mime type', () => {
|
||||
expect(service.getMimeTypeIcon(null)).toBe(DocumentListService.DEFAULT_MIME_TYPE_ICON);
|
||||
expect(service.getMimeTypeIcon('')).toBe(DocumentListService.DEFAULT_MIME_TYPE_ICON);
|
||||
expect(service.getMimeTypeIcon('missing/type')).toBe(DocumentListService.DEFAULT_MIME_TYPE_ICON);
|
||||
});
|
||||
|
||||
it('should create a folder in the path', () => {
|
||||
service.createFolder('fake-name', 'fake-path').subscribe(
|
||||
res => {
|
||||
|
@@ -19,48 +19,18 @@ import { Injectable } from '@angular/core';
|
||||
import { Response } from '@angular/http';
|
||||
import { Observable } from 'rxjs/Rx';
|
||||
import { NodePaging, MinimalNodeEntity, MinimalNodeEntryEntity } from 'alfresco-js-api';
|
||||
import { AlfrescoAuthenticationService, AlfrescoContentService, AlfrescoApiService, LogService } from 'ng2-alfresco-core';
|
||||
import { AlfrescoAuthenticationService, AlfrescoContentService, AlfrescoApiService, LogService, ThumbnailService } from 'ng2-alfresco-core';
|
||||
|
||||
@Injectable()
|
||||
export class DocumentListService {
|
||||
|
||||
static DEFAULT_MIME_TYPE_ICON: string = 'ft_ic_miscellaneous.svg';
|
||||
|
||||
static ROOT_ID = '-root-';
|
||||
|
||||
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/vnd.openxmlformats-officedocument.spreadsheetml.sheet': 'ft_ic_ms_excel.svg',
|
||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.template': 'ft_ic_ms_excel.svg',
|
||||
'application/msword': 'ft_ic_ms_word.svg',
|
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.document': 'ft_ic_ms_word.svg',
|
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.template': 'ft_ic_ms_word.svg',
|
||||
'application/vnd.ms-powerpoint': 'ft_ic_ms_powerpoint.svg',
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.presentation': 'ft_ic_ms_powerpoint.svg',
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.template': 'ft_ic_ms_powerpoint.svg',
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.slideshow': 'ft_ic_ms_powerpoint.svg',
|
||||
'video/mp4': 'ft_ic_video.svg',
|
||||
'text/plain': 'ft_ic_document.svg',
|
||||
'application/x-javascript': 'ft_ic_document.svg',
|
||||
'application/json': 'ft_ic_document.svg',
|
||||
'image/svg+xml': 'ft_ic_vector_image.svg',
|
||||
'text/html': 'ft_ic_website.svg',
|
||||
'application/x-compressed': 'ft_ic_archive.svg',
|
||||
'application/x-zip-compressed': 'ft_ic_archive.svg',
|
||||
'application/zip': 'ft_ic_archive.svg',
|
||||
'application/vnd.apple.keynote': 'ft_ic_presentation.svg',
|
||||
'application/vnd.apple.pages': 'ft_ic_document.svg',
|
||||
'application/vnd.apple.numbers': 'ft_ic_spreadsheet.svg'
|
||||
};
|
||||
|
||||
constructor(private authService: AlfrescoAuthenticationService,
|
||||
private contentService: AlfrescoContentService,
|
||||
private apiService: AlfrescoApiService,
|
||||
private logService: LogService) {
|
||||
private logService: LogService,
|
||||
private thumbnailService: ThumbnailService) {
|
||||
}
|
||||
|
||||
private getNodesPromise(folder: string, opts?: any): Promise<NodePaging> {
|
||||
@@ -134,15 +104,15 @@ export class DocumentListService {
|
||||
* @returns {string} URL address.
|
||||
*/
|
||||
getDocumentThumbnailUrl(node: MinimalNodeEntity) {
|
||||
if (node && this.contentService) {
|
||||
return this.contentService.getDocumentThumbnailUrl(node);
|
||||
}
|
||||
return null;
|
||||
return this.thumbnailService.getDocumentThumbnailUrl(node);
|
||||
}
|
||||
|
||||
getMimeTypeIcon(mimeType: string): string {
|
||||
let icon = this.mimeTypeIcons[mimeType];
|
||||
return icon || DocumentListService.DEFAULT_MIME_TYPE_ICON;
|
||||
return this.thumbnailService.getMimeTypeIcon(mimeType);
|
||||
}
|
||||
|
||||
getDefaultMimeTypeIcon(): string {
|
||||
return this.thumbnailService.getDefaultMimeTypeIcon();
|
||||
}
|
||||
|
||||
private handleError(error: Response) {
|
||||
|
@@ -19,7 +19,6 @@ import { NgModule, ModuleWithProviders } from '@angular/core';
|
||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||
import { CoreModule } from 'ng2-alfresco-core';
|
||||
import { AlfrescoSearchService } from './src/services/alfresco-search.service';
|
||||
import { AlfrescoThumbnailService } from './src/services/alfresco-thumbnail.service';
|
||||
import { AlfrescoSearchComponent } from './src/components/alfresco-search.component';
|
||||
import { AlfrescoSearchControlComponent } from './src/components/alfresco-search-control.component';
|
||||
import { AlfrescoSearchAutocompleteComponent } from './src/components/alfresco-search-autocomplete.component';
|
||||
@@ -27,7 +26,6 @@ import { DocumentListModule } from 'ng2-alfresco-documentlist';
|
||||
|
||||
// services
|
||||
export * from './src/services/alfresco-search.service';
|
||||
export * from './src/services/alfresco-thumbnail.service';
|
||||
export * from './src/components/alfresco-search.component';
|
||||
export * from './src/components/alfresco-search-control.component';
|
||||
export * from './src/components/alfresco-search-autocomplete.component';
|
||||
@@ -39,8 +37,7 @@ export const ALFRESCO_SEARCH_DIRECTIVES: [any] = [
|
||||
];
|
||||
|
||||
export const ALFRESCO_SEARCH_PROVIDERS: [any] = [
|
||||
AlfrescoSearchService,
|
||||
AlfrescoThumbnailService
|
||||
AlfrescoSearchService
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
|
@@ -9,7 +9,7 @@
|
||||
(keyup.arrowup)="onRowArrowUp($event)"
|
||||
(keyup.escape)="onRowEscape($event)"
|
||||
attr.data-automation-id="autocomplete_result_for_{{result.entry.name}}">
|
||||
<td class="img-td"><img src="{{getMimeTypeIcon(result)}}" alt="{{getMimeTypeKey(result)|translate}}"/></td>
|
||||
<td class="img-td"><img src="{{getMimeTypeIcon(result)}}" alt="{{result.entry.name}}"/></td>
|
||||
<td>
|
||||
<div id="result_name_{{idx}}" class="truncate"><b>{{result.entry.name}}</b></div>
|
||||
<div id="result_user_{{idx}}" class="truncate">{{result.entry.createdByUser.displayName}}</div>
|
||||
|
@@ -17,7 +17,7 @@
|
||||
|
||||
import { ComponentFixture, TestBed, async } from '@angular/core/testing';
|
||||
import { AlfrescoSearchAutocompleteComponent } from './alfresco-search-autocomplete.component';
|
||||
import { AlfrescoThumbnailService } from './../services/alfresco-thumbnail.service';
|
||||
import { ThumbnailService } from 'ng2-alfresco-core';
|
||||
import { TranslationMock } from './../assets/translation.service.mock';
|
||||
import { result, results, folderResult, noResult, errorJson } from './../assets/alfresco-search.component.mock';
|
||||
import { AlfrescoSearchService } from '../services/alfresco-search.service';
|
||||
@@ -49,7 +49,7 @@ describe('AlfrescoSearchAutocompleteComponent', () => {
|
||||
declarations: [ AlfrescoSearchAutocompleteComponent ], // declare the test component
|
||||
providers: [
|
||||
{provide: AlfrescoTranslationService, useClass: TranslationMock},
|
||||
AlfrescoThumbnailService,
|
||||
ThumbnailService,
|
||||
AlfrescoSettingsService,
|
||||
AlfrescoApiService,
|
||||
AlfrescoAuthenticationService,
|
||||
@@ -130,19 +130,14 @@ describe('AlfrescoSearchAutocompleteComponent', () => {
|
||||
spyOn(searchService, 'getQueryNodesPromise')
|
||||
.and.returnValue(Promise.resolve(result));
|
||||
|
||||
let thumbnailService = fixture.debugElement.injector.get(AlfrescoThumbnailService);
|
||||
let thumbnailService = fixture.debugElement.injector.get(ThumbnailService);
|
||||
spyOn(thumbnailService, 'getMimeTypeIcon').and.returnValue('fake-type-icon.svg');
|
||||
spyOn(thumbnailService, 'getMimeTypeKey').and.returnValue('FAKE_TYPE');
|
||||
|
||||
let path = 'http://localhost/fake-type-icon.svg';
|
||||
spyOn(component, 'resolveIconPath').and.returnValue(path);
|
||||
|
||||
component.resultsLoad.subscribe(() => {
|
||||
fixture.detectChanges();
|
||||
let imgEl = <any> element.querySelector('#result_row_0 img');
|
||||
expect(imgEl).not.toBeNull();
|
||||
expect(imgEl.src).toBe(path);
|
||||
expect(imgEl.alt).toBe('SEARCH.ICONS.FAKE_TYPE');
|
||||
expect(imgEl.src).toContain('fake-type-icon.svg');
|
||||
done();
|
||||
});
|
||||
|
||||
@@ -233,8 +228,7 @@ describe('AlfrescoSearchAutocompleteComponent', () => {
|
||||
|
||||
it('should emit fileSelect event if when folder item clicked', (done) => {
|
||||
|
||||
spyOn(searchService, 'getQueryNodesPromise')
|
||||
.and.returnValue(Promise.resolve(folderResult));
|
||||
spyOn(searchService, 'getQueryNodesPromise').and.returnValue(Promise.resolve(folderResult));
|
||||
|
||||
spyOn(component.fileSelect, 'emit');
|
||||
component.resultsLoad.subscribe(() => {
|
||||
|
@@ -19,7 +19,7 @@ import { Component, ElementRef, EventEmitter, Input, OnInit, OnChanges, Output,
|
||||
import { AlfrescoTranslationService } from 'ng2-alfresco-core';
|
||||
import { MinimalNodeEntity } from 'alfresco-js-api';
|
||||
import { AlfrescoSearchService, SearchOptions } from './../services/alfresco-search.service';
|
||||
import { AlfrescoThumbnailService } from './../services/alfresco-thumbnail.service';
|
||||
import { ThumbnailService } from 'ng2-alfresco-core';
|
||||
|
||||
declare var require: any;
|
||||
|
||||
@@ -71,7 +71,7 @@ export class AlfrescoSearchAutocompleteComponent implements OnInit, OnChanges {
|
||||
|
||||
constructor(private searchService: AlfrescoSearchService,
|
||||
private translateService: AlfrescoTranslationService,
|
||||
private thumbnailService: AlfrescoThumbnailService) {
|
||||
private thumbnailService: ThumbnailService) {
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
@@ -124,30 +124,16 @@ export class AlfrescoSearchAutocompleteComponent implements OnInit, OnChanges {
|
||||
* @returns {string} URL address.
|
||||
*/
|
||||
getMimeTypeIcon(node: MinimalNodeEntity): string {
|
||||
let mimeType;
|
||||
|
||||
if (node.entry.content && node.entry.content.mimeType) {
|
||||
let icon = this.thumbnailService.getMimeTypeIcon(node.entry.content.mimeType);
|
||||
return this.resolveIconPath(icon);
|
||||
mimeType = node.entry.content.mimeType;
|
||||
}
|
||||
if (node.entry.isFolder) {
|
||||
return require('../assets/images/ft_ic_folder.svg');
|
||||
mimeType = 'folder';
|
||||
}
|
||||
}
|
||||
|
||||
resolveIconPath(icon: string): string {
|
||||
return require('../assets/images/' + icon);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets thumbnail message key for the given document node, which can be used to look up alt text
|
||||
* @param node Node to get URL for.
|
||||
* @returns {string} URL address.
|
||||
*/
|
||||
getMimeTypeKey(node: MinimalNodeEntity): string {
|
||||
if (node.entry.content && node.entry.content.mimeType) {
|
||||
return 'SEARCH.ICONS.' + this.thumbnailService.getMimeTypeKey(node.entry.content.mimeType);
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
return this.thumbnailService.getMimeTypeIcon(mimeType);
|
||||
}
|
||||
|
||||
focusResult(): void {
|
||||
|
@@ -18,7 +18,7 @@
|
||||
import { ComponentFixture, TestBed, async } from '@angular/core/testing';
|
||||
import { AlfrescoSearchControlComponent } from './alfresco-search-control.component';
|
||||
import { AlfrescoSearchAutocompleteComponent } from './alfresco-search-autocomplete.component';
|
||||
import { AlfrescoThumbnailService } from './../services/alfresco-thumbnail.service';
|
||||
import { ThumbnailService } from 'ng2-alfresco-core';
|
||||
import { TranslationMock } from './../assets/translation.service.mock';
|
||||
import { result } from './../assets/alfresco-search.component.mock';
|
||||
import { CoreModule, AlfrescoTranslationService } from 'ng2-alfresco-core';
|
||||
@@ -43,7 +43,7 @@ describe('AlfrescoSearchControlComponent', () => {
|
||||
],
|
||||
providers: [
|
||||
{provide: AlfrescoTranslationService, useClass: TranslationMock},
|
||||
AlfrescoThumbnailService,
|
||||
ThumbnailService,
|
||||
AlfrescoSearchService
|
||||
]
|
||||
}).compileComponents().then(() => {
|
||||
|
@@ -1,62 +0,0 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { TestBed, async } from '@angular/core/testing';
|
||||
import { AlfrescoThumbnailService } from './alfresco-thumbnail.service';
|
||||
import { CoreModule } from 'ng2-alfresco-core';
|
||||
|
||||
describe('AlfrescoThumbnailService', () => {
|
||||
|
||||
let service: AlfrescoThumbnailService;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
imports: [
|
||||
CoreModule.forRoot()
|
||||
],
|
||||
providers: [
|
||||
AlfrescoThumbnailService
|
||||
]
|
||||
}).compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
service = TestBed.get(AlfrescoThumbnailService);
|
||||
});
|
||||
|
||||
it('should return the correct icon for a plain text file', () => {
|
||||
expect(service.getMimeTypeIcon('text/plain')).toBe('ft_ic_document.svg');
|
||||
});
|
||||
|
||||
it('should return the correct icon for a PNG file', () => {
|
||||
expect(service.getMimeTypeIcon('image/png')).toBe('ft_ic_raster_image.svg');
|
||||
});
|
||||
|
||||
it('should return the correct icon for a MP4 video file', () => {
|
||||
expect(service.getMimeTypeIcon('video/mp4')).toBe('ft_ic_video.svg');
|
||||
});
|
||||
|
||||
it('should return a generic icon for an unknown file', () => {
|
||||
expect(service.getMimeTypeIcon('x-unknown/yyy')).toBe('ft_ic_miscellaneous.svg');
|
||||
});
|
||||
|
||||
it('should return the thumbnail URL for a content item', () => {
|
||||
spyOn(service.contentService, 'getDocumentThumbnailUrl').and.returnValue('/fake-thumbnail.png');
|
||||
expect(service.getDocumentThumbnailUrl({})).toBe('/fake-thumbnail.png');
|
||||
});
|
||||
|
||||
});
|
@@ -1,73 +0,0 @@
|
||||
/*!
|
||||
* @license
|
||||
* Copyright 2016 Alfresco Software, Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { Injectable } from '@angular/core';
|
||||
import { AlfrescoContentService } from 'ng2-alfresco-core';
|
||||
|
||||
@Injectable()
|
||||
export class AlfrescoThumbnailService {
|
||||
|
||||
mimeTypeIcons: any = {
|
||||
'image/png': 'ft_ic_raster_image',
|
||||
'image/jpeg': 'ft_ic_raster_image',
|
||||
'image/gif': 'ft_ic_raster_image',
|
||||
'application/pdf': 'ft_ic_pdf',
|
||||
'application/vnd.ms-excel': 'ft_ic_ms_excel',
|
||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet': 'ft_ic_ms_excel',
|
||||
'application/vnd.openxmlformats-officedocument.spreadsheetml.template': 'ft_ic_ms_excel',
|
||||
'application/msword': 'ft_ic_ms_word',
|
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.document': 'ft_ic_ms_word',
|
||||
'application/vnd.openxmlformats-officedocument.wordprocessingml.template': 'ft_ic_ms_word',
|
||||
'application/vnd.ms-powerpoint': 'ft_ic_ms_powerpoint',
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.presentation': 'ft_ic_ms_powerpoint',
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.template': 'ft_ic_ms_powerpoint',
|
||||
'application/vnd.openxmlformats-officedocument.presentationml.slideshow': 'ft_ic_ms_powerpoint',
|
||||
'video/mp4': 'ft_ic_video',
|
||||
'text/plain': 'ft_ic_document',
|
||||
'application/x-javascript': 'ft_ic_document',
|
||||
'application/json': 'ft_ic_document',
|
||||
'image/svg+xml': 'ft_ic_vector_image',
|
||||
'text/html': 'ft_ic_website',
|
||||
'application/x-compressed': 'ft_ic_archive',
|
||||
'application/x-zip-compressed': 'ft_ic_archive',
|
||||
'application/zip': 'ft_ic_archive',
|
||||
'application/vnd.apple.keynote': 'ft_ic_presentation',
|
||||
'application/vnd.apple.pages': 'ft_ic_document',
|
||||
'application/vnd.apple.numbers': 'ft_ic_spreadsheet'
|
||||
};
|
||||
|
||||
constructor(public contentService: AlfrescoContentService) {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get thumbnail URL for the given document node.
|
||||
* @param document Node to get URL for.
|
||||
* @returns {string} URL address.
|
||||
*/
|
||||
public getDocumentThumbnailUrl(document: any): string {
|
||||
return this.contentService.getDocumentThumbnailUrl(document);
|
||||
}
|
||||
|
||||
public getMimeTypeKey(mimeType: string): string {
|
||||
let icon = this.mimeTypeIcons[mimeType];
|
||||
return icon || 'ft_ic_miscellaneous';
|
||||
}
|
||||
|
||||
public getMimeTypeIcon(mimeType: string): string {
|
||||
return this.getMimeTypeKey(mimeType) + '.svg';
|
||||
}
|
||||
}
|