fix style and naming
@@ -29,8 +29,7 @@ import {
|
||||
|
||||
import {
|
||||
ALFRESCO_SEARCH_PROVIDERS,
|
||||
ALFRESCO_SEARCH_DIRECTIVES,
|
||||
AlfrescoService
|
||||
ALFRESCO_SEARCH_DIRECTIVES
|
||||
} from 'ng2-alfresco-search';
|
||||
|
||||
@Component({
|
||||
@@ -65,11 +64,9 @@ class SearchDemo implements OnInit {
|
||||
|
||||
token: string;
|
||||
|
||||
constructor(
|
||||
private authService: AlfrescoAuthenticationService,
|
||||
private alfrescoSettingsService: AlfrescoSettingsService,
|
||||
translation: AlfrescoTranslationService,
|
||||
searchService: AlfrescoService) {
|
||||
constructor(private authService: AlfrescoAuthenticationService,
|
||||
private alfrescoSettingsService: AlfrescoSettingsService,
|
||||
translation: AlfrescoTranslationService) {
|
||||
|
||||
alfrescoSettingsService.host = this.host;
|
||||
if (localStorage.getItem('token')) {
|
||||
@@ -93,9 +90,15 @@ class SearchDemo implements OnInit {
|
||||
}
|
||||
|
||||
login() {
|
||||
this.authService.login('admin', 'admin').subscribe(token => {
|
||||
this.authenticated = true;
|
||||
});
|
||||
this.authService.login('admin', 'admin').subscribe(
|
||||
token => {
|
||||
console.log(token);
|
||||
this.authenticated = true;
|
||||
},
|
||||
error => {
|
||||
console.log(error);
|
||||
this.authenticated = false;
|
||||
});
|
||||
}
|
||||
|
||||
searchTermChange(event) {
|
||||
@@ -106,5 +109,6 @@ class SearchDemo implements OnInit {
|
||||
|
||||
bootstrap(SearchDemo, [
|
||||
HTTP_PROVIDERS,
|
||||
ALFRESCO_CORE_PROVIDERS
|
||||
ALFRESCO_CORE_PROVIDERS,
|
||||
ALFRESCO_SEARCH_PROVIDERS
|
||||
]);
|
||||
|
@@ -15,13 +15,14 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { AlfrescoService } from './src/services/alfresco.service';
|
||||
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';
|
||||
|
||||
// services
|
||||
export * from './src/services/alfresco.service';
|
||||
|
||||
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';
|
||||
|
||||
@@ -31,7 +32,8 @@ export default {
|
||||
AlfrescoSearchControlComponent
|
||||
],
|
||||
providers: [
|
||||
AlfrescoService
|
||||
AlfrescoSearchService,
|
||||
AlfrescoThumbnailService
|
||||
]
|
||||
};
|
||||
|
||||
@@ -41,5 +43,6 @@ export const ALFRESCO_SEARCH_DIRECTIVES: [any] = [
|
||||
];
|
||||
|
||||
export const ALFRESCO_SEARCH_PROVIDERS: [any] = [
|
||||
AlfrescoService
|
||||
AlfrescoSearchService,
|
||||
AlfrescoThumbnailService
|
||||
];
|
||||
|
@@ -13,11 +13,13 @@
|
||||
"tslint": "npm run tslint-src && npm run tslint-root",
|
||||
"tslint-src": "tslint -c tslint.json src/**/*.ts",
|
||||
"tslint-root": "tslint -c tslint.json *.ts",
|
||||
"copytemplates": "npm run copy-html-css && npm run copy-i18n",
|
||||
"copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\"",
|
||||
"copytemplates": "npm run copy-html-css && npm run copy-i18n && npm run copy-images",
|
||||
"copytemplates:w": "concurrently \"npm run copy-html-css:w\" \"npm run copy-i18n:w\" \"npm run copy-images:w\"",
|
||||
"copy-html-css": "cpx './src/**/*.{html,css}' dist/src",
|
||||
"copy-html-css:w": "cpx './src/**/*.{html,css}' dist/src -w",
|
||||
"copy-i18n": "cpx './i18n/**/*.json' dist/i18n",
|
||||
"copy-images": "cpx './src/**/*.{png,jpg,gif,svg}' dist/src",
|
||||
"copy-images:w": "cpx './src/**/*.{png,jpg,gif,svg}' dist/src -w",
|
||||
"copy-i18n:w": "cpx './i18n/**/*.json' dist/i18n -w",
|
||||
"tsc": "tsc",
|
||||
"tsc:w": "tsc -w",
|
||||
|
@@ -22,9 +22,9 @@ import {
|
||||
AlfrescoAuthenticationService,
|
||||
AlfrescoContentService
|
||||
} from 'ng2-alfresco-core';
|
||||
import {AlfrescoService} from './../../src/services/alfresco.service';
|
||||
import {AlfrescoSearchService} from './../../src/services/alfresco-search.service';
|
||||
|
||||
export class AlfrescoServiceMock extends AlfrescoService {
|
||||
export class AlfrescoServiceMock extends AlfrescoSearchService {
|
||||
|
||||
_folderToReturn: any = {};
|
||||
|
||||
|
@@ -0,0 +1,38 @@
|
||||
:host {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
display: none;
|
||||
color: #555;
|
||||
margin: -21px 0px 0px 0px;
|
||||
}
|
||||
:host a {
|
||||
color: #555;
|
||||
text-decoration: none;
|
||||
}
|
||||
:host table {
|
||||
width: 300px;
|
||||
}
|
||||
:host .mdl-data-table tbody tr {
|
||||
height: 32px;
|
||||
}
|
||||
:host .mdl-data-table td {
|
||||
height: 32px;
|
||||
padding: 8px;
|
||||
text-align: left;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
:host.active.valid {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.img-td{
|
||||
width: 30px;
|
||||
}
|
||||
|
||||
.truncate{
|
||||
width: 240px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
@@ -1,7 +1,9 @@
|
||||
<table data-automation-id="autocomplete_results" *ngIf="results && results.length && searchTerm" class="mdl-data-table mdl-js-data-table mdl-shadow--2dp full-width">
|
||||
<tbody>
|
||||
<tr *ngFor="let result of results; let idx = index">
|
||||
<td><a attr.data-automation-id="autocomplete_result_for_{{result.entry.name}}" href="#" (click)="onItemClick(result, $event)">{{result.entry.name}}</a></td>
|
||||
<tr *ngFor="let result of results; let idx = index" (click)="_onItemClick(result, $event)"
|
||||
attr.data-automation-id="autocomplete_result_for_{{result.entry.name}}" >
|
||||
<td class="img-td"><img src="{{_getMimeTypeIcon(result)}}" /></td>
|
||||
<td><div class="truncate" ><b>{{result.entry.name}}</b></div><div class="truncate">{{result.entry.createdByUser.displayName}}</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@@ -17,15 +17,13 @@
|
||||
|
||||
import {
|
||||
Component,
|
||||
ElementRef,
|
||||
EventEmitter,
|
||||
Input,
|
||||
OnChanges,
|
||||
Output,
|
||||
Renderer
|
||||
Output
|
||||
} from '@angular/core';
|
||||
import { AlfrescoService } from './../services/alfresco.service';
|
||||
|
||||
import { AlfrescoSearchService } from './../services/alfresco-search.service';
|
||||
import { AlfrescoThumbnailService } from './../services/alfresco-thumbnail.service';
|
||||
import { AlfrescoPipeTranslate, AlfrescoTranslationService } from 'ng2-alfresco-core';
|
||||
|
||||
declare let __moduleName: string;
|
||||
@@ -33,40 +31,15 @@ declare let __moduleName: string;
|
||||
@Component({
|
||||
moduleId: __moduleName,
|
||||
selector: 'alfresco-search-autocomplete',
|
||||
styles: [
|
||||
`:host {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
display: none;
|
||||
color: #555;
|
||||
}
|
||||
:host a {
|
||||
color: #555;
|
||||
text-decoration: none;
|
||||
}
|
||||
:host table {
|
||||
width: 300px;
|
||||
}
|
||||
:host .mdl-data-table tbody tr {
|
||||
height: 32px;
|
||||
}
|
||||
:host .mdl-data-table td {
|
||||
height: 32px;
|
||||
padding: 8px;
|
||||
text-align: left;
|
||||
border-top: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
:host.active.valid {
|
||||
display: block;
|
||||
}`
|
||||
],
|
||||
templateUrl: './alfresco-search-autocomplete.component.html',
|
||||
providers: [AlfrescoService],
|
||||
styleUrls: ['./alfresco-search-autocomplete.component.css'],
|
||||
providers: [AlfrescoSearchService],
|
||||
pipes: [AlfrescoPipeTranslate]
|
||||
})
|
||||
export class AlfrescoSearchAutocompleteComponent implements OnChanges {
|
||||
|
||||
baseComponentPath = __moduleName.replace('/components/alfresco-search-autocomplete.component.js', '');
|
||||
|
||||
@Input()
|
||||
searchTerm: string = '';
|
||||
|
||||
@@ -81,18 +54,17 @@ export class AlfrescoSearchAutocompleteComponent implements OnChanges {
|
||||
preview: EventEmitter<any> = new EventEmitter();
|
||||
|
||||
constructor(
|
||||
private _alfrescoService: AlfrescoService,
|
||||
private _alfrescoSearchService: AlfrescoSearchService,
|
||||
private translate: AlfrescoTranslationService,
|
||||
private el: ElementRef,
|
||||
private renderer: Renderer
|
||||
private _alfrescoThumbnailService: AlfrescoThumbnailService
|
||||
) {
|
||||
translate.addTranslationFolder('node_modules/ng2-alfresco-search');
|
||||
this.results = null;
|
||||
}
|
||||
|
||||
ngOnChanges(changes) {
|
||||
ngOnChanges(changes): void {
|
||||
if (changes.searchTerm) {
|
||||
this.displaySearchResults(this.searchTerm);
|
||||
this._displaySearchResults(this.searchTerm);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -100,9 +72,9 @@ export class AlfrescoSearchAutocompleteComponent implements OnChanges {
|
||||
* Loads and displays search results
|
||||
* @param searchTerm Search query entered by user
|
||||
*/
|
||||
displaySearchResults(searchTerm) {
|
||||
private _displaySearchResults(searchTerm) {
|
||||
if (searchTerm !== null && searchTerm !== '') {
|
||||
this._alfrescoService
|
||||
this._alfrescoSearchService
|
||||
.getLiveSearchResults(searchTerm)
|
||||
.subscribe(
|
||||
results => {
|
||||
@@ -117,7 +89,19 @@ export class AlfrescoSearchAutocompleteComponent implements OnChanges {
|
||||
}
|
||||
}
|
||||
|
||||
onItemClick(node, event?: Event) {
|
||||
/**
|
||||
* Gets thumbnail URL for the given document node.
|
||||
* @param node Node to get URL for.
|
||||
* @returns {string} URL address.
|
||||
*/
|
||||
_getMimeTypeIcon(node: any): string {
|
||||
if (node.entry.content && node.entry.content.mimeType) {
|
||||
let icon = this._alfrescoThumbnailService.getMimeTypeIcon(node.entry.content.mimeType);
|
||||
return `${this.baseComponentPath}/img/${icon}`;
|
||||
}
|
||||
}
|
||||
|
||||
_onItemClick(node, event?: Event): void {
|
||||
if (event) {
|
||||
event.preventDefault();
|
||||
}
|
||||
|
@@ -0,0 +1,3 @@
|
||||
.search-field{
|
||||
width: 267px;
|
||||
}
|
@@ -1,13 +1,15 @@
|
||||
<form (submit)="onSearch($event)">
|
||||
<div [class]="getTextFieldClassName()">
|
||||
<form (submit)="_onSearch($event)">
|
||||
<div [class]="_getTextFieldClassName()">
|
||||
<label *ngIf="expandable" class="mdl-button mdl-js-button mdl-button--icon" for="searchControl">
|
||||
<i class="material-icons">search</i>
|
||||
</label>
|
||||
<div [class]="getTextFieldHolderClassName()">
|
||||
<input class="mdl-textfield__input" [type]="inputType" [autocomplete]="getAutoComplete()" data-automation-id="search_input"
|
||||
id="searchControl" [ngFormControl]="searchControl" [(ngModel)]="searchTerm" (focus)="onFocus($event)" (blur)="onBlur($event)">
|
||||
<div [class]="_getTextFieldHolderClassName()">
|
||||
<input class="mdl-textfield__input" [type]="inputType" [autocomplete]="_getAutoComplete()" data-automation-id="search_input"
|
||||
id="searchControl" [ngFormControl]="searchControl" [(ngModel)]="searchTerm" (focus)="_onFocus($event)"
|
||||
(blur)="_onBlur($event)">
|
||||
<label class="mdl-textfield__label" for="searchControl">{{'SEARCH.CONTROL.LABEL' | translate}}</label>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<alfresco-search-autocomplete [searchTerm]="autocompleteSearchTerm" [ngClass]="{active: searchActive, valid: searchValid}" (preview)="onFileClicked($event)"></alfresco-search-autocomplete>
|
||||
<alfresco-search-autocomplete [searchTerm]="autocompleteSearchTerm" [ngClass]="{active: searchActive, valid: searchValid}"
|
||||
(preview)="_onFileClicked($event)"></alfresco-search-autocomplete>
|
||||
|
@@ -17,9 +17,7 @@
|
||||
|
||||
import { Control, Validators } from '@angular/common';
|
||||
import { Component, Input, Output, EventEmitter, AfterViewInit } from '@angular/core';
|
||||
|
||||
import { AlfrescoPipeTranslate, AlfrescoTranslationService } from 'ng2-alfresco-core';
|
||||
|
||||
import { AlfrescoSearchAutocompleteComponent } from './alfresco-search-autocomplete.component';
|
||||
|
||||
declare let __moduleName: string;
|
||||
@@ -31,6 +29,7 @@ declare var componentHandler: any;
|
||||
styles: [
|
||||
],
|
||||
templateUrl: './alfresco-search-control.component.html',
|
||||
styleUrls: ['./alfresco-search-control.component.css'],
|
||||
directives: [AlfrescoSearchAutocompleteComponent],
|
||||
pipes: [AlfrescoPipeTranslate]
|
||||
})
|
||||
@@ -43,7 +42,7 @@ export class AlfrescoSearchControlComponent implements AfterViewInit {
|
||||
inputType = 'text';
|
||||
|
||||
@Input()
|
||||
autocomplete: boolean = true;
|
||||
autocomplete: boolean = false;
|
||||
|
||||
@Input()
|
||||
expandable: boolean = true;
|
||||
@@ -81,21 +80,21 @@ export class AlfrescoSearchControlComponent implements AfterViewInit {
|
||||
translate.addTranslationFolder('node_modules/ng2-alfresco-search');
|
||||
}
|
||||
|
||||
ngAfterViewInit() {
|
||||
ngAfterViewInit(): void {
|
||||
if (componentHandler) {
|
||||
componentHandler.upgradeAllRegistered();
|
||||
}
|
||||
}
|
||||
|
||||
getTextFieldClassName(): string {
|
||||
_getTextFieldClassName(): string {
|
||||
return 'mdl-textfield mdl-js-textfield' + (this.expandable ? ' mdl-textfield--expandable' : '');
|
||||
}
|
||||
|
||||
getTextFieldHolderClassName(): string {
|
||||
return this.expandable ? ' mdl-textfield__expandable-holder' : '';
|
||||
_getTextFieldHolderClassName(): string {
|
||||
return this.expandable ? 'search-field mdl-textfield__expandable-holder' : 'search-field';
|
||||
}
|
||||
|
||||
getAutoComplete(): string {
|
||||
_getAutoComplete(): string {
|
||||
return this.autocomplete ? 'on' : 'off';
|
||||
}
|
||||
|
||||
@@ -104,7 +103,7 @@ export class AlfrescoSearchControlComponent implements AfterViewInit {
|
||||
*
|
||||
* @param event Submit event that was fired
|
||||
*/
|
||||
onSearch(event) {
|
||||
_onSearch(event): void {
|
||||
if (event) {
|
||||
event.preventDefault();
|
||||
}
|
||||
@@ -116,20 +115,20 @@ export class AlfrescoSearchControlComponent implements AfterViewInit {
|
||||
}
|
||||
}
|
||||
|
||||
onFileClicked(event) {
|
||||
_onFileClicked(event): void {
|
||||
this.preview.emit({
|
||||
value: event.value
|
||||
});
|
||||
}
|
||||
|
||||
onFocus() {
|
||||
_onFocus(): void {
|
||||
this.searchActive = true;
|
||||
}
|
||||
|
||||
onBlur() {
|
||||
_onBlur(): void {
|
||||
window.setTimeout(() => {
|
||||
this.searchActive = false;
|
||||
}, 100);
|
||||
}, 200);
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -18,11 +18,13 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let result of results; let idx = index" >
|
||||
<td><img src="{{getDocumentThumbnailUrl(result)}}" /></td>
|
||||
<td attr.data-automation-id=file_{{result.entry.name}}>{{result.entry.name}}</td>
|
||||
<td attr.data-automation-id=file_{{result.entry.name}}_{{result.entry.modifiedByUser.displayName}}>{{result.entry.modifiedByUser.displayName}}</td>
|
||||
<td>{{result.entry.modifiedAt}}</td>
|
||||
|
||||
<tr *ngFor="let result of results; let idx = index">
|
||||
<td><img src="{{_getMimeTypeIcon(result)}}" /></td>
|
||||
<td attr.data-automation-id=file_{{result.entry.name}} >{{result.entry.name}}</td>
|
||||
<td attr.data-automation-id=file_{{result.entry.name}}_{{result.entry.modifiedByUser.displayName}} >{{result.entry.modifiedByUser
|
||||
.displayName}}</td>
|
||||
<td>{{result.entry.modifiedAt | date}}</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
|
@@ -17,8 +17,8 @@
|
||||
|
||||
import { Component, Input, Optional, OnChanges, OnInit } from '@angular/core';
|
||||
import { RouteParams } from '@angular/router-deprecated';
|
||||
import { AlfrescoService } from './../services/alfresco.service';
|
||||
|
||||
import { AlfrescoSearchService } from './../services/alfresco-search.service';
|
||||
import { AlfrescoThumbnailService } from './../services/alfresco-thumbnail.service';
|
||||
import { AlfrescoPipeTranslate, AlfrescoTranslationService } from 'ng2-alfresco-core';
|
||||
|
||||
declare let __moduleName: string;
|
||||
@@ -28,11 +28,13 @@ declare let __moduleName: string;
|
||||
selector: 'alfresco-search',
|
||||
styles: [],
|
||||
templateUrl: './alfresco-search.component.html',
|
||||
providers: [AlfrescoService],
|
||||
providers: [AlfrescoSearchService],
|
||||
pipes: [AlfrescoPipeTranslate]
|
||||
})
|
||||
export class AlfrescoSearchComponent implements OnChanges, OnInit {
|
||||
|
||||
baseComponentPath = __moduleName.replace('/components/alfresco-search.component.js', '');
|
||||
|
||||
@Input()
|
||||
searchTerm: string = '';
|
||||
|
||||
@@ -42,8 +44,9 @@ export class AlfrescoSearchComponent implements OnChanges, OnInit {
|
||||
|
||||
route: any[] = [];
|
||||
|
||||
constructor(private _alfrescoService: AlfrescoService,
|
||||
constructor(private _alfrescoSearchService: AlfrescoSearchService,
|
||||
private translate: AlfrescoTranslationService,
|
||||
private _alfrescoThumbnailService: AlfrescoThumbnailService,
|
||||
@Optional() params: RouteParams) {
|
||||
translate.addTranslationFolder('node_modules/ng2-alfresco-search');
|
||||
|
||||
@@ -53,12 +56,12 @@ export class AlfrescoSearchComponent implements OnChanges, OnInit {
|
||||
}
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
this.displaySearchResults(this.searchTerm);
|
||||
ngOnInit(): void {
|
||||
this._displaySearchResults(this.searchTerm);
|
||||
}
|
||||
|
||||
ngOnChanges(changes) {
|
||||
this.displaySearchResults(this.searchTerm);
|
||||
ngOnChanges(changes): void {
|
||||
this._displaySearchResults(this.searchTerm);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -66,20 +69,20 @@ export class AlfrescoSearchComponent implements OnChanges, OnInit {
|
||||
* @param node Node to get URL for.
|
||||
* @returns {string} URL address.
|
||||
*/
|
||||
getDocumentThumbnailUrl(node: any): string {
|
||||
if (this._alfrescoService) {
|
||||
return this._alfrescoService.getDocumentThumbnailUrl(node);
|
||||
_getMimeTypeIcon(node: any): string {
|
||||
if (node.entry.content && node.entry.content.mimeType) {
|
||||
let icon = this._alfrescoThumbnailService.getMimeTypeIcon(node.entry.content.mimeType);
|
||||
return `${this.baseComponentPath}/img/${icon}`;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads and displays search results
|
||||
* @param searchTerm Search query entered by user
|
||||
*/
|
||||
displaySearchResults(searchTerm) {
|
||||
private _displaySearchResults(searchTerm): void {
|
||||
if (searchTerm !== null) {
|
||||
this._alfrescoService
|
||||
this._alfrescoSearchService
|
||||
.getLiveSearchResults(searchTerm)
|
||||
.subscribe(
|
||||
results => {
|
||||
|
After Width: | Height: | Size: 202 KiB |
144
ng2-components/ng2-alfresco-search/src/img/ft_ic_archive.svg
Executable file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st12" d="M20.5,5.2l-1.4-1.7C18.9,3.2,18.5,3,18,3H6C5.5,3,5.1,3.2,4.8,3.5L3.5,5.2C3.2,5.6,3,6,3,6.5V19
|
||||
c0,1.1,0.9,2,2,2h14c1.1,0,2-0.9,2-2V6.5C21,6,20.8,5.6,20.5,5.2z M17,11h-2v2h2v2h-2v2h2v2h-2v-2h-2v-2h2v-2h-2v-2h2V9h-2V7h2v2
|
||||
h2V11z M5.1,5l0.8-1h12l0.9,1H5.1z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_24_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_22_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
143
ng2-components/ng2-alfresco-search/src/img/ft_ic_audio.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st15" d="M12,3v9.3c-0.5-0.2-1-0.3-1.5-0.3C8,12,6,14,6,16.5S8,21,10.5,21c2.3,0,4.2-1.8,4.4-4H15V6h4V3H12z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_32_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_30_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
142
ng2-components/ng2-alfresco-search/src/img/ft_ic_database.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st12" d="M2,20h20v-4H2V20z M4,17h2v2H4V17z M2,4v4h20V4H2z M6,7H4V5h2V7z M2,14h20v-4H2V14z M4,11h2v2H4V11z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_68_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_48_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
143
ng2-components/ng2-alfresco-search/src/img/ft_ic_document.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st11" d="M19,4H5C4.5,4,4,4.5,4,5v14c0,0.5,0.5,1,1,1h14c0.6,0,1-0.5,1-1V5C20,4.5,19.6,4,19,4z M13,15H7v-1h6V15z
|
||||
M17,13H7v-1h10V13z M17,11H7v-1h10V11z M17,9H7V8h10V9z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_80_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_60_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
143
ng2-components/ng2-alfresco-search/src/img/ft_ic_ebook.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st13" d="M18,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V4C20,2.9,19.1,2,18,2z M6,4h5v8l-2.5-1.5
|
||||
L6,12V4z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_66_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_46_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
142
ng2-components/ng2-alfresco-search/src/img/ft_ic_folder.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st9" d="M10,4H4C2.9,4,2,4.9,2,6l0,12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8c0-1.1-0.9-2-2-2h-8L10,4z"/>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_1_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_3_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.4 KiB |
143
ng2-components/ng2-alfresco-search/src/img/ft_ic_folder_empty.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st9" d="M20,6h-8l-2-2H4C2.9,4,2,4.9,2,6l0,12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V8C22,6.9,21.1,6,20,6z M20,18H4V8
|
||||
h16V18z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_8_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_5_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
143
ng2-components/ng2-alfresco-search/src/img/ft_ic_form.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st18" d="M18,4H6C4.9,4,4,4.9,4,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M9,16H7v-2h2V16z
|
||||
M9,13H7v-2h2V13z M9,10H7V8h2V10z M17,16h-7v-2h7V16z M17,13h-7v-2h7V13z M17,10h-7V8h7V10z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_74_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_54_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
147
ng2-components/ng2-alfresco-search/src/img/ft_ic_google_docs.svg
Executable file
@@ -0,0 +1,147 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<path class="st11" d="M16,2H6C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6L16,2z M13,17H7v-1h6V17z M17,15H7v-1
|
||||
h10V15z M17,13H7v-1h10V13z M17,11H7v-1h10V11z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_112_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_92_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
147
ng2-components/ng2-alfresco-search/src/img/ft_ic_google_drawings.svg
Executable file
@@ -0,0 +1,147 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<g>
|
||||
<path class="st13" d="M16,2H6C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6L16,2z M7,12.5C7,10.6,8.6,9,10.5,9
|
||||
s3.5,1.6,3.5,3.5c0,0.2,0,0.3-0.1,0.5H11v2.9c-0.2,0-0.3,0.1-0.5,0.1C8.6,16,7,14.4,7,12.5z M17,19h-5v-5l5,0V19z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_104_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_84_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
147
ng2-components/ng2-alfresco-search/src/img/ft_ic_google_forms.svg
Executable file
@@ -0,0 +1,147 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<path class="st18" d="M16,2H6C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6L16,2z M9,18H7v-2h2V18z M9,15H7v-2h2
|
||||
V15z M9,12H7v-2h2V12z M17,18h-7v-2h7V18z M17,15h-7v-2h7V15z M17,12h-7v-2h7V12z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_106_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_86_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
148
ng2-components/ng2-alfresco-search/src/img/ft_ic_google_sheets.svg
Executable file
@@ -0,0 +1,148 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<path class="st8" d="M6,2C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6l-4-4H6z"/>
|
||||
<path class="st6" d="M17,9L17,9L7,9v0h0v10h10L17,9L17,9z M10,13v2H8v-2H10z M8,12v-2h2v2H8z M11,13h5v2h-5V13z M11,12v-2h5v2H11
|
||||
z M8,18v-2h2v2H8z M11,18v-2h5v2H11z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_110_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_90_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
146
ng2-components/ng2-alfresco-search/src/img/ft_ic_google_slides.svg
Executable file
@@ -0,0 +1,146 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<path class="st14" d="M16,2H6C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6L16,2z M17,17H7v-7h10V17z"/>
|
||||
<path class="st16" d="M16,6V2l4,4H16z"/>
|
||||
<path class="st17" d="M20,6v4l-4-4H20z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_108_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_88_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
142
ng2-components/ng2-alfresco-search/src/img/ft_ic_miscellaneous.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st9" d="M6,2C4.9,2,4,2.9,4,4l0,16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8l-6-6H6z M13,9V3.5L18.5,9H13z"/>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_28_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_26_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
157
ng2-components/ng2-alfresco-search/src/img/ft_ic_ms_excel.svg
Executable file
@@ -0,0 +1,157 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<g>
|
||||
<path class="st8" d="M22,17.2c0-3.9,0-7.9,0-11.8c0-0.4,0-0.8-0.2-1.1C21.4,4,21,4.1,20.6,4c-2.3,0-4.5,0-6.8,0
|
||||
c0-0.6,0-1.2,0-1.8h-1.3C9,2.8,5.5,3.4,2,4.1C2,9.4,2,14.7,2,20c3.5,0.6,6.9,1.2,10.4,1.8h1.4c0-0.7,0-1.4,0-2c2.4,0,4.7,0,7.1,0
|
||||
c0.4,0,0.9,0,1-0.5C22.1,18.6,22,17.9,22,17.2z M8.7,15.6c-0.4-0.9-0.9-1.9-1.1-2.9c-0.3,0.9-0.7,1.8-1.1,2.7c-0.5,0-1,0-1.5,0
|
||||
c0.6-1.1,1.1-2.3,1.7-3.4c-0.5-1.2-1.1-2.3-1.6-3.5c0.5,0,1-0.1,1.5-0.1c0.3,0.9,0.7,1.8,1,2.7c0.3-1,0.7-1.9,1.1-2.8
|
||||
c0.5,0,1-0.1,1.5-0.1c-0.6,1.2-1.2,2.5-1.8,3.7c0.6,1.3,1.3,2.5,1.9,3.8C9.8,15.6,9.2,15.6,8.7,15.6z M21.3,19c-2.5,0-5,0-7.5,0
|
||||
c0-0.5,0-0.9,0-1.4c0.6,0,1.2,0,1.8,0c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0c0-0.3,0-0.6,0-0.9c0.6,0,1.2,0,1.8,0
|
||||
c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0c0-0.3,0-0.6,0-0.9c0.6,0,1.2,0,1.8,0c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0
|
||||
c0-0.3,0-0.6,0-0.9c0.6,0,1.2,0,1.8,0c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0c0-0.3,0-0.6,0-0.9c0.6,0,1.2,0,1.8,0
|
||||
c0-0.5,0-1.1,0-1.6c-0.6,0-1.2,0-1.8,0c0-0.5,0-0.9,0-1.4c2.5,0,5,0,7.5,0C21.3,9.5,21.3,14.3,21.3,19z"/>
|
||||
<path class="st8" d="M16.5,6.1c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,7.2,16.5,6.6,16.5,6.1z"/>
|
||||
<path class="st8" d="M16.5,8.6c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,9.7,16.5,9.1,16.5,8.6z"/>
|
||||
<path class="st8" d="M16.5,11.1c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,12.2,16.5,11.6,16.5,11.1z"/>
|
||||
<path class="st8" d="M16.5,13.6c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,14.7,16.5,14.1,16.5,13.6z"/>
|
||||
<path class="st8" d="M16.5,16.1c1.1,0,2.1,0,3.2,0c0,0.5,0,1.1,0,1.6c-1.1,0-2.1,0-3.2,0C16.5,17.2,16.5,16.6,16.5,16.1z"/>
|
||||
</g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_118_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_98_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.0 KiB |
152
ng2-components/ng2-alfresco-search/src/img/ft_ic_ms_powerpoint.svg
Executable file
@@ -0,0 +1,152 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<g>
|
||||
<path class="st14" d="M15.4,6.5c0,1,0,2,0,3c1,0,2,0,3,0C18.3,7.9,17,6.6,15.4,6.5z"/>
|
||||
<path class="st14" d="M22,5.2c0.1-0.5-0.4-0.9-0.9-0.9c-2.4,0-4.9,0-7.3,0c0-0.7,0-1.4,0-2h-1.3C9,2.8,5.5,3.4,2,4.1
|
||||
C2,9.4,2,14.7,2,20c3.5,0.6,6.9,1.2,10.4,1.8h1.4c0-0.8,0-1.5,0-2.3c2.3,0,4.5,0,6.8,0c0.4,0,0.8,0,1.2-0.2
|
||||
c0.3-0.4,0.2-0.9,0.2-1.4C22,13.7,22,9.4,22,5.2z M8.7,12.8C8.1,13,7.6,13,7,13c0,0.9,0,1.8,0,2.7c-0.4,0-0.9-0.1-1.4-0.1
|
||||
c0-2.4,0-4.9,0-7.3c1.2,0.1,2.7-0.5,3.8,0.4C10.4,9.9,10.1,12,8.7,12.8z M21.3,18.8c-2.5,0-5,0-7.5,0c0-0.6,0-1.2,0-1.8
|
||||
c1.8,0,3.6,0,5.5,0c0-0.3,0-0.6,0-0.9c-1.8,0-3.6,0-5.5,0c0-0.4,0-0.8,0-1.1c1.8,0,3.6,0,5.5,0c0-0.3,0-0.6,0-0.9
|
||||
c-1.8,0-3.6,0-5.5,0c0-0.4,0-0.9,0-1.3c0.9,0.3,1.9,0.3,2.7-0.3c0.9-0.5,1.3-1.5,1.4-2.5c-1,0-2,0-3,0c0-1,0-2,0-3
|
||||
c-0.4,0.1-0.7,0.1-1.1,0.2c0-0.8,0-1.5,0-2.3c2.5,0,5,0,7.5,0C21.3,9.6,21.3,14.2,21.3,18.8z"/>
|
||||
<path class="st14" d="M7,9.5c0,0.8,0,1.5,0,2.3c0.5-0.1,1,0,1.3-0.5c0.2-0.5,0.2-1,0-1.5C8,9.4,7.4,9.4,7,9.5z"/>
|
||||
</g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_116_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_96_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.3 KiB |
151
ng2-components/ng2-alfresco-search/src/img/ft_ic_ms_word.svg
Executable file
@@ -0,0 +1,151 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st11" d="M22,4.9c0-0.5-0.4-0.9-0.9-0.9c-2.4,0-4.9,0-7.3,0c0-0.6,0-1.2,0-1.8h-1.4C9,2.8,5.5,3.4,2,4.1
|
||||
C2,9.4,2,14.7,2,20c3.5,0.6,6.9,1.2,10.4,1.8h1.4c0-0.6,0-1.2,0-1.8c2.3,0,4.5,0,6.8,0c0.4,0,0.8,0,1.1-0.2
|
||||
c0.3-0.4,0.2-0.9,0.2-1.4C22,13.9,22,9.4,22,4.9z M9.6,15.1c-0.4,0.2-0.9,0-1.4,0c-0.3-1.5-0.7-3-0.9-4.5C7,12.1,6.6,13.5,6.3,15
|
||||
c-0.4,0-0.9,0-1.3-0.1c-0.4-2-0.8-4-1.2-6c0.4,0,0.8,0,1.2,0c0.2,1.4,0.5,2.9,0.7,4.3c0.3-1.5,0.6-3,1-4.5c0.4,0,0.9,0,1.3-0.1
|
||||
c0.3,1.5,0.6,3.1,0.9,4.6c0.3-1.6,0.5-3.1,0.8-4.7c0.5,0,0.9,0,1.4-0.1C10.6,10.7,10.1,12.9,9.6,15.1z M21.3,19.3
|
||||
c-2.5,0-5,0-7.5,0c0-0.6,0-1.2,0-1.8c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.4,0-0.8,0-1.1c2,0,3.9,0,5.9,0
|
||||
c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.4,0-0.8,0-1.1c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.4,0-0.8,0-1.1
|
||||
c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.4,0-0.8,0-1.1c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0
|
||||
c0-0.4,0-0.8,0-1.1c2,0,3.9,0,5.9,0c0-0.3,0-0.6,0-0.9c-2,0-3.9,0-5.9,0c0-0.5,0-1.1,0-1.6c2.5,0,5,0,7.5,0
|
||||
C21.3,9.6,21.3,14.4,21.3,19.3z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_120_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_100_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 7.4 KiB |
144
ng2-components/ng2-alfresco-search/src/img/ft_ic_pdf.svg
Executable file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<path class="st19" d="M19,3c0.5,0,1,0.2,1.4,0.6C20.8,4,21,4.4,21,5v14c0,0.5-0.2,1-0.6,1.4C20,20.8,19.6,21,19,21H5
|
||||
c-0.5,0-1-0.2-1.4-0.6C3.2,20,3,19.5,3,19V5c0-0.5,0.2-1,0.6-1.4S4.5,3,5,3H19z M9.5,11.5v-1c0-0.4-0.1-0.8-0.4-1.1
|
||||
C8.7,9.1,8.4,9,8,9H5.5v6H7v-2h1c0.4,0,0.8-0.1,1.1-0.4C9.3,12.3,9.5,11.9,9.5,11.5z M7,11.5h1v-1H7V11.5z M14.5,13.5v-3
|
||||
c0-0.4-0.1-0.8-0.4-1.1C13.8,9.1,13.4,9,13,9h-2.5v6H13c0.4,0,0.8-0.1,1.1-0.4C14.4,14.2,14.5,13.9,14.5,13.5z M12,13.5h1v-3h-1
|
||||
V13.5z M18.5,10.5V9h-3v6H17v-2h1.5v-1.5H17v-1H18.5z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_62_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_42_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.9 KiB |
142
ng2-components/ng2-alfresco-search/src/img/ft_ic_presentation.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st14" d="M18,4H6C4.9,4,4,4.9,4,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M17,14H7V8h10V14z"/>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_76_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_56_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
143
ng2-components/ng2-alfresco-search/src/img/ft_ic_raster_image.svg
Executable file
@@ -0,0 +1,143 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st8" d="M21,19V5c0-1.1-0.9-2-2-2H5C3.9,3,3,3.9,3,5v14c0,1.1,0.9,2,2,2h14C20.1,21,21,20.1,21,19z M8.5,13.5l2.5,3
|
||||
l3.5-4.5l4.5,6H5L8.5,13.5z"/>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_64_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_44_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
151
ng2-components/ng2-alfresco-search/src/img/ft_ic_spreadsheet.svg
Executable file
@@ -0,0 +1,151 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<g>
|
||||
<rect x="8" y="14" class="st8" width="2" height="2"/>
|
||||
<rect x="11" y="14" class="st8" width="5" height="2"/>
|
||||
<rect x="8" y="11" class="st8" width="2" height="2"/>
|
||||
<rect x="8" y="8" class="st8" width="2" height="2"/>
|
||||
<path class="st8" d="M19,4H5C4.5,4,4,4.5,4,5v14c0,0.5,0.5,1,1,1h14c0.6,0,1-0.5,1-1V5C20,4.5,19.6,4,19,4z M17,17H7V7h0v0h10v0
|
||||
h0V17z"/>
|
||||
<rect x="11" y="8" class="st8" width="5" height="2"/>
|
||||
<rect x="11" y="11" class="st8" width="5" height="2"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_78_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_58_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.8 KiB |
144
ng2-components/ng2-alfresco-search/src/img/ft_ic_vector_image.svg
Executable file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" y="0" class="st0" width="24" height="24"/>
|
||||
<path class="st13" d="M18,4H6C4.9,4,4,4.9,4,6v12c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V6C20,4.9,19.1,4,18,4z M7,10.5
|
||||
C7,8.6,8.6,7,10.5,7S14,8.6,14,10.5c0,0.2,0,0.3-0.1,0.5H11v2.9c-0.2,0-0.3,0.1-0.5,0.1C8.6,14,7,12.4,7,10.5z M17,17h-5v-5l5,0
|
||||
V17z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_72_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_52_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
144
ng2-components/ng2-alfresco-search/src/img/ft_ic_video.svg
Executable file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<rect x="0" class="st0" width="24" height="24"/>
|
||||
<path class="st14" d="M18,3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3H18z M8,17H6v-2h2V17z M8,13H6v-2h2V13z M8,9H6V7h2V9z
|
||||
M18,17h-2v-2h2V17z M18,13h-2v-2h2V13z M18,9h-2V7h2V9z"/>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_36_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_34_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.6 KiB |
142
ng2-components/ng2-alfresco-search/src/img/ft_ic_website.svg
Executable file
@@ -0,0 +1,142 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
||||
height="24px" viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:none;}
|
||||
.st1{clip-path:url(#SVGID_2_);}
|
||||
.st2{fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st3{opacity:0.4;}
|
||||
.st4{clip-path:url(#SVGID_4_);fill:none;stroke:#000000;stroke-width:0.25;stroke-miterlimit:10;}
|
||||
.st5{clip-path:url(#SVGID_4_);}
|
||||
.st6{fill:#FFFFFF;}
|
||||
.st7{fill:none;stroke:#000000;stroke-width:3;stroke-miterlimit:10;}
|
||||
.st8{fill:#22BE73;}
|
||||
.st9{fill:#D9E021;}
|
||||
.st10{fill-rule:evenodd;clip-rule:evenodd;}
|
||||
.st11{fill:#2979FF;}
|
||||
.st12{fill:#00B0FF;}
|
||||
.st13{fill:#FF6D40;}
|
||||
.st14{fill:#FFC107;}
|
||||
.st15{fill:#E91E63;}
|
||||
.st16{opacity:0.5;fill:#FFFFFF;}
|
||||
.st17{opacity:0.2;}
|
||||
.st18{fill:#651FFF;}
|
||||
.st19{fill-rule:evenodd;clip-rule:evenodd;fill:#E91E63;}
|
||||
.st20{display:none;}
|
||||
</style>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_border" viewBox="0 -48 48 48">
|
||||
<rect y="-48" class="st0" width="48" height="48"/>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_grid" viewBox="0 -48 48 48">
|
||||
<g>
|
||||
<defs>
|
||||
<rect id="SVGID_1_" x="0" y="-48" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_2_">
|
||||
<use xlink:href="#SVGID_1_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<g class="st1">
|
||||
<g>
|
||||
<line class="st2" x1="2" y1="-48" x2="2" y2="0"/>
|
||||
<line class="st2" x1="4" y1="-48" x2="4" y2="0"/>
|
||||
<line class="st2" x1="6" y1="-48" x2="6" y2="0"/>
|
||||
<line class="st2" x1="8" y1="-48" x2="8" y2="0"/>
|
||||
<line class="st2" x1="10" y1="-48" x2="10" y2="0"/>
|
||||
<line class="st2" x1="12" y1="-48" x2="12" y2="0"/>
|
||||
<line class="st2" x1="14" y1="-48" x2="14" y2="0"/>
|
||||
<line class="st2" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st2" x1="18" y1="-48" x2="18" y2="0"/>
|
||||
<line class="st2" x1="20" y1="-48" x2="20" y2="0"/>
|
||||
<line class="st2" x1="22" y1="-48" x2="22" y2="0"/>
|
||||
<line class="st2" x1="24" y1="-48" x2="24" y2="0"/>
|
||||
<line class="st2" x1="26" y1="-48" x2="26" y2="0"/>
|
||||
<line class="st2" x1="28" y1="-48" x2="28" y2="0"/>
|
||||
<line class="st2" x1="30" y1="-48" x2="30" y2="0"/>
|
||||
<line class="st2" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st2" x1="34" y1="-48" x2="34" y2="0"/>
|
||||
<line class="st2" x1="36" y1="-48" x2="36" y2="0"/>
|
||||
<line class="st2" x1="38" y1="-48" x2="38" y2="0"/>
|
||||
<line class="st2" x1="40" y1="-48" x2="40" y2="0"/>
|
||||
<line class="st2" x1="42" y1="-48" x2="42" y2="0"/>
|
||||
<line class="st2" x1="44" y1="-48" x2="44" y2="0"/>
|
||||
<line class="st2" x1="46" y1="-48" x2="46" y2="0"/>
|
||||
</g>
|
||||
<g>
|
||||
<line class="st2" x1="0" y1="-2" x2="48" y2="-2"/>
|
||||
<line class="st2" x1="0" y1="-4" x2="48" y2="-4"/>
|
||||
<line class="st2" x1="0" y1="-6" x2="48" y2="-6"/>
|
||||
<line class="st2" x1="0" y1="-8" x2="48" y2="-8"/>
|
||||
<line class="st2" x1="0" y1="-10" x2="48" y2="-10"/>
|
||||
<line class="st2" x1="0" y1="-12" x2="48" y2="-12"/>
|
||||
<line class="st2" x1="0" y1="-14" x2="48" y2="-14"/>
|
||||
<line class="st2" x1="0" y1="-16" x2="48" y2="-16"/>
|
||||
<line class="st2" x1="0" y1="-18" x2="48" y2="-18"/>
|
||||
<line class="st2" x1="0" y1="-20" x2="48" y2="-20"/>
|
||||
<line class="st2" x1="0" y1="-22" x2="48" y2="-22"/>
|
||||
<line class="st2" x1="0" y1="-24" x2="48" y2="-24"/>
|
||||
<line class="st2" x1="0" y1="-26" x2="48" y2="-26"/>
|
||||
<line class="st2" x1="0" y1="-28" x2="48" y2="-28"/>
|
||||
<line class="st2" x1="0" y1="-30" x2="48" y2="-30"/>
|
||||
<line class="st2" x1="0" y1="-32" x2="48" y2="-32"/>
|
||||
<line class="st2" x1="0" y1="-34" x2="48" y2="-34"/>
|
||||
<line class="st2" x1="0" y1="-36" x2="48" y2="-36"/>
|
||||
<line class="st2" x1="0" y1="-38" x2="48" y2="-38"/>
|
||||
<line class="st2" x1="0" y1="-40" x2="48" y2="-40"/>
|
||||
<line class="st2" x1="0" y1="-42" x2="48" y2="-42"/>
|
||||
<line class="st2" x1="0" y1="-44" x2="48" y2="-44"/>
|
||||
<line class="st2" x1="0" y1="-46" x2="48" y2="-46"/>
|
||||
</g>
|
||||
<g>
|
||||
<path d="M47.8-0.2v-47.5H0.2v47.5H47.8 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<symbol id="material_x5F_system_x5F_icon_x5F_keylines" viewBox="0 -48 48 48">
|
||||
<g class="st3">
|
||||
<defs>
|
||||
<rect id="SVGID_3_" x="0" y="-48" class="st3" width="48" height="48"/>
|
||||
</defs>
|
||||
<clipPath id="SVGID_4_">
|
||||
<use xlink:href="#SVGID_3_" style="overflow:visible;"/>
|
||||
</clipPath>
|
||||
<line class="st4" x1="24" y1="0" x2="24" y2="-48"/>
|
||||
<line class="st4" x1="48" y1="-24" x2="0" y2="-24"/>
|
||||
<line class="st4" x1="48" y1="-16" x2="0" y2="-16"/>
|
||||
<line class="st4" x1="48" y1="-32" x2="0" y2="-32"/>
|
||||
<line class="st4" x1="32" y1="-48" x2="32" y2="0"/>
|
||||
<line class="st4" x1="16" y1="-48" x2="16" y2="0"/>
|
||||
<line class="st4" x1="47.7" y1="-0.3" x2="0.2" y2="-47.8"/>
|
||||
<line class="st4" x1="0.2" y1="-0.3" x2="47.7" y2="-47.8"/>
|
||||
<path class="st4" d="M24-14c-5.5,0-10-4.5-10-10c0-5.5,4.5-10,10-10c5.5,0,10,4.5,10,10C34-18.5,29.5-14,24-14z"/>
|
||||
<path class="st4" d="M24-4C12.9-4,4-12.9,4-24c0-11.1,8.9-20,20-20c11.1,0,20,8.9,20,20C44-12.9,35.1-4,24-4z"/>
|
||||
<path class="st4" d="M38-6H10c-2.2,0-4-1.8-4-4v-28c0-2.2,1.8-4,4-4h28c2.2,0,4,1.8,4,4v28C42-7.8,40.2-6,38-6z"/>
|
||||
<path class="st4" d="M40-8H8c-2.2,0-4-1.8-4-4v-24c0-2.2,1.8-4,4-4h32c2.2,0,4,1.8,4,4l0,24C44-9.8,42.2-8,40-8z"/>
|
||||
<path class="st4" d="M40-40v32c0,2.2-1.8,4-4,4H12C9.8-4,8-5.8,8-8v-32c0-2.2,1.8-4,4-4h24C38.2-44,40-42.2,40-40z"/>
|
||||
<g class="st5">
|
||||
<path d="M47.7-0.3v-47.5H0.2v47.5H47.7 M48,0H0v-48h48V0L48,0z"/>
|
||||
</g>
|
||||
</g>
|
||||
</symbol>
|
||||
<g id="label">
|
||||
</g>
|
||||
<g id="border">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_border" width="48" height="48" y="-48" transform="matrix(0.5 0 0 -0.5 3.916831e-04 5.698877e-05)" style="overflow:visible;"/>
|
||||
</g>
|
||||
<g id="icon">
|
||||
<g>
|
||||
<path class="st0" d="M0,0h24v24H0V0z"/>
|
||||
<path class="st11" d="M9.4,16.6L4.8,12l4.6-4.6L8,6l-6,6l6,6L9.4,16.6z M14.6,16.6l4.6-4.6l-4.6-4.6L16,6l6,6l-6,6L14.6,16.6z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="grid" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_grid" width="48" height="48" id="XMLID_70_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.139775e-04 -2.620241e-04)" style="display:inline;overflow:visible;opacity:0.15;"/>
|
||||
</g>
|
||||
<g id="keylines" class="st20">
|
||||
|
||||
<use xlink:href="#material_x5F_system_x5F_icon_x5F_keylines" width="48" height="48" id="XMLID_50_" x="0" y="-48" transform="matrix(0.5 0 0 -0.5 1.709663e-04 -2.924798e-04)" style="display:inline;overflow:visible;"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
@@ -30,13 +30,11 @@ declare let AlfrescoApi: any;
|
||||
* Internal service used by Document List component.
|
||||
*/
|
||||
@Injectable()
|
||||
export class AlfrescoService {
|
||||
export class AlfrescoSearchService {
|
||||
|
||||
constructor(
|
||||
private settings: AlfrescoSettingsService,
|
||||
private authService: AlfrescoAuthenticationService,
|
||||
private contentService: AlfrescoContentService
|
||||
) {
|
||||
constructor(private settings: AlfrescoSettingsService,
|
||||
private authService: AlfrescoAuthenticationService,
|
||||
private contentService: AlfrescoContentService) {
|
||||
}
|
||||
|
||||
private getAlfrescoClient() {
|
||||
@@ -60,23 +58,14 @@ export class AlfrescoService {
|
||||
* @param term Search term
|
||||
* @returns {Observable<NodePaging>} Search results
|
||||
*/
|
||||
getLiveSearchResults(term: string) {
|
||||
public getLiveSearchResults(term: string): Observable<any> {
|
||||
return Observable.fromPromise(this.getSearchNodesPromise(term))
|
||||
.map(res => <any> res)
|
||||
.do(data => console.log('Search data', data)) // eyeball results in the console
|
||||
.catch(this.handleError);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get thumbnail URL for the given document node.
|
||||
* @param document Node to get URL for.
|
||||
* @returns {string} URL address.
|
||||
*/
|
||||
getDocumentThumbnailUrl(document: any) {
|
||||
return this.contentService.getDocumentThumbnailUrl(document);
|
||||
}
|
||||
|
||||
private handleError(error: any) {
|
||||
private handleError(error: any): Observable<any> {
|
||||
// in a real world app, we may send the error to some remote logging infrastructure
|
||||
// instead of just logging it to the console
|
||||
console.error(error);
|
@@ -0,0 +1,74 @@
|
||||
/*!
|
||||
* @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';
|
||||
|
||||
declare let AlfrescoApi: any;
|
||||
|
||||
@Injectable()
|
||||
export class AlfrescoThumbnailService {
|
||||
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 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 getMimeTypeIcon(mimeType: string): string {
|
||||
let icon = this.mimeTypeIcons[mimeType];
|
||||
return icon || 'ft_ic_miscellaneous.svg';
|
||||
}
|
||||
}
|