Skip to content
Snippets Groups Projects
Verified Commit 649ece7a authored by Lukas Maximilian Kimpel's avatar Lukas Maximilian Kimpel
Browse files

Adjust template

parent 4e4f0b7f
No related merge requests found
<div fxLayout="row" fxLayoutAlign="center"> <mat-card *ngFor="let comment of comments">
<div fxLayout="column" fxLayoutGap="20px"> <mat-card-header>
<mat-progress-spinner *ngIf="isLoading" mode="indeterminate"></mat-progress-spinner> <mat-card-title>{{comment.subject}}</mat-card-title>
<div *ngFor="let comment of comments"> <mat-card-subtitle>
<mat-card> <span class="mat-caption">Submitted on {{ comment.creationTimestamp | date:'dd-MM-yyyy HH:mm:ss' }}</span>
<mat-card-content> </mat-card-subtitle>
<h3>{{comment.subject}}</h3> </mat-card-header>
<mat-divider></mat-divider>
{{comment.body}} <mat-card-content>
<p>{{comment.body}}</p>
<div class="body-buttons"> </mat-card-content>
<button *ngIf="!comment.read" mat-fab color="warn" matTooltip="Is not read" (click)="userRole === userRoleTemp && setRead(comment)"> <mat-divider></mat-divider>
<mat-icon>clear</mat-icon> <mat-card-actions *ngIf="userRole === userRoleTemp">
</button> <button mat-icon-button *ngIf="comment.read" color="primary" matTooltip="Mark as read"
<button *ngIf="comment.read" mat-fab color="primary" matTooltip="Is read" (click)="userRole === userRoleTemp && setRead(comment)"> (click)="setRead(comment)">
<mat-icon>check</mat-icon> <mat-icon>speaker_notes</mat-icon>
</button> </button>
<button *ngIf="userRole === userRoleTemp" class="trash-icon" mat-fab color="primary" matTooltip="Delete" (click)="delete(comment)"> <button mat-icon-button *ngIf="!comment.read" color="warn" matTooltip="Mark as unread"
<mat-icon>delete</mat-icon> (click)="setRead(comment)">
</button> <mat-icon>speaker_notes_off</mat-icon>
</div> </button>
</mat-card-content> <button mat-icon-button color="warn" matTooltip="Delete comment"
<mat-card-footer> (click)="delete(comment)">
<div class="date"> <mat-icon>delete</mat-icon>
<i> Submitted on {{comment.creationTimestamp | date:'dd-MM-yyyy HH:mm:ss' : format}} </i> </button>
</div> </mat-card-actions>
</mat-card-footer> <mat-card-actions *ngIf="userRole !== userRoleTemp">
</mat-card><br> <mat-icon *ngIf="comment.read" color="primary" matTooltip="Comment was read">speaker_notes</mat-icon>
</div> <mat-icon *ngIf="!comment.read" color="warn" matTooltip="Comment was not read">speaker_notes_off</mat-icon>
</mat-card-actions>
<button *ngIf="userRole === userRoleTemp" mat-raised-button color="primary" (click)="goBack()">Back</button> </mat-card>
</div>
</div>
mat-card { mat-card {
min-width: 800px; margin: 10px;
} }
mat-card-content { mat-card-content>:first-child {
min-height: 100px; margin-top: 16px;
}
mat-card:hover {
box-shadow: 0 6px 6px 6px rgba(0,0,0,.2), 0 6px 6px 0 rgba(0,0,0,.14), 0 6px 6px 0 rgba(0,0,0,.12) !important;
transition: background .4s cubic-bezier(.25,.8,.25,1),box-shadow 300ms cubic-bezier(.3,0,.2,1);
}
.trash-icon:hover {
background: #F44336;
}
.body-buttons {
position: absolute;
top: 10%;
left: 92%;
}
.date {
text-align: right;
font-size: 80%;
margin-right: 10px;
margin-bottom: 3px;
} }
<div fxLayout="row" fxLayoutAlign="center"> <div fxLayout="column" fxLayoutAlign="center" fxLayoutGap="20px" fxFill>
<div fxLayout="column" fxLayoutGap="20"> <div fxLayout="row" fxLayoutAlign="center">
<form> <form>
<mat-form-field class="input-block"> <mat-form-field class="input-block">
<input matInput #commentSubject type="text" maxlength="24" placeholder="Choose a title"> <input matInput #commentSubject type="text" maxlength="24" placeholder="Choose a title">
...@@ -13,6 +13,8 @@ ...@@ -13,6 +13,8 @@
<button mat-raised-button color="primary" (click)="send(commentSubject.value, commentBody.value)">Send</button> <button mat-raised-button color="primary" (click)="send(commentSubject.value, commentBody.value)">Send</button>
</form> </form>
</div> </div>
<div fxLayout="row" fxLayoutAlign="center">
<app-comment-list></app-comment-list>
</div>
</div> </div>
<app-comment-list></app-comment-list>
form { form {
min-width: 800px; display: block;
width: 100%;
max-width: 800px;
margin-bottom: 50px; margin-bottom: 50px;
} }
app-comment-list {
width: 100%;
max-width: 800px;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment