flushed out the menue a bit, added the first part of the dark theme

This commit is contained in:
2020-02-08 12:36:04 -06:00
parent badf90e5b3
commit bf1be4d3d6
3 changed files with 49 additions and 47 deletions

View File

@@ -1,5 +1,12 @@
<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-menu-toggle>
<ion-button>
<ion-icon slot="icon-only" name="menu"></ion-icon>
</ion-button>
</ion-menu-toggle>
</ion-buttons>
<ion-title contenteditable="true" #titleBar>{{ pageRecord.Name }}</ion-title>
</ion-toolbar>
</ion-header>
@@ -8,13 +15,9 @@
<ng-container>
<div class="editor-root ion-padding">
<div class="host-container ion-padding">
<editor-host
#editorHosts
*ngFor="let record of hostRecords"
[(record)]="record"
(newHostRequested)="onNewHostRequested($event)"
(destroyHostRequested)="onDestroyHostRequested($event)"
></editor-host>
<editor-host #editorHosts *ngFor="let record of hostRecords" [(record)]="record"
(newHostRequested)="onNewHostRequested($event)" (destroyHostRequested)="onDestroyHostRequested($event)">
</editor-host>
</div>
</div>
<div class="editor-buttons">
@@ -22,4 +25,4 @@
<ion-button (click)="onSaveClick()" class="ion-padding ion-margin">Save</ion-button>
</div>
</ng-container>
</ion-content>
</ion-content>