mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-27 01:19:52 -04:00
Fix Titles of modals so they use the whole width
This commit is contained in:
parent
3a1f5639c6
commit
02cef20cd0
@ -1,9 +1,7 @@
|
|||||||
<div mat-dialog-title>
|
<mat-toolbar>
|
||||||
<mat-toolbar>
|
|
||||||
<mat-icon>save</mat-icon>
|
<mat-icon>save</mat-icon>
|
||||||
<div class="title">Add Card to Saved Page</div>
|
<div class="title">Add Card to Saved Page</div>
|
||||||
</mat-toolbar>
|
</mat-toolbar>
|
||||||
</div>
|
|
||||||
<mat-dialog-content class="content">
|
<mat-dialog-content class="content">
|
||||||
<div class="page-list">
|
<div class="page-list">
|
||||||
<mat-selection-list #pageList>
|
<mat-selection-list #pageList>
|
||||||
@ -26,7 +24,6 @@
|
|||||||
><button
|
><button
|
||||||
class="page-add-button"
|
class="page-add-button"
|
||||||
mat-icon-button
|
mat-icon-button
|
||||||
mat-button
|
|
||||||
[disableRipple]="true"
|
[disableRipple]="true"
|
||||||
(click)="addPage()"
|
(click)="addPage()"
|
||||||
>
|
>
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
<div mat-dialog-title>
|
<mat-toolbar>
|
||||||
<mat-toolbar>
|
|
||||||
<mat-icon>edit</mat-icon>
|
<mat-icon>edit</mat-icon>
|
||||||
<div class="title">Edit: {{ data.title }}</div>
|
<div class="title">Edit: {{ data.title }}</div>
|
||||||
</mat-toolbar>
|
</mat-toolbar>
|
||||||
</div>
|
|
||||||
<mat-dialog-content>
|
<mat-dialog-content>
|
||||||
|
<br />
|
||||||
<form [formGroup]="noteForm">
|
<form [formGroup]="noteForm">
|
||||||
<mat-form-field class="note-title">
|
<mat-form-field class="note-title">
|
||||||
<mat-label>Title</mat-label>
|
<mat-label>Title</mat-label>
|
||||||
|
@ -1,9 +1,7 @@
|
|||||||
<div mat-dialog-title>
|
<mat-toolbar>
|
||||||
<mat-toolbar>
|
|
||||||
<mat-icon>save</mat-icon>
|
<mat-icon>save</mat-icon>
|
||||||
<div class="title">{{ dialogTitle }}</div>
|
<div class="title">{{ dialogTitle }}</div>
|
||||||
</mat-toolbar>
|
</mat-toolbar>
|
||||||
</div>
|
|
||||||
<mat-dialog-content class="content">
|
<mat-dialog-content class="content">
|
||||||
<form [formGroup]="form">
|
<form [formGroup]="form">
|
||||||
<mat-form-field class="page-title">
|
<mat-form-field class="page-title">
|
||||||
|
@ -1,18 +1,12 @@
|
|||||||
<div mat-dialog-title>
|
<mat-toolbar>
|
||||||
<mat-toolbar>
|
|
||||||
<mat-icon>bookmarks</mat-icon>
|
<mat-icon>bookmarks</mat-icon>
|
||||||
<div class="title">Verse Picker</div>
|
<div class="title">Verse Picker</div>
|
||||||
<span class="close-button">
|
<span class="close-button">
|
||||||
<button
|
<button mat-icon-button mat-dialog-close aria-label="Exit the verse picker">
|
||||||
mat-icon-button
|
|
||||||
mat-dialog-close
|
|
||||||
aria-label="Exit the verse picker"
|
|
||||||
>
|
|
||||||
<mat-icon>cancel</mat-icon>
|
<mat-icon>cancel</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</mat-toolbar>
|
</mat-toolbar>
|
||||||
</div>
|
|
||||||
<mat-dialog-content class="content">
|
<mat-dialog-content class="content">
|
||||||
<div>
|
<div>
|
||||||
<span *ngIf="hasBook === false">
|
<span *ngIf="hasBook === false">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user