mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-09 20:15:07 +00:00
(Mail) Small tweaks
(Mail-ngrx) Small tweaks (FAQ) Small tweaks (KnowledgeBase) Small tweaks
This commit is contained in:
parent
e67887f379
commit
cbd1c3e21c
|
@ -12,9 +12,9 @@
|
|||
<div class="mail-header" fxLayout="row" fxLayoutAlign="space-between center">
|
||||
|
||||
<div>
|
||||
<div class="subject" flex>{{mail.subject}}</div>
|
||||
<div class="subject">{{mail.subject}}</div>
|
||||
|
||||
<div class="labels" fxLayout="row wrap">
|
||||
<div class="labels mt-8" fxLayout="row wrap">
|
||||
<div class="label" *ngFor="let labelId of mail.labels"
|
||||
fxLayout="row" fxLayoutAlign="start center">
|
||||
<div class="label-color" [ngStyle]="{'background-color': (labels$ | async) | getById:labelId:'color'}"></div>
|
||||
|
|
|
@ -13,9 +13,9 @@
|
|||
<div class="mail-header" fxLayout="row" fxLayoutAlign="space-between center">
|
||||
|
||||
<div>
|
||||
<div class="subject" flex>{{mail.subject}}</div>
|
||||
<div class="subject">{{mail.subject}}</div>
|
||||
|
||||
<div class="labels" fxLayout="row wrap">
|
||||
<div class="labels mt-8" fxLayout="row wrap">
|
||||
<div class="label" *ngFor="let labelId of mail.labels"
|
||||
fxLayout="row" fxLayoutAlign="start center">
|
||||
<div class="label-color" [ngStyle]="{'background-color': labels | getById:labelId:'color'}"></div>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<h1>Frequently Asked Questions</h1>
|
||||
</div>
|
||||
|
||||
<div class="search mat-elevation-z7" flex fxLayout="row" fxLayoutAlign="start center">
|
||||
<div class="search mat-elevation-z7" fxLayout="row" fxLayoutAlign="start center">
|
||||
<mat-icon>search</mat-icon>
|
||||
<input [formControl]="searchInput" placeholder="Search in FAQs..." fxFlex>
|
||||
</div>
|
||||
|
@ -22,8 +22,8 @@
|
|||
|
||||
<mat-expansion-panel *ngFor="let faq of faqsFiltered; let i = index" [expanded]="step === i" (opened)="setStep(i)">
|
||||
<mat-expansion-panel-header>
|
||||
<mat-panel-title flex fxLayout="row" fxLayoutAlign="start center">
|
||||
<mat-icon class="mr-8">help_outline</mat-icon>
|
||||
<mat-panel-title fxLayout="row" fxLayoutAlign="start center">
|
||||
<mat-icon class="mr-12 s-20 secondary-text">help_outline</mat-icon>
|
||||
{{faq.question}}
|
||||
</mat-panel-title>
|
||||
</mat-expansion-panel-header>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
<a mat-list-item *ngFor="let article of category.featuredArticles"
|
||||
(click)="readArticle(article)">
|
||||
<mat-icon class="secondary-text mr-8">insert_drive_file</mat-icon>
|
||||
<mat-icon class="hint-text mr-8">insert_drive_file</mat-icon>
|
||||
{{ article.title }}
|
||||
</a>
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user