Fancy logos

Tooltips
This commit is contained in:
GloriousCode
2017-11-30 19:11:52 +11:00
parent 420d65a5eb
commit 4561ca9acb
8 changed files with 9 additions and 6 deletions

View File

@@ -36,7 +36,7 @@
<mat-list-item>
<mat-icon>view_agenda</mat-icon>&nbsp;
<a href="https://trello.com/b/ZAhMhpOy/gocryptotrader" target="_blank">
<h3>Trello</h3>
<h3>Trello</h3>
</a>
</mat-list-item>
<mat-list-item>

View File

@@ -24,6 +24,7 @@ import {
MatSortModule,
MatExpansionModule,
MatLineModule,
MatTooltipModule
} from '@angular/material';
@@ -104,6 +105,7 @@ import { SelectedCurrencyComponent } from './shared/selected-currency/selected-c
MatSortModule,
MatExpansionModule,
MatLineModule,
MatTooltipModule,
],
providers: [
ElectronService,

View File

@@ -1,4 +1,5 @@
<button (click)="tradeOpen()" mat-fab color="accent" class="mat-fab mat-fab-bottom-right"><mat-icon >swap_horiz</mat-icon></button>
<button matTooltip="Trade"(click)="tradeOpen()" mat-fab color="accent" class="mat-fab mat-fab-bottom-right"><mat-icon >swap_horiz</mat-icon></button>
<div style="width:97%;">
<mat-grid-list cols="3" rowHeight="24rem">
@@ -18,4 +19,4 @@
</mat-card>
</mat-grid-tile>
</mat-grid-list>
</div>
</div>

View File

@@ -3,7 +3,7 @@
</div>
<div *ngIf="settings !== null">
<button (click)="saveSettings()" mat-fab color="accent" class="mat-fab mat-fab-bottom-right"><mat-icon >save</mat-icon></button>
<button matTooltip="Save" (click)="saveSettings()" mat-fab color="accent" class="mat-fab mat-fab-bottom-right"><mat-icon >save</mat-icon></button>
<mat-accordion>
<mat-expansion-panel *ngIf="settings.SMSGlobal != null">
@@ -15,7 +15,7 @@
SMS configuration and contact management
<mat-icon>phone_iphone</mat-icon>
</mat-panel-description>
</mat-expansion-panel-header>
</mat-expansion-panel-header>
<form class="form-content">
<mat-checkbox name="smsEnabled" [(ngModel)]="settings.SMSGlobal.Enabled">Enabled</mat-checkbox>
<div mat-line></div>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -14,7 +14,7 @@
</head>
<body class="mat-app-background">
<app-root>Loading...</app-root>
<app-root><img style="position: absolute;top: 25%;left: 40%; width: 25%;" src="/assets/page-logo.png" /></app-root>
</body>
</html>