Browse Source

Some new icons.

pull/103/head
Sebastian Stehle 9 years ago
parent
commit
11e0a46ff6
  1. 2
      src/Squidex/app/features/schemas/pages/schema/field.component.html
  2. 8
      src/Squidex/app/shared/interceptors/auth.interceptor.ts
  3. 2
      src/Squidex/app/shared/services/auth.service.ts
  4. 8
      src/Squidex/app/shell/pages/app/left-menu.component.html
  5. 2
      src/Squidex/app/theme/icomoon/demo-files/demo.css
  6. 1296
      src/Squidex/app/theme/icomoon/demo.html
  7. BIN
      src/Squidex/app/theme/icomoon/fonts/icomoon.eot
  8. 11
      src/Squidex/app/theme/icomoon/fonts/icomoon.svg
  9. BIN
      src/Squidex/app/theme/icomoon/fonts/icomoon.ttf
  10. BIN
      src/Squidex/app/theme/icomoon/fonts/icomoon.woff
  11. 144
      src/Squidex/app/theme/icomoon/icons/add-app.svg
  12. 87
      src/Squidex/app/theme/icomoon/icons/api.svg
  13. 75
      src/Squidex/app/theme/icomoon/icons/assets.svg
  14. 51
      src/Squidex/app/theme/icomoon/icons/content.svg
  15. 81
      src/Squidex/app/theme/icomoon/icons/contents.svg
  16. 116
      src/Squidex/app/theme/icomoon/icons/dashboard-api.svg
  17. 130
      src/Squidex/app/theme/icomoon/icons/dashboard-feedback.svg
  18. 109
      src/Squidex/app/theme/icomoon/icons/dashboard-github.svg
  19. 121
      src/Squidex/app/theme/icomoon/icons/dashboard-schema.svg
  20. 74
      src/Squidex/app/theme/icomoon/icons/dashboard.svg
  21. 78
      src/Squidex/app/theme/icomoon/icons/schemas.svg
  22. 105
      src/Squidex/app/theme/icomoon/icons/webhooks.svg
  23. 1702
      src/Squidex/app/theme/icomoon/selection.json
  24. 294
      src/Squidex/app/theme/icomoon/style.css
  25. BIN
      src/Squidex/wwwroot/images/add-app.png
  26. BIN
      src/Squidex/wwwroot/images/dashboard-api.png
  27. BIN
      src/Squidex/wwwroot/images/dashboard-feedback.png
  28. BIN
      src/Squidex/wwwroot/images/dashboard-github.png
  29. BIN
      src/Squidex/wwwroot/images/dashboard-schema.png

2
src/Squidex/app/features/schemas/pages/schema/field.component.html

@ -58,7 +58,7 @@
</div>
</div>
<div class="table-items-row-details" *ngIf="isEditing" (dragstart)="alert('ff');">
<div class="table-items-row-details" *ngIf="isEditing">
<form [formGroup]="editForm" (ngSubmit)="save()" [attr.disabled]="field.isLocked">
<div class="table-items-row-details-tabs clearfix">
<ul class="nav nav-inline nav-field-tabs">

8
src/Squidex/app/shared/interceptors/auth.interceptor.ts

@ -45,7 +45,13 @@ export class AuthInterceptor implements HttpInterceptor {
return next.handle(authReq)
.catch((error: HttpErrorResponse) => {
if (error.status === 401 && renew) {
return this.authService.loginSilent().switchMap(u => this.makeRequest(req, next, u));
return this.authService.loginSilent()
.catch(_ => {
this.authService.logoutRedirect();
return Observable.empty<Profile>();
})
.switchMap(u => this.makeRequest(req, next, u));
} else if (error.status === 401 || error.status === 403) {
this.authService.logoutRedirect();

2
src/Squidex/app/shared/services/auth.service.ts

@ -163,7 +163,7 @@ export class AuthService {
return observable.timeout(2000)
.retryWhen(errors => errors
.filter(e => e instanceof TimeoutError)
.mergeMap(e => e instanceof TimeoutError ? Observable.of(e) : Observable.throw(e))
.delay(500)
.take(5)
.concat(Observable.throw(new Error('Retry limit exceeded.'))));

8
src/Squidex/app/shell/pages/app/left-menu.component.html

@ -7,17 +7,17 @@
</li>
<li class="nav-item" *ngIf="permission">
<a class="nav-link" routerLink="content" routerLinkActive="active">
<i class="nav-icon icon-content"></i> <div class="nav-text">Content</div>
<i class="nav-icon icon-contents"></i> <div class="nav-text">Content</div>
</a>
</li>
<li class="nav-item" *ngIf="permission">
<a class="nav-link" routerLink="assets" routerLinkActive="active">
<i class="nav-icon icon-media"></i> <div class="nav-text">Assets</div>
<i class="nav-icon icon-assets"></i> <div class="nav-text">Assets</div>
</a>
</li>
<li class="nav-item" *ngIf="permission !== 'Editor'">
<a class="nav-link" routerLink="webhooks" routerLinkActive="active">
<i class="nav-icon icon-webhook"></i> <div class="nav-text">Webhooks</div>
<i class="nav-icon icon-webhooks"></i> <div class="nav-text">Webhooks</div>
</a>
</li>
<li class="nav-item" *ngIf="permission === 'Owner'">
@ -27,7 +27,7 @@
</li>
<li class="nav-item" *ngIf="permission !== 'Editor'">
<a class="nav-link" routerLink="api" routerLinkActive="active">
<i class="nav-icon icon-earth"></i> <div class="nav-text">API</div>
<i class="nav-icon icon-api"></i> <div class="nav-text">API</div>
</a>
</li>
</ul>

2
src/Squidex/app/theme/icomoon/demo-files/demo.css

@ -153,7 +153,7 @@ p {
font-size: 32px;
}
.fs3 {
font-size: 28px;
font-size: 32px;
}
.fs4 {
font-size: 32px;

1296
src/Squidex/app/theme/icomoon/demo.html

File diff suppressed because it is too large

BIN
src/Squidex/app/theme/icomoon/fonts/icomoon.eot

Binary file not shown.

11
src/Squidex/app/theme/icomoon/fonts/icomoon.svg

@ -16,7 +16,7 @@
<glyph unicode="&#xe906;" glyph-name="check-circle" d="M512 857.6c-226.202 0-409.6-183.398-409.6-409.6s183.398-409.6 409.6-409.6c226.202 0 409.6 183.398 409.6 409.6s-183.398 409.6-409.6 409.6zM512 806.4c197.632 0 358.4-160.819 358.4-358.4s-160.768-358.4-358.4-358.4c-197.632 0-358.4 160.819-358.4 358.4s160.768 358.4 358.4 358.4zM691.9 627c-12.893-0.002-25.782-4.882-35.5-14.6l-222.2-221.9-67.7 67.5c-19.19 19.294-51.085 19.215-70.3 0-19.15-19.15-19.15-51.050 0-70.2 0.198-0.2 26.198-26.681 52-53 12.95-13.209 25.761-26.372 35.2-36 4.719-4.814 8.607-8.755 11.2-11.4 1.296-1.322 2.293-2.281 2.9-2.9 0.279-0.282 0.488-0.486 0.6-0.6 0.001-0.001 7.591 7.429 14.6 14.3l-14.5-14.4 0.2-0.2v-0.1c19.43-19.327 51.57-19.327 71 0v0.1l258.1 257.6c19.546 19.447 19.521 51.885-0.1 71.3-9.731 9.679-22.607 14.502-35.5 14.5z" />
<glyph unicode="&#xe907;" glyph-name="check-circle-filled" d="M512-64c-282.778 0-512 229.222-512 512s229.222 512 512 512 512-229.222 512-512-229.222-512-512-512zM855.808 689.408c-19.2 19.2-50.278 19.2-69.478 0l-376.73-376.73-171.878 171.93c-19.2 19.2-50.278 19.2-69.478 0s-19.2-50.278 0-69.478c0 0 201.523-205.261 204.8-208.486 9.984-10.138 23.347-14.643 36.557-14.080 13.21-0.563 26.573 3.942 36.608 14.029 3.277 3.226 409.6 413.286 409.6 413.286 19.2 19.2 19.2 50.33 0 69.53z" />
<glyph unicode="&#xe908;" glyph-name="close" d="M601.024 448l276.736-276.736c24.512-24.576 24.512-64.384 0-89.024-24.64-24.576-64.384-24.576-89.024 0l-276.736 276.736-276.736-276.736c-24.512-24.576-64.384-24.576-89.024 0-24.512 24.64-24.512 64.448 0 89.024l276.736 276.736-276.736 276.736c-24.512 24.576-24.512 64.384 0 89.024 24.64 24.576 64.512 24.576 89.024 0l276.736-276.736 276.736 276.736c24.64 24.576 64.384 24.576 89.024 0 24.512-24.64 24.512-64.448 0-89.024l-276.736-276.736z" />
<glyph unicode="&#xe909;" glyph-name="content, type-References" d="M409.6 524.8h-153.6v-51.2h153.6v51.2zM409.6 627.2h-153.6v-51.2h153.6v51.2zM256 268.8h409.6v51.2h-409.6v-51.2zM409.6 729.6h-153.6v-51.2h153.6v51.2zM870.4 780.8h-51.2v51.2c0 28.262-22.938 51.2-51.2 51.2h-614.4c-28.262 0-51.2-22.938-51.2-51.2v-665.6c0-28.262 22.938-51.2 51.2-51.2h51.2v-51.2c0-28.262 22.938-51.2 51.2-51.2h614.4c28.262 0 51.2 22.938 51.2 51.2v665.6c0 28.262-22.938 51.2-51.2 51.2zM179.2 166.4c-14.157 0-25.6 11.443-25.6 25.6v614.4c0 14.131 11.443 25.6 25.6 25.6h563.2c14.157 0 25.6-11.469 25.6-25.6v-614.4c0-14.157-11.443-25.6-25.6-25.6h-563.2zM870.4 89.6c0-14.157-11.443-25.6-25.6-25.6h-563.2c-14.157 0-25.6 11.443-25.6 25.6v25.6h512c28.262 0 51.2 22.938 51.2 51.2v563.2h25.6c14.157 0 25.6-11.469 25.6-25.6v-614.4zM614.4 729.6h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-153.6c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v153.6c0 28.262-22.938 51.2-51.2 51.2zM614.4 524.8h-102.4v153.6h102.4v-153.6zM256 371.2h409.6v51.2h-409.6v-51.2z" />
<glyph unicode="&#xe909;" glyph-name="type-References" d="M409.6 524.8h-153.6v-51.2h153.6v51.2zM409.6 627.2h-153.6v-51.2h153.6v51.2zM256 268.8h409.6v51.2h-409.6v-51.2zM409.6 729.6h-153.6v-51.2h153.6v51.2zM870.4 780.8h-51.2v51.2c0 28.262-22.938 51.2-51.2 51.2h-614.4c-28.262 0-51.2-22.938-51.2-51.2v-665.6c0-28.262 22.938-51.2 51.2-51.2h51.2v-51.2c0-28.262 22.938-51.2 51.2-51.2h614.4c28.262 0 51.2 22.938 51.2 51.2v665.6c0 28.262-22.938 51.2-51.2 51.2zM179.2 166.4c-14.157 0-25.6 11.443-25.6 25.6v614.4c0 14.131 11.443 25.6 25.6 25.6h563.2c14.157 0 25.6-11.469 25.6-25.6v-614.4c0-14.157-11.443-25.6-25.6-25.6h-563.2zM870.4 89.6c0-14.157-11.443-25.6-25.6-25.6h-563.2c-14.157 0-25.6 11.443-25.6 25.6v25.6h512c28.262 0 51.2 22.938 51.2 51.2v563.2h25.6c14.157 0 25.6-11.469 25.6-25.6v-614.4zM614.4 729.6h-102.4c-28.262 0-51.2-22.938-51.2-51.2v-153.6c0-28.262 22.938-51.2 51.2-51.2h102.4c28.262 0 51.2 22.938 51.2 51.2v153.6c0 28.262-22.938 51.2-51.2 51.2zM614.4 524.8h-102.4v153.6h102.4v-153.6zM256 371.2h409.6v51.2h-409.6v-51.2z" />
<glyph unicode="&#xe90a;" glyph-name="control-Checkbox" d="M793.6 115.2c0-14.157-11.443-25.6-25.6-25.6h-665.6c-14.131 0-25.6 11.443-25.6 25.6v665.6c0 14.157 11.469 25.6 25.6 25.6h665.6c14.157 0 25.6-11.443 25.6-25.6v-102.4h51.2v128c0 28.262-22.938 51.2-51.2 51.2h-716.8c-28.262 0-51.2-22.938-51.2-51.2v-716.8c0-28.262 22.938-51.2 51.2-51.2h716.8c28.262 0 51.2 22.938 51.2 51.2v281.6h-51.2v-256zM991.078 722.253c-9.958 9.958-26.035 9.958-35.968 0l-391.91-391.91-238.31 238.31c-9.958 9.958-26.061 9.958-35.942 0-9.958-9.907-9.958-26.010 0-35.942l254.874-254.874c0.461-0.538 0.614-1.203 1.126-1.69 5.043-5.018 11.674-7.475 18.278-7.373 6.605-0.102 13.235 2.355 18.278 7.373 0.512 0.512 0.666 1.178 1.126 1.69l408.448 408.474c9.933 9.933 9.933 26.035 0 35.942z" />
<glyph unicode="&#xe90b;" glyph-name="control-Dropdown" d="M51.2 960c-28.262 0-51.2-22.938-51.2-51.2v-281.6c0-28.262 22.938-51.2 51.2-51.2h921.6c28.262 0 51.2 22.938 51.2 51.2v281.6c0 28.262-22.938 51.2-51.2 51.2h-921.6zM76.8 908.8h512v-281.6h-512c-14.157 0-25.6 11.443-25.6 25.6v230.4c0 14.157 11.443 25.6 25.6 25.6zM640 908.8h307.2c14.157 0 25.6-11.443 25.6-25.6v-230.4c0-14.157-11.443-25.6-25.6-25.6h-307.2v281.6zM716.8 806.4c-0.41-0.358 89.139-102.938 89.6-102.4 0.512 0 89.6 95.36 89.6 102.4 0-0.384-172.16 0-179.2 0zM128 524.8c-42.394 0-76.8-34.406-76.8-76.8s34.406-76.8 76.8-76.8c42.394 0 76.8 34.406 76.8 76.8s-34.406 76.8-76.8 76.8zM128 473.6c14.157 0 25.6-11.443 25.6-25.6s-11.443-25.6-25.6-25.6c-14.157 0-25.6 11.443-25.6 25.6s11.443 25.6 25.6 25.6zM307.2 473.6c-14.157 0-25.6-11.443-25.6-25.6s11.443-25.6 25.6-25.6h640c14.157 0 25.6 11.443 25.6 25.6s-11.443 25.6-25.6 25.6h-640zM128 320c-42.394 0-76.8-34.381-76.8-76.8s34.406-76.8 76.8-76.8c42.394 0 76.8 34.381 76.8 76.8s-34.406 76.8-76.8 76.8zM128 268.8c14.157 0 25.6-11.443 25.6-25.6s-11.443-25.6-25.6-25.6c-14.157 0-25.6 11.443-25.6 25.6s11.443 25.6 25.6 25.6zM307.2 268.8c-14.157 0-25.6-11.443-25.6-25.6s11.443-25.6 25.6-25.6h640c14.157 0 25.6 11.443 25.6 25.6s-11.443 25.6-25.6 25.6h-640zM128 115.2c-42.394 0-76.8-34.381-76.8-76.8s34.406-76.8 76.8-76.8c42.394 0 76.8 34.381 76.8 76.8s-34.406 76.8-76.8 76.8zM128 64c14.157 0 25.6-11.443 25.6-25.6s-11.443-25.6-25.6-25.6c-14.157 0-25.6 11.443-25.6 25.6s11.443 25.6 25.6 25.6zM307.2 64c-14.157 0-25.6-11.443-25.6-25.6s11.443-25.6 25.6-25.6h640c14.157 0 25.6 11.443 25.6 25.6s-11.443 25.6-25.6 25.6h-640z" />
<glyph unicode="&#xe90c;" glyph-name="control-Input" d="M512 960c-14.157 0-25.6-11.443-25.6-25.6s11.443-25.6 25.6-25.6h128v-870.4h-128c-14.157 0-25.6-11.443-25.6-25.6s11.443-25.6 25.6-25.6h307.2c14.157 0 25.6 11.443 25.6 25.6s-11.443 25.6-25.6 25.6h-128v870.4h128c14.157 0 25.6 11.443 25.6 25.6s-11.443 25.6-25.6 25.6h-307.2zM51.2 755.2c-28.262 0-51.2-22.938-51.2-51.2v-460.8c0-28.262 22.938-51.2 51.2-51.2h537.6v51.2h-512c-14.131 0-25.6 11.443-25.6 25.6v409.6c0 14.157 11.469 25.6 25.6 25.6h512v51.2h-537.6zM742.4 755.2v-51.2h204.8c14.157 0 25.6-11.443 25.6-25.6v-409.6c0-14.157-11.443-25.6-25.6-25.6h-204.8v-51.2h230.4c28.262 0 51.2 22.938 51.2 51.2v460.8c0 28.262-22.938 51.2-51.2 51.2h-230.4zM285.9 653c-0.589-0.051-1.161-0.048-1.75-0.15-8.243-0.051-16.396-4.474-20.85-13.050l-132.55-306.25c-6.656-12.749-2.866-28.981 8.5-36.2 11.341-7.219 25.97-2.749 32.6 10l27.65 63.85h170.5c0.512 0 0.914 0.224 1.4 0.25l27.45-64.050c6.63-12.749 21.136-17.269 32.4-10.050s15.005 23.451 8.4 36.2l-131.3 306.25c-4.454 8.576-12.432 12.973-20.65 13.050-0.614 0.102-1.211 0.099-1.8 0.15zM285.9 570.85l63.65-148.45h-127.9l64.25 148.45z" />
@ -24,7 +24,7 @@
<glyph unicode="&#xe90e;" glyph-name="control-TextArea" d="M0 960v-204.8h76.8v-76.8h51.2v76.8h76.8v204.8h-204.8zM819.2 960v-204.8h204.8v204.8h-204.8zM51.2 908.8h102.4v-102.4h-102.4v102.4zM870.4 908.8h102.4v-102.4h-102.4v102.4zM281.6 883.2v-51.2h102.4v51.2h-102.4zM486.4 883.2v-51.2h102.4v51.2h-102.4zM691.2 883.2v-51.2h102.4v51.2h-102.4zM333.25 755.2c-7.091 0.307-14.348-2.097-19.75-7.55l-74.75-74.75c-10.317-10.291-10.317-27.083 0-37.4s27.059-10.317 37.35 0l68.45 68.5h141.85v-486.4h-50.7c-7.117 0.307-14.348-2.097-19.75-7.55l-23.6-23.55c-10.317-10.317-10.317-27.083 0-37.4 10.291-10.317 27.109-10.317 37.4 0l17.25 17.3h129.75l18.050-18c10.394-10.368 27.181-10.368 37.6 0 10.368 10.394 10.368 27.181 0 37.6l-24 24c-5.478 5.478-12.682 7.907-19.85 7.6h-50.95v486.4h141.55l69.25-69.2c10.394-10.368 27.155-10.368 37.6 0 10.368 10.368 10.368 27.181 0 37.6l-75.2 75.2c-5.478 5.478-12.706 7.907-19.9 7.6h-357.65zM896 678.4v-102.4h51.2v102.4h-51.2zM76.8 576v-102.4h51.2v102.4h-51.2zM896 473.6v-102.4h51.2v102.4h-51.2zM76.8 371.2v-102.4h51.2v102.4h-51.2zM896 268.8v-102.4h51.2v102.4h-51.2zM76.8 166.4v-25.6h-76.8v-204.8h204.8v76.8h76.8v51.2h-76.8v76.8h-76.8v25.6h-51.2zM819.2 140.8v-76.8h-25.6v-51.2h25.6v-76.8h204.8v204.8h-204.8zM51.2 89.6h102.4v-102.4h-102.4v102.4zM870.4 89.6h102.4v-102.4h-102.4v102.4zM384 64v-51.2h102.4v51.2h-102.4zM588.8 64v-51.2h102.4v51.2h-102.4z" />
<glyph unicode="&#xe90f;" glyph-name="control-Toggle" d="M332.8 934.4c-127.258 0-230.4-103.142-230.4-230.4s103.142-230.4 230.4-230.4h358.4c127.258 0 230.4 103.142 230.4 230.4s-103.142 230.4-230.4 230.4h-358.4zM332.8 883.2h358.4c98.97 0 179.2-80.23 179.2-179.2s-80.23-179.2-179.2-179.2h-358.4c-98.97 0-179.2 80.23-179.2 179.2s80.23 179.2 179.2 179.2zM332.8 832c-70.707 0-128-57.293-128-128s57.293-128 128-128c70.707 0 128 57.293 128 128s-57.293 128-128 128zM332.8 780.8c42.419 0 76.8-34.381 76.8-76.8s-34.381-76.8-76.8-76.8c-42.419 0-76.8 34.381-76.8 76.8s34.381 76.8 76.8 76.8zM332.8 422.4c-127.258 0-230.4-103.142-230.4-230.4s103.142-230.4 230.4-230.4h358.4c127.258 0 230.4 103.142 230.4 230.4s-103.142 230.4-230.4 230.4h-358.4zM332.8 371.2h358.4c98.97 0 179.2-80.23 179.2-179.2s-80.23-179.2-179.2-179.2h-358.4c-98.97 0-179.2 80.23-179.2 179.2s80.23 179.2 179.2 179.2zM691.2 320c-70.707 0-128-57.293-128-128s57.293-128 128-128c70.707 0 128 57.293 128 128s-57.293 128-128 128zM691.2 268.8c42.419 0 76.8-34.381 76.8-76.8s-34.381-76.8-76.8-76.8c-42.419 0-76.8 34.381-76.8 76.8s34.381 76.8 76.8 76.8z" />
<glyph unicode="&#xe910;" glyph-name="copy" d="M204.8 908.8c-56.525 0-102.4-45.875-102.4-102.4v-512c0-56.525 45.875-102.4 102.4-102.4h409.6c56.525 0 102.4 45.875 102.4 102.4v512c0 56.525-45.875 102.4-102.4 102.4h-409.6zM204.8 857.6h409.6c28.262 0 51.2-22.886 51.2-51.2v-512c0-28.314-22.938-51.2-51.2-51.2h-409.6c-28.262 0-51.2 22.886-51.2 51.2v512c0 28.314 22.938 51.2 51.2 51.2zM768 755.2v-51.2c28.262 0 51.2-22.886 51.2-51.2v-512c0-28.314-22.938-51.2-51.2-51.2h-409.6c-28.262 0-51.2 22.886-51.2 51.2h-51.2c0-56.525 45.875-102.4 102.4-102.4h409.6c56.525 0 102.4 45.875 102.4 102.4v512c0 56.525-45.875 102.4-102.4 102.4z" />
<glyph unicode="&#xe911;" glyph-name="dashboard" d="M882.534 89.6h-792.243c-56.653 79.514-90.291 176.538-90.291 281.6 0 268.621 217.779 486.4 486.4 486.4s486.4-217.779 486.4-486.4c0-105.062-33.638-202.086-90.266-281.6zM512 805.146v-49.946h-51.2v49.946c-219.827-12.826-395.494-188.493-408.32-408.346h49.92v-51.2h-50.278c4.429-75.008 27.981-144.742 65.664-204.8h737.203c37.709 60.058 61.261 129.792 65.664 204.8h-50.253v51.2h49.894c-12.826 219.853-188.467 395.52-408.294 408.346zM486.4 243.2c-42.419 0-76.8 34.381-76.8 76.8s34.381 332.8 76.8 332.8c42.419 0 76.8-290.381 76.8-332.8s-34.381-76.8-76.8-76.8zM486.4 448c-14.131 0-25.6-113.843-25.6-128s11.469-25.6 25.6-25.6c14.157 0 25.6 11.443 25.6 25.6s-11.443 128-25.6 128z" />
<glyph unicode="&#xe911;" glyph-name="dashboard" d="M828.8-64h-633.6c-105.6 0-195.2 89.6-195.2 195.2v320c0 281.6 227.2 508.8 505.6 508.8 288 0 518.4-230.4 518.4-518.4v-310.4c0-105.6-89.6-195.2-195.2-195.2zM505.6 896c-243.2 0-441.6-198.4-441.6-441.6v-320c0-73.6 60.8-134.4 131.2-134.4h630.4c73.6 0 131.2 60.8 131.2 131.2v310.4c3.2 249.6-201.6 454.4-451.2 454.4zM512 291.2c-3.2 0-6.4 0-6.4 0-32 3.2-64 19.2-80 48l-192 278.4c-9.6 9.6-9.6 25.6 0 38.4 9.6 9.6 25.6 12.8 38.4 6.4l294.4-172.8c28.8-16 48-44.8 51.2-76.8s-6.4-64-28.8-89.6c-19.2-22.4-48-32-76.8-32zM364.8 531.2l108.8-160c6.4-9.6 19.2-19.2 32-19.2s25.6 3.2 35.2 12.8c9.6 9.6 12.8 22.4 9.6 35.2s-9.6 22.4-19.2 32l-166.4 99.2zM678.4 595.2c-6.4 0-12.8 3.2-19.2 6.4-16 9.6-19.2 28.8-9.6 44.8l54.4 83.2c9.6 16 28.8 19.2 44.8 9.6 19.2-12.8 22.4-35.2 12.8-48l-54.4-83.2c-6.4-9.6-16-12.8-28.8-12.8z" />
<glyph unicode="&#xe912;" glyph-name="delete, bin" d="M597.35 140.8c14.131 0 25.6 11.469 25.6 25.6v307.2c0 14.080-11.469 25.6-25.6 25.6s-25.6-11.52-25.6-25.6v-307.2c0-14.131 11.418-25.6 25.6-25.6zM776.55 755.2h-153.6v51.2c0 28.314-22.886 51.2-51.2 51.2h-102.4c-28.262 0-51.2-22.886-51.2-51.2v-51.2h-153.6c-28.262 0-51.2-22.886-51.2-51.2v-102.4c0-28.314 22.938-51.2 51.2-51.2v-460.8c0-28.314 22.938-51.2 51.2-51.2h409.6c28.314 0 51.2 22.886 51.2 51.2v460.8c28.314 0 51.2 22.886 51.2 51.2v102.4c0 28.314-22.938 51.2-51.2 51.2zM469.35 806.4h102.4v-51.2h-102.4v51.2zM725.35 89.6h-409.6v460.8h409.6v-460.8zM776.55 601.6h-512v102.4h512v-102.4zM443.75 140.8c14.131 0 25.6 11.469 25.6 25.6v307.2c0 14.080-11.469 25.6-25.6 25.6s-25.6-11.52-25.6-25.6v-307.2c0-14.131 11.469-25.6 25.6-25.6z" />
<glyph unicode="&#xe913;" glyph-name="delete-filled" d="M832 832h-192v64c0 35.392-28.608 64-64 64h-128c-35.328 0-64-28.608-64-64v-64h-192c-35.328 0-64-28.608-64-64v-128c0-35.392 28.672-64 64-64v-512c0-35.392 28.672-64 64-64h512c35.392 0 64 28.608 64 64v512c35.392 0 64 28.608 64 64v128c0 35.392-28.608 64-64 64zM448 896h128v-64h-128v64zM448 160c0-17.664-14.336-32-32-32s-32 14.336-32 32v320c0 17.6 14.336 32 32 32s32-14.4 32-32v-320zM640 160c0-17.664-14.336-32-32-32s-32 14.336-32 32v320c0 17.6 14.336 32 32 32s32-14.4 32-32v-320zM832 640h-640v128h640v-128z" />
<glyph unicode="&#xe914;" glyph-name="document-delete" d="M358.4 857.6c-28.314 0-51.2-22.886-51.2-51.2v-256h51.2v256h307.2v-153.6c0-28.314 22.886-51.2 51.2-51.2h153.6v-512h-358.4v-51.2h358.4c28.314 0 51.2 22.886 51.2 51.2v548.2l-219.8 219.8h-343.4zM716.8 770.2l117.4-117.4h-117.4v117.4zM332.8 499.2c-127.232 0-230.4-103.168-230.4-230.4s103.168-230.4 230.4-230.4c127.232 0 230.4 103.168 230.4 230.4s-103.168 230.4-230.4 230.4zM332.8 448c98.816 0 179.2-80.384 179.2-179.2s-80.384-179.2-179.2-179.2c-98.816 0-179.2 80.384-179.2 179.2s80.384 179.2 179.2 179.2zM227.2 294.4c-12.39 0-22.4-10.061-22.4-22.4v-6.4c0-12.39 10.010-22.4 22.4-22.4h211.2c12.39 0 22.4 10.010 22.4 22.4v6.4c0 12.39-10.061 22.4-22.4 22.4h-211.2z" />
@ -40,7 +40,7 @@
<glyph unicode="&#xe91e;" glyph-name="more, dots" d="M128 576c-70.656 0-128-57.344-128-128s57.344-128 128-128c70.656 0 128 57.344 128 128s-57.344 128-128 128zM512 576c-70.656 0-128-57.344-128-128s57.344-128 128-128c70.656 0 128 57.344 128 128s-57.344 128-128 128zM896 576c-70.656 0-128-57.344-128-128s57.344-128 128-128c70.656 0 128 57.344 128 128s-57.344 128-128 128z" />
<glyph unicode="&#xe91f;" glyph-name="pencil" d="M877.12 648.896l-66.304-66.368-228.224 228.224 66.368 66.368c25.216 25.152 66.048 25.152 91.264 0l136.896-137.024c25.216-25.216 25.216-65.984 0-91.2zM760.896 532.608l-386.176-386.112c-25.216-25.28-66.048-25.28-91.264 0l-136.96 136.896c-25.216 25.28-25.216 66.112 0 91.264l386.24 386.24 228.16-228.288zM64 64v191.872l191.936-191.872h-191.936z" />
<glyph unicode="&#xe920;" glyph-name="reference" d="M892.083 828.083c-73.523 73.498-193.152 73.498-266.65 0l-157.184-157.107c-9.958-10.035-9.958-26.214 0-36.275 10.061-9.984 26.24-9.984 36.25 0l157.133 157.107c53.504 53.555 140.672 53.555 194.176 0 53.581-53.504 53.581-140.672 0-194.176l-186.138-186.163c-53.53-53.581-140.672-53.581-194.176 0-10.086 10.010-26.24 10.010-36.275 0-10.035-10.086-10.035-26.189 0-36.25 36.787-36.736 84.992-55.117 133.325-55.117s96.589 18.432 133.376 55.117l186.163 186.214c73.498 73.472 73.498 193.152 0 266.65zM519.45 261.274l-157.082-157.082c-53.504-53.555-140.672-53.555-194.176 0-53.581 53.504-53.581 140.672 0 194.176l186.138 186.163c53.53 53.581 140.672 53.581 194.176 0 10.086-9.984 26.189-9.984 36.275 0 10.035 10.086 10.035 26.214 0 36.25-73.549 73.498-193.203 73.498-266.701 0l-186.163-186.163c-73.498-73.574-73.498-193.203 0-266.701 36.787-36.71 85.043-55.117 133.325-55.117 48.333 0 96.538 18.406 133.325 55.117l157.133 157.133c10.010 10.010 10.010 26.189 0 36.224-10.010 9.984-26.189 9.984-36.25 0z" />
<glyph unicode="&#xe921;" glyph-name="schemas" d="M15.667 578.278l486.4-205.235 9.933-1.997 9.958 1.997 486.4 205.235c9.446 3.994 15.642 13.312 15.642 23.654s-6.195 19.635-15.642 23.654l-486.4 205.235c-6.349 2.662-13.517 2.662-19.866 0l-486.4-205.235c-9.472-4.019-15.642-13.338-15.642-23.654s6.144-19.661 15.616-23.654zM512 779.29l420.454-177.357-420.454-177.382-420.454 177.382 420.454 177.357zM15.667 424.346l486.4-205.235 9.933-1.997 9.958 1.997 486.4 205.235c13.056 5.504 19.149 20.531 13.645 33.587-5.453 13.056-20.506 19.2-33.51 13.696l-476.493-201.062-476.442 201.088c-13.005 5.478-28.058-0.589-33.562-13.696-5.478-13.030 0.64-28.109 13.67-33.613zM988.493 317.722l-476.493-201.062-476.442 201.062c-13.005 5.53-28.058-0.589-33.562-13.67-5.478-13.030 0.614-28.109 13.67-33.613l486.4-205.235 9.933-1.997 9.958 1.997 486.4 205.235c13.056 5.53 19.149 20.557 13.645 33.613-5.453 13.030-20.506 19.2-33.51 13.67z" />
<glyph unicode="&#xe921;" glyph-name="schemas" d="M800-64h-576c-124.8 0-224 99.2-224 224v300.8c0 124.8 99.2 224 224 224h576c124.8 0 224-99.2 224-224v-300.8c0-124.8-99.2-224-224-224zM224 620.8c-89.6 0-160-70.4-160-160v-300.8c0-89.6 70.4-160 160-160h576c89.6 0 160 70.4 160 160v300.8c0 89.6-70.4 160-160 160h-576zM828.8 758.4h-633.6c-19.2 0-32 12.8-32 32s12.8 32 32 32h630.4c19.2 0 32-12.8 32-32s-12.8-32-28.8-32zM716.8 896h-409.6c-19.2 0-32 12.8-32 32s12.8 32 32 32h412.8c19.2 0 32-12.8 32-32s-16-32-35.2-32zM800 544v-64c0-48-38.4-83.2-83.2-83.2h-409.6c-44.8-3.2-83.2 35.2-83.2 83.2v64h-54.4v-64c0-76.8 64-140.8 140.8-140.8h406.4c76.8 0 140.8 64 140.8 140.8v64h-57.6z" />
<glyph unicode="&#xe922;" glyph-name="search" d="M939.776-43.776c-27.2-27.008-71.232-27.008-98.368 0l-168.96 168.96c-66.176-38.464-142.016-62.080-224-62.080-247.744 0-448.448 200.832-448.448 448.448 0 247.744 200.704 448.448 448.448 448.448 247.68 0 448.512-200.704 448.512-448.448 0-115.136-44.672-218.944-115.904-298.304l158.656-158.656c27.008-27.136 27.008-71.168 0.064-98.368zM448.448 831.872c-176.896 0-320.32-143.36-320.32-320.32s143.424-320.32 320.32-320.32c176.96 0 320.384 143.36 320.384 320.32s-143.488 320.32-320.384 320.32z" />
<glyph unicode="&#xe923;" glyph-name="settings" d="M1019.11 519.245c-1.946 13.747-14.438 23.398-28.16 21.888-16.947-1.843-34.253 0.589-50.048 7.091-52.25 21.504-77.261 81.459-55.757 133.709 6.605 15.846 16.947 29.85 30.208 40.602 10.803 8.653 12.698 24.294 4.352 35.354-28.902 37.99-62.797 71.706-100.838 100.045-10.701 8.090-25.805 6.451-34.662-3.661-28.8-33.254-75.546-44.262-116.198-27.546-40.704 16.742-66.099 57.498-63.206 101.453 0.845 13.338-8.755 25.19-21.99 27.008-47.002 6.605-94.797 6.605-142.054-0.077-13.722-1.946-23.398-14.387-21.862-28.211 1.843-16.896-0.614-34.202-7.168-49.997-21.504-52.25-81.408-77.21-133.632-55.706-15.821 6.502-29.85 16.947-40.602 30.157-8.653 10.752-24.32 12.698-35.379 4.301-37.99-28.851-71.68-62.694-100.045-100.762-8.090-10.701-6.451-25.83 3.635-34.637 33.28-28.902 44.288-75.597 27.546-116.301-16.742-40.653-57.498-66.048-101.427-63.155-13.363 0.845-25.19-8.755-26.982-21.99-6.63-47.002-6.63-94.822 0.102-142.080 1.946-13.696 14.387-23.322 28.16-21.811 16.896 1.818 34.202-0.691 50.022-7.168 52.224-21.53 77.21-81.459 55.706-133.734-6.502-15.795-16.947-29.773-30.157-40.525-10.803-8.73-12.698-24.346-4.352-35.354 28.877-38.042 62.822-71.731 100.813-100.122 1.741-1.357 3.661-2.355 5.606-3.2 9.933-4.045 21.709-1.536 29.082 6.938 28.826 33.178 75.571 44.262 116.275 27.52 40.653-16.742 66.048-57.498 63.13-101.453-0.819-13.338 8.755-25.165 22.067-27.059 47.002-6.579 94.72-6.554 142.029 0.102 13.645 1.971 23.347 14.464 21.811 28.237-1.843 16.947 0.691 34.253 7.194 50.048 21.504 52.25 81.459 77.21 133.658 55.68 15.795-6.528 29.85-16.947 40.55-30.157 8.704-10.803 24.346-12.698 35.405-4.326 37.99 28.902 71.654 62.746 100.096 100.813 7.987 10.675 6.4 25.805-3.712 34.662-33.254 28.826-44.288 75.571-27.546 116.224 16.742 40.73 57.498 66.099 101.453 63.232 13.338-0.922 25.139 8.678 27.008 21.965 6.554 47.002 6.502 94.771-0.128 142.003zM971.059 405.99c-56.141-5.274-105.702-41.114-127.642-94.464s-12.058-113.613 24.090-156.902c-17.69-21.478-37.453-41.318-58.854-59.315-12.749 11.213-27.392 20.352-43.238 26.854-78.259 32.282-168.243-5.197-200.499-83.584-6.502-15.718-10.291-32.563-11.29-49.536-27.853-2.56-55.859-2.637-83.61-0.077-5.274 56.090-41.114 105.677-94.464 127.616-53.35 21.99-113.613 11.981-156.928-24.064-21.504 17.69-41.318 37.453-59.29 58.88 11.213 12.723 20.352 27.392 26.906 43.136 32.205 78.387-5.274 168.294-83.584 200.55-15.821 6.502-32.589 10.342-49.613 11.366-2.534 27.853-2.586 55.859 0 83.558 56.090 5.299 105.626 41.088 127.565 94.438 21.965 53.402 12.058 113.638-24.090 156.902 17.69 21.555 37.478 41.395 58.88 59.341 12.749-11.213 27.392-20.352 43.213-26.854 78.285-32.256 168.218 5.248 200.474 83.558 6.528 15.795 10.342 32.589 11.366 49.613 27.853 2.509 55.808 2.56 83.558 0 5.299-56.090 41.139-105.6 94.49-127.59 53.35-21.939 113.638-12.006 156.902 24.090 21.504-17.741 41.293-37.453 59.29-58.854-11.213-12.8-20.352-27.392-26.854-43.213-32.256-78.31 5.248-168.294 83.507-200.499 15.846-6.502 32.691-10.342 49.638-11.392 2.56-27.853 2.611-55.808 0.077-83.558zM512 652.8c-113.101 0-204.8-91.699-204.8-204.8 0-113.126 91.699-204.826 204.8-204.826s204.8 91.699 204.8 204.826c0 113.101-91.699 204.8-204.8 204.8zM512 294.374c-84.813 0-153.6 68.813-153.6 153.626 0 84.838 68.787 153.6 153.6 153.6 84.838 0 153.6-68.762 153.6-153.6 0-84.813-68.762-153.626-153.6-153.626z" />
<glyph unicode="&#xe924;" glyph-name="type-Boolean" d="M77.005 857.395h128v-332.8c0-14.131 11.418-25.6 25.6-25.6 14.106 0 25.6 11.469 25.6 25.6v332.8h128c14.106 0 25.6 11.469 25.6 25.6 0 14.157-11.494 25.6-25.6 25.6h-307.2c-14.182 0-25.6-11.443-25.6-25.6 0-14.106 11.418-25.6 25.6-25.6zM947.405 243.021h-179.2v102.4h179.2c14.157 0 25.6 11.443 25.6 25.6s-11.443 25.6-25.6 25.6h-204.8c-14.182 0-25.6-11.443-25.6-25.6v-358.4c0-14.157 11.418-25.6 25.6-25.6 14.157 0 25.6 11.443 25.6 25.6v179.2h179.2c14.157 0 25.6 11.443 25.6 25.6s-11.494 25.6-25.6 25.6zM965.094 901.53c-9.958 9.933-26.112 9.933-36.045 0l-870.605-870.579c-9.958-9.984-9.958-26.086 0-36.045 10.010-9.984 26.112-9.984 36.045 0l870.605 870.579c9.958 9.933 9.958 26.086 0 36.045z" />
@ -70,12 +70,15 @@
<glyph unicode="&#xe93c;" glyph-name="info" d="M636.518 972.8c68.608 0 102.912-46.694 102.912-100.198 0-66.816-59.597-128.614-137.165-128.614-64.973 0-102.861 38.4-101.069 101.888 0 53.402 45.107 126.925 135.322 126.925zM425.421-51.2c-54.17 0-93.85 33.382-55.962 180.429l62.157 260.71c10.803 41.677 12.595 58.419 0 58.419-16.23 0-86.477-28.774-128.102-57.19l-27.034 45.056c131.686 111.923 283.187 177.51 348.211 177.51 54.118 0 63.13-65.178 36.096-165.376l-71.219-274.022c-12.595-48.384-7.219-65.075 5.427-65.075 16.23 0 69.478 20.070 121.805 61.798l30.72-41.677c-128.102-130.406-268.032-180.582-322.099-180.582z" />
<glyph unicode="&#xe93d;" glyph-name="bug" horiz-adv-x="951" d="M932.571 402.286c0-20-16.571-36.571-36.571-36.571h-128c0-71.429-15.429-125.143-38.286-165.714l118.857-119.429c14.286-14.286 14.286-37.143 0-51.429-6.857-7.429-16.571-10.857-25.714-10.857s-18.857 3.429-25.714 10.857l-113.143 112.571s-74.857-68.571-172-68.571v512h-73.143v-512c-103.429 0-178.857 75.429-178.857 75.429l-104.571-118.286c-7.429-8-17.143-12-27.429-12-8.571 0-17.143 2.857-24.571 9.143-14.857 13.714-16 36.571-2.857 52l115.429 129.714c-20 39.429-33.143 90.286-33.143 156.571h-128c-20 0-36.571 16.571-36.571 36.571s16.571 36.571 36.571 36.571h128v168l-98.857 98.857c-14.286 14.286-14.286 37.143 0 51.429s37.143 14.286 51.429 0l98.857-98.857h482.286l98.857 98.857c14.286 14.286 37.143 14.286 51.429 0s14.286-37.143 0-51.429l-98.857-98.857v-168h128c20 0 36.571-16.571 36.571-36.571zM658.286 731.428h-365.714c0 101.143 81.714 182.857 182.857 182.857s182.857-81.714 182.857-182.857z" />
<glyph unicode="&#xe93e;" glyph-name="download" d="M640 853.334q78 0 149.167-30.5t122.5-81.833 81.833-122.5 30.5-149.167q0-85-35-160.667t-96.667-129.167-140-77.5l21 20.667q18 18.333 28 42.667 9.333 22.667 9.333 49.333 0 6.667-0.333 9.333 59.333 41.333 93.833 105.833t34.5 139.5q0 60.667-23.667 116t-63.667 95.333-95.333 63.667-116 23.667q-55.333 0-106.5-19.833t-90-53.833-65-81.333-33.833-101h-88.667q-70.667 0-120.667-50t-50-120.667q0-38.667 15.167-71.667t39.833-54.167 54.833-33 60.833-11.833h50q11.667-29.333 30-48l37.667-37.333h-117.667q-69.667 0-128.5 34.333t-93.167 93.167-34.333 128.5 34.333 128.5 93.167 93.167 128.5 34.333h22q26.333 74.333 79.333 132.167t126.833 90.833 155.833 33zM554.667 512q17.667 0 30.167-12.5t12.5-30.167v-281l55 55.333q12.333 12.333 30.333 12.333 18.333 0 30.5-12.167t12.167-30.5q0-18-12.333-30.333l-128-128q-12.333-12.333-30.333-12.333t-30.333 12.333l-128 128q-12.333 13-12.333 30.333 0 17.667 12.5 30.167t30.167 12.5q18 0 30.333-12.333l55-55.333v281q0 17.667 12.5 30.167t30.167 12.5z" />
<glyph unicode="&#xe93f;" glyph-name="webhook" d="M524.792 917.333c-133.751 0-243.208-108.454-243.208-241 0-72.755 34.012-137.024 85.833-181.292l-115.167-187.458c-3.016 0.305-5.946 0.875-9.042 0.875-49.392 0-89.625-39.845-89.625-88.792s40.233-88.792 89.625-88.792c49.392 0 89.583 39.845 89.583 88.792 0 17.952-5.505 34.638-14.792 48.625l152.208 247.708-32.458 19.833c-47.549 29.077-79.333 80.999-79.333 140.5 0 91.263 74.283 164.875 166.375 164.875s166.417-73.612 166.417-164.875c0-14.491-1.921-28.493-5.458-41.875l74.292-19.292c5.167 19.548 7.958 40.089 7.958 61.167 0 132.546-109.457 241-243.208 241zM524.792 765.125c-49.392 0-89.583-39.845-89.583-88.792s40.191-88.792 89.583-88.792c1.932 0 3.765 0.422 5.667 0.542l136.375-242.5 33.5 18.417c23.855 13.109 51.195 20.583 80.458 20.583 92.092 0 166.417-73.654 166.417-164.917s-74.324-164.875-166.417-164.875c-52.606 0-99.199 24.144-129.792 61.875l-59.917-47.708c44.569-54.969 113.29-90.292 189.708-90.292 133.751 0 243.208 108.454 243.208 241s-109.457 241-243.208 241c-28.895 0-55.96-6.577-81.792-15.833l-101.333 180.208c10.44 14.518 16.75 32.153 16.75 51.292 0 48.947-40.233 88.792-89.625 88.792zM182.333 453.042c-104.909-26.881-182.333-121.59-182.333-233.375 0-132.546 109.457-241 243.208-241 120.157 0 216.178 89.065 235.375 202.958h221.625c14.445-29.878 44.991-50.75 80.583-50.75 49.392 0 89.625 39.845 89.625 88.792s-40.233 88.792-89.625 88.792c-35.592 0-66.138-20.831-80.583-50.708h-290.625v-38.083c0-91.263-74.283-164.875-166.375-164.875s-166.417 73.612-166.417 164.875c0 76.963 53.266 141.381 124.792 159.708l-19.25 73.667z" />
<glyph unicode="&#xe940;" glyph-name="microsoft" d="M0.35 448l-0.35 312.074 384 52.144v-364.218zM448 821.518l511.872 74.482v-448h-511.872zM959.998 384l-0.126-448-511.872 72.016v375.984zM384 16.164l-383.688 52.594-0.020 315.242h383.708z" />
<glyph unicode="&#xe941;" glyph-name="github" d="M512 960c-282.88 0-512-229.248-512-512 0-226.24 146.688-418.112 350.080-485.76 25.6-4.8 35.008 11.008 35.008 24.64 0 12.16-0.448 44.352-0.64 87.040-142.464-30.912-172.48 68.672-172.48 68.672-23.296 59.136-56.96 74.88-56.96 74.88-46.4 31.744 3.584 31.104 3.584 31.104 51.392-3.584 78.4-52.736 78.4-52.736 45.696-78.272 119.872-55.68 149.12-42.56 4.608 33.088 17.792 55.68 32.448 68.48-113.728 12.8-233.216 56.832-233.216 252.992 0 55.872 19.84 101.568 52.672 137.408-5.76 12.928-23.040 64.96 4.48 135.488 0 0 42.88 13.76 140.8-52.48 40.96 11.392 84.48 17.024 128 17.28 43.52-0.256 87.040-5.888 128-17.28 97.28 66.24 140.16 52.48 140.16 52.48 27.52-70.528 10.24-122.56 5.12-135.488 32.64-35.84 52.48-81.536 52.48-137.408 0-196.672-119.68-240-233.6-252.608 17.92-15.36 34.56-46.72 34.56-94.72 0-68.48-0.64-123.52-0.64-140.16 0-13.44 8.96-29.44 35.2-24.32 204.864 67.136 351.424 259.136 351.424 485.056 0 282.752-229.248 512-512 512z" />
<glyph unicode="&#xe942;" glyph-name="checkmark" d="M927.936 687.008l-68.288 68.288c-12.608 12.576-32.96 12.576-45.536 0l-409.44-409.44-194.752 196.16c-12.576 12.576-32.928 12.576-45.536 0l-68.288-68.288c-12.576-12.608-12.576-32.96 0-45.536l285.568-287.488c12.576-12.576 32.96-12.576 45.536 0l500.736 500.768c12.576 12.544 12.576 32.96 0 45.536z" />
<glyph unicode="&#xe943;" glyph-name="elapsed" d="M512.002 766.788v65.212h128v64c0 35.346-28.654 64-64.002 64h-191.998c-35.346 0-64-28.654-64-64v-64h128v-65.212c-214.798-16.338-384-195.802-384-414.788 0-229.75 186.25-416 416-416s416 186.25 416 416c0 218.984-169.202 398.448-384 414.788zM706.276 125.726c-60.442-60.44-140.798-93.726-226.274-93.726s-165.834 33.286-226.274 93.726c-60.44 60.44-93.726 140.8-93.726 226.274s33.286 165.834 93.726 226.274c58.040 58.038 134.448 91.018 216.114 93.548l-21.678-314.020c-1.86-26.29 12.464-37.802 31.836-37.802s33.698 11.512 31.836 37.802l-21.676 314.022c81.666-2.532 158.076-35.512 216.116-93.55 60.44-60.44 93.726-140.8 93.726-226.274s-33.286-165.834-93.726-226.274z" />
<glyph unicode="&#xe944;" glyph-name="timeout" d="M512 832c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448-200.576 448-448 448zM512 24c-198.824 0-360 161.178-360 360 0 198.824 161.176 360 360 360 198.822 0 360-161.176 360-360 0-198.822-161.178-360-360-360zM934.784 672.826c16.042 28.052 25.216 60.542 25.216 95.174 0 106.040-85.96 192-192 192-61.818 0-116.802-29.222-151.92-74.596 131.884-27.236 245.206-105.198 318.704-212.578v0zM407.92 885.404c-35.116 45.374-90.102 74.596-151.92 74.596-106.040 0-192-85.96-192-192 0-34.632 9.174-67.122 25.216-95.174 73.5 107.38 186.822 185.342 318.704 212.578zM512 384v256h-64v-320h256v64z" />
<glyph unicode="&#xe945;" glyph-name="api" d="M592 557.257h-156.8c-57.6 0-105.6 48-105.6 105.6v182.4c0 57.6 48 105.6 105.6 105.6h156.8c57.6 0 105.6-48 105.6-105.6v-182.4c-3.2-57.6-48-105.6-105.6-105.6zM432 886.857c-22.4 0-41.6-19.2-41.6-41.6v-182.4c0-22.4 19.2-41.6 41.6-41.6h156.8c22.4 0 41.6 19.2 41.6 41.6v182.4c0 22.4-19.2 41.6-41.6 41.6h-156.8zM195.2-73.143c-105.6 0-195.2 89.6-195.2 195.2 0 108.8 89.6 195.2 195.2 195.2s195.2-89.6 195.2-195.2c3.2-105.6-86.4-195.2-195.2-195.2zM195.2 256.457c-73.6 0-131.2-60.8-131.2-131.2 0-73.6 60.8-134.4 131.2-134.4 73.6 0 131.2 60.8 131.2 131.2 3.2 73.6-57.6 134.4-131.2 134.4zM828.8-73.143c-108.8 0-195.2 89.6-195.2 195.2 0 108.8 89.6 195.2 195.2 195.2s195.2-89.6 195.2-195.2c0-105.6-89.6-195.2-195.2-195.2zM828.8 256.457c-73.6 0-131.2-60.8-131.2-131.2 0-73.6 60.8-131.2 131.2-131.2 73.6 0 131.2 60.8 131.2 131.2s-60.8 131.2-131.2 131.2zM332.8 310.857c-6.4 0-12.8 0-16 3.2-16 9.6-19.2 28.8-9.6 44.8l83.2 137.6c9.6 16 28.8 19.2 44.8 9.6s19.2-28.8 9.6-44.8l-83.2-137.6c-6.4-6.4-16-12.8-28.8-12.8zM691.2 310.857c-9.6 0-22.4 6.4-28.8 16l-83.2 137.6c-9.6 16-3.2 35.2 9.6 44.8s35.2 3.2 44.8-9.6l83.2-137.6c9.6-16 3.2-35.2-9.6-44.8-6.4-6.4-12.8-6.4-16-6.4z" />
<glyph unicode="&#xe946;" glyph-name="contents" d="M800-73.143h-576c-124.8 0-224 99.2-224 224v576c0 124.8 99.2 224 224 224h576c124.8 0 224-99.2 224-224v-576c0-124.8-99.2-224-224-224zM224 886.857c-89.6 0-160-70.4-160-160v-576c0-89.6 70.4-160 160-160h576c89.6 0 160 70.4 160 160v576c0 89.6-70.4 160-160 160h-576zM480 502.857h-211.2c-57.6 0-105.6 48-105.6 105.6v73.6c0 57.6 48 105.6 105.6 105.6h211.2c57.6 0 105.6-48 105.6-105.6v-73.6c0-57.6-48-105.6-105.6-105.6zM268.8 723.657c-22.4 0-41.6-19.2-41.6-41.6v-73.6c0-22.4 19.2-41.6 41.6-41.6h211.2c22.4 0 41.6 19.2 41.6 41.6v73.6c0 22.4-19.2 41.6-41.6 41.6h-211.2zM828.8 339.657h-633.6c-19.2 0-32 12.8-32 32s12.8 32 32 32h630.4c19.2 0 32-12.8 32-32s-12.8-32-28.8-32zM553.6 173.257h-358.4c-19.2 0-32 12.8-32 32s12.8 32 32 32h355.2c19.2 0 32-12.8 32-32s-12.8-32-28.8-32z" />
<glyph unicode="&#xe947;" glyph-name="webhooks" d="M217.6-41.143c-3.2 0-3.2 0-6.4 0h-3.2c-144 25.6-208 144-208 249.6 0 99.2 57.6 208 185.6 240v147.2c0 19.2 12.8 32 32 32s32-12.8 32-32v-172.8c0-16-12.8-28.8-25.6-32-108.8-16-160-102.4-160-182.4s48-166.4 153.6-185.6h6.4c16-3.2 28.8-19.2 25.6-38.4-3.2-16-16-25.6-32-25.6zM774.4-50.743c0 0 0 0 0 0-102.4 0-211.2 60.8-243.2 185.6h-176c-19.2 0-32 12.8-32 32s12.8 32 32 32h201.6c16 0 28.8-12.8 32-25.6 16-108.8 102.4-156.8 182.4-160 80 0 166.4 48 185.6 153.6v3.2c3.2 16 19.2 28.8 38.4 25.6 16-3.2 28.8-19.2 25.6-38.4v-3.2c-22.4-140.8-140.8-204.8-246.4-204.8zM787.2 272.457c-19.2 0-32 12.8-32 32v176c0 16 12.8 28.8 25.6 32 108.8 16 156.8 102.4 160 182.4 0 80-48 166.4-153.6 185.6h-3.2c-19.2 6.4-32 22.4-28.8 38.4s19.2 28.8 38.4 25.6h3.2c144-25.6 208-144 208-249.6 0-99.2-60.8-208-185.6-240v-150.4c0-16-16-32-32-32zM41.6 704.457c-3.2 0-3.2 0-6.4 0-16 3.2-28.8 19.2-25.6 35.2v3.2c25.6 144 140.8 208 246.4 208 0 0 3.2 0 3.2 0 99.2 0 208-60.8 240-185.6h147.2c19.2 0 32-12.8 32-32s-12.8-32-32-32h-172.8c-16 0-28.8 12.8-32 25.6-16 108.8-102.4 156.8-182.4 160-80 0-166.4-48-185.6-153.6v-3.2c-3.2-16-16-25.6-32-25.6zM256 563.657c-32 0-67.2 12.8-92.8 38.4-51.2 51.2-51.2 134.4 0 185.6 25.6 22.4 57.6 35.2 92.8 35.2s67.2-12.8 92.8-38.4c25.6-25.6 38.4-57.6 38.4-92.8s-12.8-67.2-38.4-92.8c-25.6-22.4-57.6-35.2-92.8-35.2zM256 758.857c-16 0-32-6.4-44.8-19.2-25.6-25.6-25.6-67.2 0-92.8s67.2-25.6 92.8 0c12.8 12.8 19.2 28.8 19.2 48s-6.4 32-19.2 44.8-28.8 19.2-48 19.2zM771.2 77.257c-32 0-67.2 12.8-92.8 38.4-51.2 51.2-51.2 134.4 0 185.6 25.6 25.6 57.6 38.4 92.8 38.4s67.2-12.8 92.8-38.4c25.6-25.6 38.4-57.6 38.4-92.8s-12.8-67.2-38.4-92.8c-28.8-25.6-60.8-38.4-92.8-38.4zM771.2 272.457c-19.2 0-35.2-6.4-48-19.2-25.6-25.6-25.6-67.2 0-92.8s67.2-25.6 92.8 0c12.8 12.8 19.2 28.8 19.2 48s-6.4 35.2-19.2 48-28.8 16-44.8 16zM745.6 563.657c-32 0-67.2 12.8-92.8 38.4s-38.4 57.6-38.4 92.8 12.8 67.2 38.4 92.8c25.6 22.4 60.8 35.2 92.8 35.2s67.2-12.8 92.8-38.4c51.2-51.2 51.2-134.4 0-185.6v0c-25.6-22.4-57.6-35.2-92.8-35.2zM745.6 758.857c-19.2 0-35.2-6.4-48-19.2s-19.2-28.8-19.2-48 6.4-35.2 19.2-48c25.6-25.6 67.2-25.6 92.8 0s25.6 67.2 0 92.8c-9.6 16-25.6 22.4-44.8 22.4zM259.2 77.257c-32 0-67.2 12.8-92.8 38.4s-38.4 57.6-38.4 92.8 12.8 67.2 38.4 92.8c25.6 22.4 57.6 35.2 92.8 35.2s67.2-12.8 92.8-38.4c51.2-51.2 51.2-134.4 0-185.6v0c-25.6-22.4-57.6-35.2-92.8-35.2zM259.2 272.457c-19.2 0-35.2-6.4-48-19.2s-19.2-28.8-19.2-48 6.4-35.2 19.2-48c25.6-25.6 67.2-25.6 92.8 0s25.6 67.2 0 92.8c-9.6 16-25.6 22.4-44.8 22.4z" />
<glyph unicode="&#xe948;" glyph-name="assets" d="M800-73.143h-576c-124.8 0-224 99.2-224 224v576c0 124.8 99.2 224 224 224h576c124.8 0 224-99.2 224-224v-576c0-124.8-99.2-224-224-224zM224 886.857c-89.6 0-160-70.4-160-160v-576c0-89.6 70.4-160 160-160h576c89.6 0 160 70.4 160 160v576c0 89.6-70.4 160-160 160h-576zM771.2 90.057h-438.4c-12.8 0-22.4 6.4-28.8 19.2s-3.2 25.6 3.2 35.2l300.8 355.2c6.4 6.4 16 12.8 25.6 12.8s19.2-6.4 25.6-12.8l192-275.2c3.2-3.2 3.2-6.4 3.2-9.6 16-44.8 3.2-73.6-6.4-89.6-22.4-32-70.4-35.2-76.8-35.2zM403.2 154.057h371.2c6.4 0 22.4 3.2 25.6 9.6 3.2 3.2 3.2 12.8 0 25.6l-166.4 236.8-230.4-272zM332.8 448.457c-76.8 0-140.8 64-140.8 140.8s64 140.8 140.8 140.8 140.8-64 140.8-140.8-60.8-140.8-140.8-140.8zM332.8 666.057c-41.6 0-76.8-32-76.8-76.8s35.2-76.8 76.8-76.8 76.8 35.2 76.8 76.8-32 76.8-76.8 76.8z" />
<glyph unicode="&#xe9ca;" glyph-name="earth" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM512-0.002c-62.958 0-122.872 13.012-177.23 36.452l233.148 262.29c5.206 5.858 8.082 13.422 8.082 21.26v96c0 17.674-14.326 32-32 32-112.99 0-232.204 117.462-233.374 118.626-6 6.002-14.14 9.374-22.626 9.374h-128c-17.672 0-32-14.328-32-32v-192c0-12.122 6.848-23.202 17.69-28.622l110.31-55.156v-187.886c-116.052 80.956-192 215.432-192 367.664 0 68.714 15.49 133.806 43.138 192h116.862c8.488 0 16.626 3.372 22.628 9.372l128 128c6 6.002 9.372 14.14 9.372 22.628v77.412c40.562 12.074 83.518 18.588 128 18.588 70.406 0 137.004-16.26 196.282-45.2-4.144-3.502-8.176-7.164-12.046-11.036-36.266-36.264-56.236-84.478-56.236-135.764s19.97-99.5 56.236-135.764c36.434-36.432 85.218-56.264 135.634-56.26 3.166 0 6.342 0.080 9.518 0.236 13.814-51.802 38.752-186.656-8.404-372.334-0.444-1.744-0.696-3.488-0.842-5.224-81.324-83.080-194.7-134.656-320.142-134.656z" />
<glyph unicode="&#xf00a;" glyph-name="grid" d="M292.571 237.714v-109.714c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v109.714c0 30.286 24.571 54.857 54.857 54.857h182.857c30.286 0 54.857-24.571 54.857-54.857zM292.571 530.286v-109.714c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v109.714c0 30.286 24.571 54.857 54.857 54.857h182.857c30.286 0 54.857-24.571 54.857-54.857zM658.286 237.714v-109.714c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v109.714c0 30.286 24.571 54.857 54.857 54.857h182.857c30.286 0 54.857-24.571 54.857-54.857zM292.571 822.857v-109.714c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v109.714c0 30.286 24.571 54.857 54.857 54.857h182.857c30.286 0 54.857-24.571 54.857-54.857zM658.286 530.286v-109.714c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v109.714c0 30.286 24.571 54.857 54.857 54.857h182.857c30.286 0 54.857-24.571 54.857-54.857zM1024 237.714v-109.714c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v109.714c0 30.286 24.571 54.857 54.857 54.857h182.857c30.286 0 54.857-24.571 54.857-54.857zM658.286 822.857v-109.714c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v109.714c0 30.286 24.571 54.857 54.857 54.857h182.857c30.286 0 54.857-24.571 54.857-54.857zM1024 530.286v-109.714c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v109.714c0 30.286 24.571 54.857 54.857 54.857h182.857c30.286 0 54.857-24.571 54.857-54.857zM1024 822.857v-109.714c0-30.286-24.571-54.857-54.857-54.857h-182.857c-30.286 0-54.857 24.571-54.857 54.857v109.714c0 30.286 24.571 54.857 54.857 54.857h182.857c30.286 0 54.857-24.571 54.857-54.857z" />
<glyph unicode="&#xf0c9;" glyph-name="list" horiz-adv-x="878" d="M877.714 182.857v-73.143c0-20-16.571-36.571-36.571-36.571h-804.571c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h804.571c20 0 36.571-16.571 36.571-36.571zM877.714 475.428v-73.143c0-20-16.571-36.571-36.571-36.571h-804.571c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h804.571c20 0 36.571-16.571 36.571-36.571zM877.714 768v-73.143c0-20-16.571-36.571-36.571-36.571h-804.571c-20 0-36.571 16.571-36.571 36.571v73.143c0 20 16.571 36.571 36.571 36.571h804.571c20 0 36.571-16.571 36.571-36.571z" />

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 66 KiB

BIN
src/Squidex/app/theme/icomoon/fonts/icomoon.ttf

Binary file not shown.

BIN
src/Squidex/app/theme/icomoon/fonts/icomoon.woff

Binary file not shown.

144
src/Squidex/app/theme/icomoon/icons/add-app.svg

@ -0,0 +1,144 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 64 64"
style="enable-background:new 0 0 64 64;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="add-app.svg"
inkscape:export-filename="E:\Google Drive\Design Assets\Icons\New Icons - Aug 2017\add-app.png"
inkscape:export-xdpi="174.55"
inkscape:export-ydpi="174.55"><metadata
id="metadata8215"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8213" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="906"
inkscape:window-height="678"
id="namedview8211"
showgrid="false"
inkscape:zoom="3.6875"
inkscape:cx="32"
inkscape:cy="28.595187"
inkscape:window-x="2155"
inkscape:window-y="184"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style8137">
.st0{opacity:0;}
.st1{fill:#0074FF;}
.st2{fill:#B4BCC1;}
.st3{fill:#D7D7F9;}
.st4{fill:#2E3842;}
.st5{fill:#EDEDF9;}
.st6{fill:#B5B5EA;}
.st7{fill:#C7E0FF;}
.st8{fill:#7D878E;}
.st9{fill:#EEF6FF;}
.st10{opacity:0.2;}
.st11{fill:#3389FF;}
.st12{fill:#F2BDBD;}
.st13{fill:#F7DCDC;}
.st14{fill:#E29393;}
.st15{fill:#FFFFFF;}
.st16{fill:#F7F6E7;}
.st17{fill:#EFEBBF;}
.st18{fill:#FCFBEB;}
.st19{fill:#CEC395;}
.st20{fill:#F9C553;}
.st21{fill-rule:evenodd;clip-rule:evenodd;fill:#D6E2B3;}
.st22{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
.st23{fill:#77BA61;}
.st24{fill:#E7F7DC;}
</style><g
class="st0"
id="g8139"><rect
class="st1"
width="64"
height="64"
id="rect8141" /></g><g
id="g8143"><path
class="st2"
d="M11.8,16c0.2,0.4,0.2,0.9,0.2,1.3V19h1v-1.6c0-0.7-0.1-1.4-0.4-2c0,0,0,0,0,0l-0.1-3.1 c-0.4-1.2-0.3-2.5,0.4-3.5c0.6-1,1.6-1.6,2.7-1.7c0.1,0,0.3,0,0.4,0h7.2c2.4,0,4.6,0.9,6.3,2.6l4.7,4.7c2.1,2.1,4.8,3.2,7.7,3.2 h7.5c0.2,0,0.4,0,0.6,0v-2c-0.2,0-0.4,0-0.6,0h-7.5c-2.4,0-4.6-0.9-6.3-2.6l-4.7-4.7C28.8,6.1,26.1,5,23.2,5H16c-0.2,0-0.4,0-0.6,0 c-1.7,0.2-3.2,1.1-4.2,2.6c-1,1.6-1.2,3.5-0.6,5.3L11.8,16z"
id="path8145" /></g><g
id="g8147"><path
class="st3"
d="M3,24v-4.5C3,15.9,5.9,13,9.5,13h12.8c1.7,0,3.4,0.7,4.6,1.9l7.2,9.2c1.2,1.2,2.9,1.9,4.6,1.9h7.8 C55.1,26,61,30.9,61,39.5v15c0,3.6-3.9,6.5-7.5,6.5H9.5C5.9,61,3,58.1,3,54.5V24z"
id="path8149" /><path
class="st4"
d="M53.5,62H9.5C5.4,62,2,58.6,2,54.5V19.5C2,15.4,5.4,12,9.5,12h12.8c2,0,3.9,0.8,5.3,2.2c0,0,0.1,0.1,0.1,0.1 l7.2,9.2c1,1,2.4,1.6,3.8,1.6h7.8C55.9,25,62,30.7,62,39.5v15C62,58.8,57.5,62,53.5,62z M9.5,14c-3,0-5.5,2.5-5.5,5.5v35.1 c0,3,2.5,5.5,5.5,5.5h44.1c2.9,0,6.5-2.4,6.5-5.5v-15C60,31.8,54.8,27,46.5,27h-7.8c-2,0-3.9-0.8-5.3-2.2c0,0-0.1-0.1-0.1-0.1 l-7.2-9.2c-1-1-2.4-1.6-3.8-1.6H9.5z"
id="path8151" /></g><g
id="g8153"><path
class="st5"
d="M53,60H10c-3.8,0-6-2.2-6-6V20c0-3.8,2.2-6,6-6h12c2,0,3.6,1.2,4.7,2.3c0,0,0.1,0.1,0.1,0.1l7,8.9 c0.6,0.5,2.1,1.7,4.5,1.5l7.3,0C54.7,26.9,60,31.3,60,39v15C60,57.6,57.2,60,53,60z M10,16c-2.7,0-4,1.3-4,4v34c0,2.7,1.3,4,4,4h43 c2.3,0,5-1,5-4V39c0-8.8-7.9-10.1-12.5-10.1h-7.2c-2.2,0.1-4.4-0.6-6-2.1c0,0-0.1-0.1-0.1-0.1l-7-8.9C24,16.5,23.1,16,22,16H10z"
id="path8155" /></g><g
id="g8157"><g
id="g8159"><path
class="st6"
d="M22,41c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S24.8,41,22,41z M22,33c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3 S23.7,33,22,33z"
id="path8161" /></g></g><g
id="g8163"><g
id="g8165"><g
id="g8167"><path
class="st6"
d="M17,36c0-0.3,0-0.7,0.1-1H14c-0.6,0-1,0.4-1,1s0.4,1,1,1h3.1C17,36.7,17,36.3,17,36z"
id="path8169" /></g></g><g
id="g8171"><g
id="g8173"><path
class="st6"
d="M49,35H26.9c0.1,0.3,0.1,0.7,0.1,1s0,0.7-0.1,1H49c0.6,0,1-0.4,1-1S49.6,35,49,35z"
id="path8175" /></g></g></g><g
id="g8177"><g
id="g8179"><path
class="st6"
d="M41,52c-2.8,0-5-2.2-5-5s2.2-5,5-5s5,2.2,5,5S43.8,52,41,52z M41,44c-1.7,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3 S42.7,44,41,44z"
id="path8181" /></g></g><g
id="g8183"><g
id="g8185"><g
id="g8187"><path
class="st6"
d="M46,47c0-0.3,0-0.7-0.1-1H49c0.6,0,1,0.4,1,1s-0.4,1-1,1h-3.1C46,47.7,46,47.3,46,47z"
id="path8189" /></g></g><g
id="g8191"><g
id="g8193"><path
class="st6"
d="M14,46h22.1C36,46.3,36,46.7,36,47s0,0.7,0.1,1H14c-0.6,0-1-0.4-1-1S13.4,46,14,46z"
id="path8195" /></g></g></g><g
id="g8197"><circle
class="st11"
cx="51.9"
cy="12.1"
r="11.1"
id="circle8199" /><path
class="st15"
d="M51.9,24.2c-6.7,0-12.1-5.4-12.1-12.1S45.2,0,51.9,0S64,5.4,64,12.1S58.6,24.2,51.9,24.2z M51.9,2 c-5.6,0-10.1,4.5-10.1,10.1s4.5,10.1,10.1,10.1S62,17.7,62,12.1S57.5,2,51.9,2z"
id="path8201" /></g><g
id="g8203"><path
class="st15"
d="M57,13H47c-0.6,0-1-0.4-1-1s0.4-1,1-1h10c0.6,0,1,0.4,1,1S57.6,13,57,13z"
id="path8205" /></g><g
id="g8207"><path
class="st15"
d="M52,18c-0.6,0-1-0.4-1-1V7c0-0.6,0.4-1,1-1s1,0.4,1,1v10C53,17.6,52.6,18,52,18z"
id="path8209" /></g></svg>

After

Width:  |  Height:  |  Size: 6.0 KiB

87
src/Squidex/app/theme/icomoon/icons/api.svg

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 32 32"
style="enable-background:new 0 0 32 32;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="api.svg"><metadata
id="metadata5318"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs5316" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview5314"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="16"
inkscape:cy="16"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style5288">
.st0{opacity:0;}
.st1{fill:#FF3386;}
.st2{fill:#3389FF;}
</style><g
class="st0"
id="g5290"
style="fill:#000000"><rect
class="st1"
width="32"
height="32"
id="rect5292"
style="fill:#000000" /></g><g
id="g5294"
style="fill:#000000"><path
class="st2"
d="M18.5,12.3h-4.9c-1.8,0-3.3-1.5-3.3-3.3V3.3c0-1.8,1.5-3.3,3.3-3.3h4.9c1.8,0,3.3,1.5,3.3,3.3V9 C21.7,10.8,20.3,12.3,18.5,12.3z M13.5,2c-0.7,0-1.3,0.6-1.3,1.3V9c0,0.7,0.6,1.3,1.3,1.3h4.9c0.7,0,1.3-0.6,1.3-1.3V3.3 c0-0.7-0.6-1.3-1.3-1.3H13.5z"
id="path5296"
style="fill:#000000" /></g><g
id="g5298"
style="fill:#000000"><path
class="st2"
d="M6.1,32C2.8,32,0,29.2,0,25.9c0-3.4,2.8-6.1,6.1-6.1s6.1,2.8,6.1,6.1C12.3,29.2,9.5,32,6.1,32z M6.1,21.7 c-2.3,0-4.1,1.9-4.1,4.1C2,28.1,3.9,30,6.1,30c2.3,0,4.1-1.9,4.1-4.1C10.3,23.6,8.4,21.7,6.1,21.7z"
id="path5300"
style="fill:#000000" /></g><g
id="g5302"
style="fill:#000000"><path
class="st2"
d="M25.9,32c-3.4,0-6.1-2.8-6.1-6.1c0-3.4,2.8-6.1,6.1-6.1s6.1,2.8,6.1,6.1C32,29.2,29.2,32,25.9,32z M25.9,21.7 c-2.3,0-4.1,1.9-4.1,4.1c0,2.3,1.9,4.1,4.1,4.1c2.3,0,4.1-1.9,4.1-4.1C30,23.6,28.1,21.7,25.9,21.7z"
id="path5304"
style="fill:#000000" /></g><g
id="g5306"
style="fill:#000000"><path
class="st2"
d="M10.4,20c-0.2,0-0.4,0-0.5-0.1c-0.5-0.3-0.6-0.9-0.3-1.4l2.6-4.3c0.3-0.5,0.9-0.6,1.4-0.3 c0.5,0.3,0.6,0.9,0.3,1.4l-2.6,4.3C11.1,19.8,10.8,20,10.4,20z"
id="path5308"
style="fill:#000000" /></g><g
id="g5310"
style="fill:#000000"><path
class="st2"
d="M21.6,20c-0.3,0-0.7-0.2-0.9-0.5l-2.6-4.3c-0.3-0.5-0.1-1.1,0.3-1.4s1.1-0.1,1.4,0.3l2.6,4.3 c0.3,0.5,0.1,1.1-0.3,1.4C21.9,20,21.7,20,21.6,20z"
id="path5312"
style="fill:#000000" /></g></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

75
src/Squidex/app/theme/icomoon/icons/assets.svg

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 32 32"
style="enable-background:new 0 0 32 32;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="assets.svg"><metadata
id="metadata4745"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs4743" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview4741"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="16"
inkscape:cy="16"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style4723">
.st0{opacity:0;}
.st1{fill:#FF3386;}
.st2{fill:#3389FF;}
</style><g
class="st0"
id="g4725"
style="fill:#000000"><rect
class="st1"
width="32"
height="32"
id="rect4727"
style="fill:#000000" /></g><g
id="g4729"
style="fill:#000000"><path
class="st2"
d="M25,32H7c-3.9,0-7-3.1-7-7V7c0-3.9,3.1-7,7-7h18c3.9,0,7,3.1,7,7v18C32,28.9,28.9,32,25,32z M7,2 C4.2,2,2,4.2,2,7v18c0,2.8,2.2,5,5,5h18c2.8,0,5-2.2,5-5V7c0-2.8-2.2-5-5-5H7z"
id="path4731"
style="fill:#000000" /></g><g
id="g4733"
style="fill:#000000"><path
class="st2"
d="M24.1,26.9H10.4c-0.4,0-0.7-0.2-0.9-0.6c-0.2-0.4-0.1-0.8,0.1-1.1l9.4-11.1c0.2-0.2,0.5-0.4,0.8-0.4 c0.3,0,0.6,0.2,0.8,0.4l6,8.6c0.1,0.1,0.1,0.2,0.1,0.3c0.5,1.4,0.1,2.3-0.2,2.8C25.8,26.8,24.3,26.9,24.1,26.9z M12.6,24.9h11.6 c0.2,0,0.7-0.1,0.8-0.3c0.1-0.1,0.1-0.4,0-0.8l-5.2-7.4L12.6,24.9z"
id="path4735"
style="fill:#000000" /></g><g
id="g4737"
style="fill:#000000"><path
class="st2"
d="M10.4,15.7c-2.4,0-4.4-2-4.4-4.4s2-4.4,4.4-4.4s4.4,2,4.4,4.4S12.9,15.7,10.4,15.7z M10.4,8.9 C9.1,8.9,8,9.9,8,11.3s1.1,2.4,2.4,2.4s2.4-1.1,2.4-2.4S11.8,8.9,10.4,8.9z"
id="path4739"
style="fill:#000000" /></g></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

51
src/Squidex/app/theme/icomoon/icons/content.svg

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="40px"
height="40px"
viewBox="0 0 40 40"
enable-background="new 0 0 40 40"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="Content.svg"><metadata
id="metadata5254"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs5252" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="742"
inkscape:window-height="405"
id="namedview5250"
showgrid="false"
inkscape:zoom="2.95"
inkscape:cx="24.613618"
inkscape:cy="16.457566"
inkscape:window-x="2302"
inkscape:window-y="172"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><g
id="g5246"
style="fill:#000000"><path
id="path5248"
d="m 16,17 -6,0 0,2 6,0 0,-2 z m 0,-4 -6,0 0,2 6,0 0,-2 z m -6,14 16,0 0,-2 -16,0 0,2 z m 6,-18 -6,0 0,2 6,0 0,-2 z M 34,7 32,7 32,5 C 32,3.896 31.104,3 30,3 L 6,3 C 4.896,3 4,3.896 4,5 l 0,26 c 0,1.104 0.896,2 2,2 l 2,0 0,2 c 0,1.104 0.896,2 2,2 l 24,0 c 1.104,0 2,-0.896 2,-2 L 36,9 C 36,7.896 35.104,7 34,7 Z M 7,31 C 6.447,31 6,30.553 6,30 L 6,6 C 6,5.448 6.447,5 7,5 l 22,0 c 0.553,0 1,0.448 1,1 l 0,24 c 0,0.553 -0.447,1 -1,1 L 7,31 Z m 27,3 c 0,0.553 -0.447,1 -1,1 l -22,0 c -0.553,0 -1,-0.447 -1,-1 l 0,-1 20,0 c 1.104,0 2,-0.896 2,-2 l 0,-22 1,0 c 0.553,0 1,0.448 1,1 l 0,24 z M 24,9 20,9 c -1.104,0 -2,0.896 -2,2 l 0,6 c 0,1.104 0.896,2 2,2 l 4,0 c 1.104,0 2,-0.896 2,-2 l 0,-6 C 26,9.896 25.104,9 24,9 Z m 0,8 -4,0 0,-6 4,0 0,6 z m -14,6 16,0 0,-2 -16,0 0,2 z"
inkscape:connector-curvature="0"
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd" /></g></svg>

Before

Width:  |  Height:  |  Size: 2.5 KiB

81
src/Squidex/app/theme/icomoon/icons/contents.svg

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 32 32"
style="enable-background:new 0 0 32 32;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="content.svg"><metadata
id="metadata4180"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs4178" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview4176"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="12.474576"
inkscape:cy="16"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style4154">
.st0{opacity:0;}
.st1{fill:#FF3386;}
.st2{fill:#3389FF;}
</style><g
class="st0"
id="g4156"
style="fill:#000000"><rect
class="st1"
width="32"
height="32"
id="rect4158"
style="fill:#000000" /></g><g
id="g4160"
style="fill:#000000"><path
class="st2"
d="M25,32H7c-3.9,0-7-3.1-7-7V7c0-3.9,3.1-7,7-7h18c3.9,0,7,3.1,7,7v18C32,28.9,28.9,32,25,32z M7,2 C4.2,2,2,4.2,2,7v18c0,2.8,2.2,5,5,5h18c2.8,0,5-2.2,5-5V7c0-2.8-2.2-5-5-5H7z"
id="path4162"
style="fill:#000000" /></g><g
id="g4164"
style="fill:#000000"><path
class="st2"
d="M15,14H8.4c-1.8,0-3.3-1.5-3.3-3.3V8.4c0-1.8,1.5-3.3,3.3-3.3H15c1.8,0,3.3,1.5,3.3,3.3v2.3 C18.3,12.5,16.8,14,15,14z M8.4,7.1c-0.7,0-1.3,0.6-1.3,1.3v2.3c0,0.7,0.6,1.3,1.3,1.3H15c0.7,0,1.3-0.6,1.3-1.3V8.4 c0-0.7-0.6-1.3-1.3-1.3H8.4z"
id="path4166"
style="fill:#000000" /></g><g
id="g4168"
style="fill:#000000"><path
class="st2"
d="M25.9,19.1H6.1c-0.6,0-1-0.4-1-1s0.4-1,1-1h19.7c0.6,0,1,0.4,1,1S26.4,19.1,25.9,19.1z"
id="path4170"
style="fill:#000000" /></g><g
id="g4172"
style="fill:#000000"><path
class="st2"
d="M17.3,24.3H6.1c-0.6,0-1-0.4-1-1s0.4-1,1-1h11.1c0.6,0,1,0.4,1,1S17.8,24.3,17.3,24.3z"
id="path4174"
style="fill:#000000" /></g></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

116
src/Squidex/app/theme/icomoon/icons/dashboard-api.svg

@ -0,0 +1,116 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 64 64"
style="enable-background:new 0 0 64 64;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="dashboard-api.svg"
inkscape:export-filename="E:\Google Drive\Design Assets\Icons\New Icons - Aug 2017\dashboard-api.png"
inkscape:export-xdpi="126.56"
inkscape:export-ydpi="126.56"><metadata
id="metadata9393"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs9391" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview9389"
showgrid="false"
inkscape:zoom="3.6875"
inkscape:cx="32"
inkscape:cy="32"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style9347">
.st0{opacity:0;}
.st1{fill:#0074FF;}
.st2{fill:#B4BCC1;}
.st3{fill:#D7D7F9;}
.st4{fill:#2E3842;}
.st5{fill:#EDEDF9;}
.st6{fill:#B5B5EA;}
.st7{fill:#C7E0FF;}
.st8{fill:#7D878E;}
.st9{fill:#EEF6FF;}
.st10{opacity:0.2;}
.st11{fill:#3389FF;}
.st12{fill:#F2BDBD;}
.st13{fill:#F7DCDC;}
.st14{fill:#E29393;}
.st15{fill:#FFFFFF;}
.st16{fill:#F7F6E7;}
.st17{fill:#EFEBBF;}
.st18{fill:#FCFBEB;}
.st19{fill:#CEC395;}
.st20{fill:#F9C553;}
.st21{fill-rule:evenodd;clip-rule:evenodd;fill:#D6E2B3;}
.st22{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
.st23{fill:#77BA61;}
.st24{fill:#E7F7DC;}
</style><g
class="st0"
id="g9349"><rect
class="st1"
width="64"
height="64"
id="rect9351" /></g><g
id="g9353"><path
class="st12"
d="M42.2,53H22.8C16.9,53,12,48.1,12,42.2V13.8C12,7.9,16.9,3,22.8,3h25.1C50.7,3,53,5.3,53,8.1v34.1 C53,48.1,48.1,53,42.2,53z"
id="path9355" /><path
class="st4"
d="M42.2,54H22.8C16.3,54,11,48.7,11,42.2V13.8C11,7.3,16.3,2,22.8,2h25.1C51.3,2,54,4.7,54,8.1v34.1 C54,48.7,48.7,54,42.2,54z M22.8,4C17.4,4,13,8.4,13,13.8v28.4c0,5.4,4.4,9.8,9.8,9.8h19.4c5.4,0,9.8-4.4,9.8-9.8V8.1 C52,5.8,50.2,4,47.9,4H22.8z"
id="path9357" /></g><g
id="g9359"><path
class="st13"
d="M42.1,54H22.9c-5.5,0-9.9-4.4-9.9-9.9V13.9C13,8.4,17.4,4,22.9,4h24.9C50.1,4,52,5.9,52,8.3v35.9 C52,49.6,47.6,54,42.1,54z M22.9,6C18.5,6,15,9.5,15,13.9v30.2c0,4.4,3.5,7.9,7.9,7.9h19.2c4.4,0,7.9-3.5,7.9-7.9V8.3 C50,7,49,6,47.7,6H22.9z"
id="path9361" /></g><g
id="g9363"><path
class="st14"
d="M44,15H21.1c-0.6,0-1-0.4-1-1s0.4-1,1-1H44c0.6,0,1,0.4,1,1S44.6,15,44,15z"
id="path9365" /></g><g
id="g9367"><path
class="st14"
d="M44,22H21.1c-0.6,0-1-0.4-1-1s0.4-1,1-1H44c0.6,0,1,0.4,1,1S44.6,22,44,22z"
id="path9369" /></g><g
id="g9371"><path
class="st14"
d="M30,29h-8.9c-0.6,0-1-0.4-1-1s0.4-1,1-1H30c0.6,0,1,0.4,1,1S30.6,29,30,29z"
id="path9373" /></g><g
id="g9375"><g
id="g9377"><path
class="st15"
d="M7,40h14.3c1.6,0,3.1,1,3.7,2.5l0,0c0.6,1.5,2.1,2.5,3.7,2.5H57c2.2,0,4,1.8,4,4v8c0,2.2-1.8,4-4,4H7 c-2.2,0-4-1.8-4-4V44C3,41.8,4.8,40,7,40z"
id="path9379" /></g><g
id="g9381"><path
class="st4"
d="M4,51v-7c0-1.6,1.3-3,3-3h14.3c1.2,0,2.3,0.7,2.8,1.9c0.8,1.9,2.6,3.1,4.6,3.1H57c1.6,0,3,1.3,3,3v4h2v-4 c0-2.7-2.2-5-5-5H28.7c-1.2,0-2.3-0.7-2.8-1.9c-0.8-1.9-2.6-3.1-4.6-3.1H7c-2.7,0-5,2.2-5,5v7H4z"
id="path9383" /></g></g><g
id="g9385"><path
class="st2"
d="M60,57c0,1.6-1.3,3-3,3H7c-1.6,0-3-1.3-3-3v-4H2v4c0,2.7,2.2,5,5,5h50c2.7,0,5-2.2,5-5H60z"
id="path9387" /></g></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

130
src/Squidex/app/theme/icomoon/icons/dashboard-feedback.svg

@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 64 64"
style="enable-background:new 0 0 64 64;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="dashboard-feedback.svg"
inkscape:export-filename="E:\Google Drive\Design Assets\Icons\New Icons - Aug 2017\dashboard-feedback.png"
inkscape:export-xdpi="126.56"
inkscape:export-ydpi="126.56"><metadata
id="metadata9990"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs9988" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview9986"
showgrid="false"
inkscape:zoom="3.6875"
inkscape:cx="32"
inkscape:cy="32"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style9936">
.st0{opacity:0;}
.st1{fill:#0074FF;}
.st2{fill:#B4BCC1;}
.st3{fill:#D7D7F9;}
.st4{fill:#2E3842;}
.st5{fill:#EDEDF9;}
.st6{fill:#B5B5EA;}
.st7{fill:#C7E0FF;}
.st8{fill:#7D878E;}
.st9{fill:#EEF6FF;}
.st10{opacity:0.2;}
.st11{fill:#3389FF;}
.st12{fill:#F2BDBD;}
.st13{fill:#F7DCDC;}
.st14{fill:#E29393;}
.st15{fill:#FFFFFF;}
.st16{fill:#F7F6E7;}
.st17{fill:#EFEBBF;}
.st18{fill:#FCFBEB;}
.st19{fill:#CEC395;}
.st20{fill:#F9C553;}
.st21{fill-rule:evenodd;clip-rule:evenodd;fill:#D6E2B3;}
.st22{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
.st23{fill:#77BA61;}
.st24{fill:#E7F7DC;}
</style><g
class="st0"
id="g9938"><rect
class="st1"
width="64"
height="64"
id="rect9940" /></g><g
id="g9942"><path
class="st16"
d="M48,35c0,0-3,9-19,15l11.5,6.5L41,51l4.2-1.4l2.3-1.1l1-3L48,35z"
id="path9944" /></g><g
id="g9946"><path
class="st17"
d="M57.7,3H12.5C7.3,3,3,7.3,3,12.5v13.3C3,28.7,5.3,31,8.2,31H19v6l5.3-3.7c2.1-1.5,4.7-2.3,7.3-2.3h20 c5.2,0,9.5-4.3,9.5-9.5V6.3C61,4.5,59.5,3,57.7,3z"
id="path9948" /><path
class="st4"
d="M19,38c-0.2,0-0.3,0-0.5-0.1C18.2,37.7,18,37.4,18,37v-5H8.2C4.8,32,2,29.2,2,25.8V12.5C2,6.7,6.7,2,12.5,2 h45.2C60,2,62,4,62,6.3v15.2C62,27.3,57.3,32,51.5,32h-20c-2.4,0-4.7,0.7-6.7,2.1l-5.3,3.7C19.4,37.9,19.2,38,19,38z M12.5,4 C7.8,4,4,7.8,4,12.5v13.3C4,28.1,5.9,30,8.2,30H19c0.6,0,1,0.4,1,1v4.1l3.7-2.6c2.3-1.6,5-2.5,7.8-2.5h20c4.7,0,8.5-3.8,8.5-8.5 V6.3C60,5.1,58.9,4,57.7,4H12.5z"
id="path9950" /></g><g
id="g9952"><g
id="g9954"><path
class="st18"
d="M56.8,6C57.4,6,58,6.5,58,7.1v13.8c0,3.7-3.2,6.6-7.1,6.6H31.6c-2.9,0-5.7,0.8-8.1,2.4l-2,1.3v-1.7 c0-1.1-0.9-2-2-2H9c-1.7,0-3-1.2-3-2.8V12.6C6,9,9.2,6,13.1,6H56.8 M56.8,4H13.1C8.1,4,4,7.9,4,12.6v12.1c0,2.6,2.3,4.8,5,4.8 h10.5V35l5.1-3.4c2-1.4,4.5-2.1,7-2.1h19.3c5,0,9.1-3.9,9.1-8.6V7.1C60,5.4,58.6,4,56.8,4L56.8,4z"
id="path9956" /></g></g><g
id="g9958"><path
class="st19"
d="M50.5,13h-37c-0.6,0-1-0.4-1-1s0.4-1,1-1h37c0.6,0,1,0.4,1,1S51.1,13,50.5,13z"
id="path9960" /></g><g
id="g9962"><path
class="st19"
d="M35,21H13c-0.6,0-1-0.4-1-1s0.4-1,1-1h22c0.6,0,1,0.4,1,1S35.6,21,35,21z"
id="path9964" /></g><g
id="g9966"><circle
class="st20"
cx="15.5"
cy="50.5"
r="11.5"
id="circle9968" /></g><g
id="g9970"><circle
class="st15"
cx="19.1"
cy="48.1"
r="1.5"
id="circle9972" /></g><g
id="g9974"><circle
class="st15"
cx="12"
cy="48"
r="1.5"
id="circle9976" /></g><g
id="g9978"><path
class="st15"
d="M15.6,56.7c-4.2,0-7.2-2.9-7.3-3c-0.4-0.4-0.4-1,0-1.4c0.4-0.4,1-0.4,1.4,0c0.2,0.2,5.5,5.3,11.6,0 c0.4-0.4,1.1-0.3,1.4,0.1c0.4,0.4,0.3,1-0.1,1.4C20.1,55.9,17.7,56.7,15.6,56.7z"
id="path9980" /></g><g
id="g9982"><path
class="st2"
d="M47,34v11.8c0,2.3-1.9,4.2-4.2,4.2H40c-0.6,0-1,0.4-1,1v4.1l-3.7-2.6c-1.9-1.3-4-2.1-6.3-2.4v2 c1.8,0.2,3.6,0.9,5.1,2l5.3,3.7c0.2,0.1,0.4,0.2,0.6,0.2c0.2,0,0.3,0,0.5-0.1c0.3-0.2,0.5-0.5,0.5-0.9v-5h1.8 c3.4,0,6.2-2.8,6.2-6.2V34H47z"
id="path9984" /></g></svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

109
src/Squidex/app/theme/icomoon/icons/dashboard-github.svg

@ -0,0 +1,109 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 64 64"
style="enable-background:new 0 0 64 64;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="dashboard-github.svg"
inkscape:export-filename="E:\Google Drive\Design Assets\Icons\New Icons - Aug 2017\dashboard-github.png"
inkscape:export-xdpi="126.56"
inkscape:export-ydpi="126.56"><metadata
id="metadata10569"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs10567" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="742"
inkscape:window-height="405"
id="namedview10565"
showgrid="false"
inkscape:zoom="3.6875"
inkscape:cx="24.949153"
inkscape:cy="32"
inkscape:window-x="2381"
inkscape:window-y="222"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style10533">
.st0{opacity:0;}
.st1{fill:#0074FF;}
.st2{fill:#B4BCC1;}
.st3{fill:#D7D7F9;}
.st4{fill:#2E3842;}
.st5{fill:#EDEDF9;}
.st6{fill:#B5B5EA;}
.st7{fill:#C7E0FF;}
.st8{fill:#7D878E;}
.st9{fill:#EEF6FF;}
.st10{opacity:0.2;}
.st11{fill:#3389FF;}
.st12{fill:#F2BDBD;}
.st13{fill:#F7DCDC;}
.st14{fill:#E29393;}
.st15{fill:#FFFFFF;}
.st16{fill:#F7F6E7;}
.st17{fill:#EFEBBF;}
.st18{fill:#FCFBEB;}
.st19{fill:#CEC395;}
.st20{fill:#F9C553;}
.st21{fill-rule:evenodd;clip-rule:evenodd;fill:#D6E2B3;}
.st22{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
.st23{fill:#77BA61;}
.st24{fill:#E7F7DC;}
</style><g
class="st0"
id="g10535"><rect
class="st1"
width="64"
height="64"
id="rect10537" /></g><g
id="g10539"><circle
class="st21"
cx="32"
cy="32"
r="29"
id="circle10541" /><path
class="st4"
d="M32,62C15.5,62,2,48.5,2,32S15.5,2,32,2s30,13.5,30,30S48.5,62,32,62z M32,4C16.6,4,4,16.6,4,32s12.6,28,28,28 s28-12.6,28-28S47.4,4,32,4z"
id="path10543" /></g><g
id="g10545"><path
class="st22"
d="M26.9,46.9C26.9,46.9,26.9,47,26.9,46.9c2.7,0.3,7.1,0.4,13.4-0.6c4.8-1.2,9-4.4,9-12.8c0-3-1.1-5.4-2.8-7.3 c0.3-0.7,1.2-3.5-0.3-7.2c0,0-2.3-0.7-7.5,2.8c-2.2-0.6-4.5-0.9-6.8-0.9c-2.3,0-4.6,0.3-6.8,0.9c-5.2-3.5-7.5-2.8-7.5-2.8 c-1.5,3.7-0.5,6.5-0.3,7.2c-1.7,1.9-2.8,4.3-2.8,7.3C14.5,43.9,20.8,46.3,26.9,46.9z"
id="path10547" /></g><g
id="g10549"><path
class="st23"
d="M42.3,33.1c-2.2-2.1-6-1-10.3-1c0,0,0,0-0.1,0c0,0,0,0,0,0c-4.3,0-8.1-1.1-10.3,1c-1.3,1.2-1.9,2.7-1.9,4.3 c0,6.7,5.4,7.5,12.2,7.5H32c6.9,0,12.2-0.8,12.2-7.5C44.2,35.8,43.6,34.3,42.3,33.1z M26.1,41.2c-1.3,0-2.4-1.5-2.4-3.3 c0-1.8,1.1-3.3,2.4-3.3c1.3,0,2.4,1.5,2.4,3.3C28.5,39.7,27.4,41.2,26.1,41.2z M37.7,41.2c-1.3,0-2.4-1.5-2.4-3.3 c0-1.8,1.1-3.3,2.4-3.3c1.3,0,2.4,1.5,2.4,3.3C40.1,39.7,39,41.2,37.7,41.2z"
id="path10551" /></g><g
id="g10553"><path
class="st24"
d="M32,60C16.5,60,4,47.5,4,32S16.5,4,32,4s28,12.6,28,28S47.5,60,32,60z M32,6C17.6,6,6,17.6,6,32 s11.7,26,26,26c14.4,0,26-11.7,26-26S46.4,6,32,6z"
id="path10555" /></g><g
id="g10557"><path
class="st8"
d="M10,9H4C3.4,9,3,8.6,3,8s0.4-1,1-1h6c0.6,0,1,0.4,1,1S10.6,9,10,9z"
id="path10559" /></g><g
id="g10561"><path
class="st2"
d="M60,59h-7c-0.6,0-1-0.4-1-1s0.4-1,1-1h7c0.6,0,1,0.4,1,1S60.6,59,60,59z"
id="path10563" /></g></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

121
src/Squidex/app/theme/icomoon/icons/dashboard-schema.svg

@ -0,0 +1,121 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 64 64"
style="enable-background:new 0 0 64 64;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="dashboard-schema.svg"
inkscape:export-filename="E:\Google Drive\Design Assets\Icons\New Icons - Aug 2017\dashboard-schema.png"
inkscape:export-xdpi="126.56"
inkscape:export-ydpi="126.56"><metadata
id="metadata8804"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs8802" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="742"
inkscape:window-height="480"
id="namedview8800"
showgrid="false"
inkscape:zoom="3.6875"
inkscape:cx="32"
inkscape:cy="32"
inkscape:window-x="2062"
inkscape:window-y="319"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style8758">
.st0{opacity:0;}
.st1{fill:#0074FF;}
.st2{fill:#B4BCC1;}
.st3{fill:#D7D7F9;}
.st4{fill:#2E3842;}
.st5{fill:#EDEDF9;}
.st6{fill:#B5B5EA;}
.st7{fill:#C7E0FF;}
.st8{fill:#7D878E;}
.st9{fill:#EEF6FF;}
.st10{opacity:0.2;}
.st11{fill:#3389FF;}
.st12{fill:#F2BDBD;}
.st13{fill:#F7DCDC;}
.st14{fill:#E29393;}
.st15{fill:#FFFFFF;}
.st16{fill:#F7F6E7;}
.st17{fill:#EFEBBF;}
.st18{fill:#FCFBEB;}
.st19{fill:#CEC395;}
.st20{fill:#F9C553;}
.st21{fill-rule:evenodd;clip-rule:evenodd;fill:#D6E2B3;}
.st22{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
.st23{fill:#77BA61;}
.st24{fill:#E7F7DC;}
</style><g
class="st0"
id="g8760"><rect
class="st1"
width="64"
height="64"
id="rect8762" /></g><g
id="g8764"><path
class="st7"
d="M50.2,61H13.8C7.9,61,3,56.1,3,50.2V26.8C3,20.9,7.9,16,13.8,16h36.4C56.1,16,61,20.9,61,26.8v23.4 C61,56.1,56.1,61,50.2,61z"
id="path8766" /><path
class="st4"
d="M50.2,62H13.8C7.3,62,2,56.7,2,50.2V26.8C2,20.3,7.3,15,13.8,15h36.4C56.7,15,62,20.3,62,26.8v23.4 C62,56.7,56.7,62,50.2,62z M13.8,17C8.4,17,4,21.4,4,26.8v23.4c0,5.4,4.4,9.8,9.8,9.8h36.4c5.4,0,9.8-4.4,9.8-9.8V26.8 c0-5.4-4.4-9.8-9.8-9.8H13.8z"
id="path8768" /></g><g
id="g8770"><path
class="st8"
d="M50.7,12H12.1c-0.6,0-1-0.4-1-1s0.4-1,1-1h38.6c0.6,0,1,0.4,1,1S51.2,12,50.7,12z"
id="path8772" /></g><g
id="g8774"><path
class="st2"
d="M44.7,6H18.1c-0.6,0-1-0.4-1-1s0.4-1,1-1h26.6c0.6,0,1,0.4,1,1S45.2,6,44.7,6z"
id="path8776" /></g><g
id="g8778"><path
class="st9"
d="M50.2,60H13.8C8.4,60,4,55.6,4,50.2V26.8c0-5.4,4.4-9.8,9.8-9.8h36.3c5.4,0,9.8,4.4,9.8,9.8v23.3 C60,55.6,55.6,60,50.2,60z M13.8,19C9.5,19,6,22.5,6,26.8v23.3c0,4.3,3.5,7.8,7.8,7.8h36.3c4.3,0,7.8-3.5,7.8-7.8V26.8 c0-4.3-3.5-7.8-7.8-7.8H13.8z"
id="path8780" /></g><g
class="st10"
id="g8782"><path
class="st11"
d="M51.7,22v14.1c0,2.7-2.2,4.9-4.9,4.9H17.2c-2.7,0-4.9-2.2-4.9-4.9V22h-2v14.1c0,3.8,3.1,6.9,6.9,6.9h29.6 c3.8,0,6.9-3.1,6.9-6.9V22H51.7z"
id="path8784" /></g><g
id="g8786"><circle
class="st11"
cx="51.9"
cy="12.1"
r="11.1"
id="circle8788" /><path
class="st15"
d="M51.9,24.2c-6.7,0-12.1-5.4-12.1-12.1S45.2,0,51.9,0S64,5.4,64,12.1S58.6,24.2,51.9,24.2z M51.9,2 c-5.6,0-10.1,4.5-10.1,10.1s4.5,10.1,10.1,10.1S62,17.7,62,12.1S57.5,2,51.9,2z"
id="path8790" /></g><g
id="g8792"><path
class="st15"
d="M57,13H47c-0.6,0-1-0.4-1-1s0.4-1,1-1h10c0.6,0,1,0.4,1,1S57.6,13,57,13z"
id="path8794" /></g><g
id="g8796"><path
class="st15"
d="M52,18c-0.6,0-1-0.4-1-1V7c0-0.6,0.4-1,1-1s1,0.4,1,1v10C53,17.6,52.6,18,52,18z"
id="path8798" /></g></svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

74
src/Squidex/app/theme/icomoon/icons/dashboard.svg

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
@ -13,17 +13,15 @@
id="Layer_1"
x="0px"
y="0px"
width="40px"
height="40px"
viewBox="0 0 40 40"
enable-background="new 0 0 40 40"
viewBox="0 0 32 32"
style="enable-background:new 0 0 32 32;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="Dashboard.svg"><metadata
id="metadata9"><rdf:RDF><cc:Work
sodipodi:docname="dashboard.svg"><metadata
id="metadata25"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs7" /><sodipodi:namedview
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
id="defs23" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
@ -32,20 +30,46 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="742"
inkscape:window-height="480"
id="namedview5"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview21"
showgrid="false"
inkscape:zoom="5.9"
inkscape:cx="20"
inkscape:cy="20"
inkscape:window-x="2586"
inkscape:window-y="297"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><path
fill-rule="evenodd"
clip-rule="evenodd"
fill="#438CEF"
d="M34.474,34H34h-2.052H6.051H4H3.527C1.314,30.894,0,27.104,0,23 C0,12.507,8.507,4,19,4s19,8.507,19,19C38,27.104,36.686,30.894,34.474,34z M20,6.049V8h-2V6.049C9.413,6.55,2.551,13.412,2.05,22H4 v2H2.036c0.173,2.93,1.093,5.654,2.565,8h28.797c1.473-2.346,2.393-5.07,2.565-8H34v-2h1.949C35.448,13.412,28.587,6.55,20,6.049z M19,28c-1.657,0-3-1.343-3-3c0-1.657,1.343-13,3-13c1.657,0,3,11.343,3,13C22,26.657,20.657,28,19,28z M19,20c-0.552,0-1,4.447-1,5 s0.448,1,1,1c0.553,0,1-0.447,1-1S19.553,20,19,20z"
id="path3"
style="fill:#000000" /></svg>
inkscape:zoom="7.375"
inkscape:cx="-0.88135593"
inkscape:cy="16"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style3">
.st0{opacity:0;}
.st1{fill:#FF3386;}
.st2{fill:#3389FF;}
</style><g
class="st0"
id="g5"
style="fill:#000000"><rect
class="st1"
width="32"
height="32"
id="rect7"
style="fill:#000000" /></g><g
id="g9"
style="fill:#000000"><path
class="st2"
d="M25.9,32H6.1C2.8,32,0,29.2,0,25.9v-10C0,7.1,7.1,0,15.8,0C24.8,0,32,7.2,32,16.2v9.7C32,29.2,29.2,32,25.9,32 z M15.8,2C8.2,2,2,8.2,2,15.8v10C2,28.1,3.9,30,6.1,30h19.7c2.3,0,4.1-1.9,4.1-4.1v-9.7C30,8.4,23.6,2,15.8,2z"
id="path11"
style="fill:#000000" /></g><g
id="g13"
style="fill:#000000"><path
class="st2"
d="M16,20.9c-0.1,0-0.2,0-0.2,0c-1-0.1-2-0.6-2.5-1.5l-6-8.7C7,10.4,7,9.9,7.3,9.5c0.3-0.3,0.8-0.4,1.2-0.2 l9.2,5.4c0.9,0.5,1.5,1.4,1.6,2.4c0.1,1-0.2,2-0.9,2.8C17.8,20.6,16.9,20.9,16,20.9z M11.4,13.4l3.4,5c0.2,0.3,0.6,0.6,1,0.6 c0.4,0,0.8-0.1,1.1-0.4c0.3-0.3,0.4-0.7,0.3-1.1c-0.1-0.4-0.3-0.7-0.6-1L11.4,13.4z"
id="path15"
style="fill:#000000" /></g><g
id="g17"
style="fill:#000000"><path
class="st2"
d="M21.2,11.4c-0.2,0-0.4-0.1-0.6-0.2c-0.5-0.3-0.6-0.9-0.3-1.4l1.7-2.6c0.3-0.5,0.9-0.6,1.4-0.3 C24,7.3,24.1,8,23.8,8.4L22.1,11C21.9,11.3,21.6,11.4,21.2,11.4z"
id="path19"
style="fill:#000000" /></g></svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

78
src/Squidex/app/theme/icomoon/icons/schemas.svg

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
@ -13,17 +13,15 @@
id="Layer_1"
x="0px"
y="0px"
width="40px"
height="40px"
viewBox="0 0 40 40"
enable-background="new 0 0 40 40"
viewBox="0 0 32 32"
style="enable-background:new 0 0 32 32;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="Schemas.svg"><metadata
id="metadata13"><rdf:RDF><cc:Work
sodipodi:docname="schemas.svg"><metadata
id="metadata5887"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs11" /><sodipodi:namedview
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs5885" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
@ -32,18 +30,52 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="742"
inkscape:window-height="480"
id="namedview9"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview5883"
showgrid="false"
inkscape:zoom="5.9"
inkscape:cx="20"
inkscape:cy="20"
inkscape:window-x="2477"
inkscape:window-y="562"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><path
d="m 0.612,14.911 19,8.017 0.388,0.078 0.389,-0.078 19,-8.017 C 39.758,14.755 40,14.391 40,13.987 40,13.583 39.758,13.22 39.389,13.063 l -19,-8.017 c -0.248,-0.104 -0.528,-0.104 -0.776,0 l -19,8.017 c -0.37,0.157 -0.611,0.521 -0.611,0.924 0,0.403 0.24,0.768 0.61,0.924 z M 20,7.059 36.424,13.987 20,20.916 3.576,13.987 20,7.059 Z m -19.388,13.865 19,8.017 0.388,0.078 0.389,-0.078 19,-8.017 c 0.51,-0.215 0.748,-0.802 0.533,-1.312 -0.213,-0.51 -0.801,-0.75 -1.309,-0.535 L 20,26.931 1.389,19.076 c -0.508,-0.214 -1.096,0.023 -1.311,0.535 -0.214,0.509 0.025,1.098 0.534,1.313 z M 38.613,25.089 20,32.943 1.389,25.089 c -0.508,-0.216 -1.096,0.023 -1.311,0.534 -0.214,0.509 0.024,1.098 0.534,1.313 l 19,8.017 0.388,0.078 0.389,-0.078 19,-8.017 c 0.51,-0.216 0.748,-0.803 0.533,-1.313 -0.213,-0.509 -0.801,-0.75 -1.309,-0.534 z"
id="path7"
inkscape:connector-curvature="0"
style="fill:#000000" /></svg>
inkscape:zoom="7.375"
inkscape:cx="-0.88135593"
inkscape:cy="16"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style5861">
.st0{opacity:0;}
.st1{fill:#FF3386;}
.st2{fill:#3389FF;}
</style><g
class="st0"
id="g5863"
style="fill:#000000"><rect
class="st1"
width="32"
height="32"
id="rect5865"
style="fill:#000000" /></g><g
id="g5867"
style="fill:#000000"><path
class="st2"
d="M25,32H7c-3.9,0-7-3.1-7-7v-9.4c0-3.9,3.1-7,7-7h18c3.9,0,7,3.1,7,7V25C32,28.9,28.9,32,25,32z M7,10.6 c-2.8,0-5,2.2-5,5V25c0,2.8,2.2,5,5,5h18c2.8,0,5-2.2,5-5v-9.4c0-2.8-2.2-5-5-5H7z"
id="path5869"
style="fill:#000000" /></g><g
id="g5871"
style="fill:#000000"><path
class="st2"
d="M25.9,6.3H6.1c-0.6,0-1-0.4-1-1s0.4-1,1-1h19.7c0.6,0,1,0.4,1,1S26.4,6.3,25.9,6.3z"
id="path5873"
style="fill:#000000" /></g><g
id="g5875"
style="fill:#000000"><path
class="st2"
d="M22.4,2H9.6c-0.6,0-1-0.4-1-1s0.4-1,1-1h12.9c0.6,0,1,0.4,1,1S23,2,22.4,2z"
id="path5877"
style="fill:#000000" /></g><g
id="g5879"
style="fill:#000000"><path
class="st2"
d="M25,13v2c0,1.5-1.2,2.6-2.6,2.6H9.6C8.2,17.7,7,16.5,7,15v-2H5.3v2c0,2.4,2,4.4,4.4,4.4h12.7 c2.4,0,4.4-2,4.4-4.4v-2H25z"
id="path5881"
style="fill:#000000" /></g></svg>

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

105
src/Squidex/app/theme/icomoon/icons/webhooks.svg

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
viewBox="0 0 32 32"
style="enable-background:new 0 0 32 32;"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="webhooks.svg"><metadata
id="metadata7594"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs7592" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview7590"
showgrid="false"
inkscape:zoom="7.375"
inkscape:cx="12.474576"
inkscape:cy="16"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><style
type="text/css"
id="style7552">
.st0{opacity:0;}
.st1{fill:#FF3386;}
.st2{fill:#3389FF;}
</style><g
class="st0"
id="g7554"
style="fill:#000000"><rect
class="st1"
width="32"
height="32"
id="rect7556"
style="fill:#000000" /></g><g
id="g7558"
style="fill:#000000"><path
class="st2"
d="M6.8,31c-0.1,0-0.1,0-0.2,0l-0.1,0C2,30.2,0,26.5,0,23.2c0-3.1,1.8-6.5,5.8-7.5v-4.6c0-0.6,0.4-1,1-1 s1,0.4,1,1v5.4c0,0.5-0.4,0.9-0.8,1C3.6,18,2,20.7,2,23.2c0,2.5,1.5,5.2,4.8,5.8L7,29c0.5,0.1,0.9,0.6,0.8,1.2 C7.7,30.7,7.3,31,6.8,31z"
id="path7560"
style="fill:#000000" /></g><g
id="g7562"
style="fill:#000000"><path
class="st2"
d="M24.2,31.3C24.2,31.3,24.2,31.3,24.2,31.3c-3.2,0-6.6-1.9-7.6-5.8l-5.5,0c-0.6,0-1-0.4-1-1c0-0.6,0.4-1,1-1 h6.3c0.5,0,0.9,0.4,1,0.8c0.5,3.4,3.2,4.9,5.7,5c2.5,0,5.2-1.5,5.8-4.8l0-0.1c0.1-0.5,0.6-0.9,1.2-0.8c0.5,0.1,0.9,0.6,0.8,1.2 l0,0.1C31.2,29.3,27.5,31.3,24.2,31.3z"
id="path7564"
style="fill:#000000" /></g><g
id="g7566"
style="fill:#000000"><path
class="st2"
d="M24.6,21.2c-0.6,0-1-0.4-1-1v-5.5c0-0.5,0.4-0.9,0.8-1c3.4-0.5,4.9-3.2,5-5.7c0-2.5-1.5-5.2-4.8-5.8l-0.1,0 C23.9,2,23.5,1.5,23.6,1c0.1-0.5,0.6-0.9,1.2-0.8l0.1,0C29.4,1,31.4,4.7,31.4,8c0,3.1-1.9,6.5-5.8,7.5v4.7 C25.6,20.7,25.1,21.2,24.6,21.2z"
id="path7568"
style="fill:#000000" /></g><g
id="g7570"
style="fill:#000000"><path
class="st2"
d="M1.3,7.7c-0.1,0-0.1,0-0.2,0C0.6,7.6,0.2,7.1,0.3,6.6l0-0.1c0.8-4.5,4.4-6.5,7.7-6.5c0,0,0.1,0,0.1,0 c3.1,0,6.5,1.9,7.5,5.8h4.6c0.6,0,1,0.4,1,1s-0.4,1-1,1h-5.4c-0.5,0-0.9-0.4-1-0.8c-0.5-3.4-3.2-4.9-5.7-5c-2.5,0-5.2,1.5-5.8,4.8 l0,0.1C2.2,7.4,1.8,7.7,1.3,7.7z"
id="path7572"
style="fill:#000000" /></g><g
id="g7574"
style="fill:#000000"><path
class="st2"
d="M8,12.1c-1,0-2.1-0.4-2.9-1.2c-1.6-1.6-1.6-4.2,0-5.8C5.9,4.4,6.9,4,8,4s2.1,0.4,2.9,1.2 c0.8,0.8,1.2,1.8,1.2,2.9s-0.4,2.1-1.2,2.9C10.1,11.7,9.1,12.1,8,12.1z M8,6C7.5,6,7,6.2,6.6,6.6c-0.8,0.8-0.8,2.1,0,2.9 c0.8,0.8,2.1,0.8,2.9,0c0.4-0.4,0.6-0.9,0.6-1.5S9.9,7,9.5,6.6S8.6,6,8,6z"
id="path7576"
style="fill:#000000" /></g><g
id="g7578"
style="fill:#000000"><path
class="st2"
d="M24.1,27.3c-1,0-2.1-0.4-2.9-1.2c-1.6-1.6-1.6-4.2,0-5.8c0.8-0.8,1.8-1.2,2.9-1.2s2.1,0.4,2.9,1.2 c0.8,0.8,1.2,1.8,1.2,2.9s-0.4,2.1-1.2,2.9C26.1,26.9,25.1,27.3,24.1,27.3z M24.1,21.2c-0.6,0-1.1,0.2-1.5,0.6 c-0.8,0.8-0.8,2.1,0,2.9c0.8,0.8,2.1,0.8,2.9,0c0.4-0.4,0.6-0.9,0.6-1.5s-0.2-1.1-0.6-1.5S24.6,21.2,24.1,21.2z"
id="path7580"
style="fill:#000000" /></g><g
id="g7582"
style="fill:#000000"><path
class="st2"
d="M23.3,12.1c-1,0-2.1-0.4-2.9-1.2c-0.8-0.8-1.2-1.8-1.2-2.9s0.4-2.1,1.2-2.9C21.2,4.4,22.3,4,23.3,4 s2.1,0.4,2.9,1.2c1.6,1.6,1.6,4.2,0,5.8l0,0C25.4,11.7,24.4,12.1,23.3,12.1z M23.3,6c-0.6,0-1.1,0.2-1.5,0.6s-0.6,0.9-0.6,1.5 s0.2,1.1,0.6,1.5c0.8,0.8,2.1,0.8,2.9,0c0.8-0.8,0.8-2.1,0-2.9C24.4,6.2,23.9,6,23.3,6z"
id="path7584"
style="fill:#000000" /></g><g
id="g7586"
style="fill:#000000"><path
class="st2"
d="M8.1,27.3c-1,0-2.1-0.4-2.9-1.2c-0.8-0.8-1.2-1.8-1.2-2.9s0.4-2.1,1.2-2.9C6,19.6,7,19.2,8.1,19.2 s2.1,0.4,2.9,1.2c1.6,1.6,1.6,4.2,0,5.8l0,0C10.2,26.9,9.2,27.3,8.1,27.3z M8.1,21.2c-0.6,0-1.1,0.2-1.5,0.6s-0.6,0.9-0.6,1.5 s0.2,1.1,0.6,1.5c0.8,0.8,2.1,0.8,2.9,0c0.8-0.8,0.8-2.1,0-2.9C9.2,21.4,8.7,21.2,8.1,21.2z"
id="path7588"
style="fill:#000000" /></g></svg>

After

Width:  |  Height:  |  Size: 5.0 KiB

1702
src/Squidex/app/theme/icomoon/selection.json

File diff suppressed because it is too large

294
src/Squidex/app/theme/icomoon/style.css

@ -1,10 +1,10 @@
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?7injjp');
src: url('fonts/icomoon.eot?7injjp#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?7injjp') format('truetype'),
url('fonts/icomoon.woff?7injjp') format('woff'),
url('fonts/icomoon.svg?7injjp#icomoon') format('svg');
src: url('fonts/icomoon.eot?kd49pm');
src: url('fonts/icomoon.eot?kd49pm#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?kd49pm') format('truetype'),
url('fonts/icomoon.woff?kd49pm') format('woff'),
url('fonts/icomoon.svg?kd49pm#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
@ -24,102 +24,6 @@
-moz-osx-font-smoothing: grayscale;
}
.icon-checkmark:before {
content: "\e942";
}
.icon-control-Stars:before {
content: "\e93a";
}
.icon-browser:before {
content: "\e935";
}
.icon-earth:before {
content: "\e9ca";
}
.icon-elapsed:before {
content: "\e943";
}
.icon-timeout:before {
content: "\e944";
}
.icon-microsoft:before {
content: "\e940";
}
.icon-google:before {
content: "\e93b";
}
.icon-unlocked:before {
content: "\e933";
}
.icon-lock:before {
content: "\e934";
}
.icon-reset:before {
content: "\e92e";
}
.icon-pause:before {
content: "\e92f";
}
.icon-play:before {
content: "\e930";
}
.icon-settings2:before {
content: "\e92d";
}
.icon-bin2:before {
content: "\e902";
}
.icon-grid:before {
content: "\f00a";
}
.icon-list:before {
content: "\f0c9";
}
.icon-bug:before {
content: "\e93d";
}
.icon-control-Markdown:before {
content: "\e938";
}
.icon-control-Date:before {
content: "\e936";
}
.icon-control-DateTime:before {
content: "\e937";
}
.icon-angle-right:before {
content: "\e931";
}
.icon-user-o:before {
content: "\e932";
}
.icon-caret-right:before {
content: "\e929";
}
.icon-caret-left:before {
content: "\e92a";
}
.icon-caret-up:before {
content: "\e92b";
}
.icon-caret-down:before {
content: "\e92c";
}
.icon-angle-up:before {
content: "\e903";
}
.icon-angle-down:before {
content: "\e900";
}
.icon-angle-left:before {
content: "\e901";
}
.icon-webhook:before {
content: "\e93f";
}
.icon-github:before {
content: "\e941";
}
.icon-activity:before {
content: "\e904";
}
@ -144,9 +48,6 @@
.icon-close:before {
content: "\e908";
}
.icon-content:before {
content: "\e909";
}
.icon-type-References:before {
content: "\e909";
}
@ -198,15 +99,12 @@
.icon-filter:before {
content: "\e918";
}
.icon-github:before {
content: "\e941";
}
.icon-help:before {
content: "\e919";
}
.icon-type-Json:before {
content: "\e91a";
}
.icon-json:before {
content: "\e91a";
}
.icon-location:before {
content: "\e91b";
}
@ -252,6 +150,12 @@
.icon-type-DateTime:before {
content: "\e925";
}
.icon-type-Json:before {
content: "\e91a";
}
.icon-json:before {
content: "\e91a";
}
.icon-type-Number:before {
content: "\e926";
}
@ -261,143 +165,113 @@
.icon-user:before {
content: "\e928";
}
.icon-download:before {
content: "\e93e";
}
.icon-control-RichText:before {
content: "\e939";
}
.icon-close:before {
content: "\e908";
}
.icon-content:before {
content: "\e909";
}
.icon-type-References:before {
content: "\e909";
}
.icon-control-Checkbox:before {
content: "\e90a";
}
.icon-control-Dropdown:before {
content: "\e90b";
}
.icon-control-Input:before {
content: "\e90c";
}
.icon-control-Radio:before {
content: "\e90d";
}
.icon-control-TextArea:before {
content: "\e90e";
.icon-angle-down:before {
content: "\e900";
}
.icon-control-Toggle:before {
content: "\e90f";
.icon-angle-left:before {
content: "\e901";
}
.icon-copy:before {
content: "\e910";
.icon-angle-right:before {
content: "\e931";
}
.icon-dashboard:before {
content: "\e911";
.icon-angle-up:before {
content: "\e903";
}
.icon-delete:before {
content: "\e912";
.icon-api:before {
content: "\e945";
}
.icon-bin:before {
content: "\e912";
.icon-assets:before {
content: "\e948";
}
.icon-delete-filled:before {
content: "\e913";
.icon-bug:before {
content: "\e93d";
}
.icon-document-delete:before {
content: "\e914";
.icon-caret-down:before {
content: "\e92c";
}
.icon-document-disable:before {
content: "\e915";
.icon-caret-left:before {
content: "\e92a";
}
.icon-document-publish:before {
content: "\e916";
.icon-caret-right:before {
content: "\e929";
}
.icon-drag:before {
content: "\e917";
.icon-caret-up:before {
content: "\e92b";
}
.icon-filter:before {
content: "\e918";
.icon-contents:before {
content: "\e946";
}
.icon-help:before {
content: "\e919";
.icon-control-Date:before {
content: "\e936";
}
.icon-type-Json:before {
content: "\e91a";
.icon-control-DateTime:before {
content: "\e937";
}
.icon-json:before {
content: "\e91a";
.icon-control-Markdown:before {
content: "\e938";
}
.icon-location:before {
content: "\e91b";
.icon-grid:before {
content: "\f00a";
}
.icon-control-Map:before {
content: "\e91b";
.icon-list:before {
content: "\f0c9";
}
.icon-type-Geolocation:before {
content: "\e91b";
.icon-user-o:before {
content: "\e932";
}
.icon-logo:before {
content: "\e91c";
.icon-webhooks:before {
content: "\e947";
}
.icon-media:before {
content: "\e91d";
.icon-bin2:before {
content: "\e902";
}
.icon-type-Assets:before {
content: "\e91d";
.icon-earth:before {
content: "\e9ca";
}
.icon-more:before {
content: "\e91e";
.icon-elapsed:before {
content: "\e943";
}
.icon-dots:before {
content: "\e91e";
.icon-google:before {
content: "\e93b";
}
.icon-pencil:before {
content: "\e91f";
.icon-lock:before {
content: "\e934";
}
.icon-reference:before {
content: "\e920";
.icon-microsoft:before {
content: "\e940";
}
.icon-schemas:before {
content: "\e921";
.icon-pause:before {
content: "\e92f";
}
.icon-search:before {
content: "\e922";
.icon-play:before {
content: "\e930";
}
.icon-settings:before {
content: "\e923";
.icon-reset:before {
content: "\e92e";
}
.icon-type-Boolean:before {
content: "\e924";
.icon-settings2:before {
content: "\e92d";
}
.icon-type-DateTime:before {
content: "\e925";
.icon-timeout:before {
content: "\e944";
}
.icon-type-Number:before {
content: "\e926";
.icon-unlocked:before {
content: "\e933";
}
.icon-type-String:before {
content: "\e927";
.icon-browser:before {
content: "\e935";
}
.icon-user:before {
content: "\e928";
.icon-checkmark:before {
content: "\e942";
}
.icon-download:before {
content: "\e93e";
.icon-control-Stars:before {
content: "\e93a";
}
.icon-control-RichText:before {
content: "\e939";
}
.icon-info:before {
content: "\e93c";
}
.icon-info:before {
content: "\e93c";
.icon-download:before {
content: "\e93e";
}
.icon-info:before {
content: "\e93c";

BIN
src/Squidex/wwwroot/images/add-app.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

BIN
src/Squidex/wwwroot/images/dashboard-api.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 896 B

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
src/Squidex/wwwroot/images/dashboard-feedback.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 658 B

After

Width:  |  Height:  |  Size: 4.1 KiB

BIN
src/Squidex/wwwroot/images/dashboard-github.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

BIN
src/Squidex/wwwroot/images/dashboard-schema.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Loading…
Cancel
Save