UI: Change default notification style for alarm notification
This commit is contained in:
parent
9ea27302db
commit
74a58817db
@ -25,13 +25,13 @@
|
|||||||
</section>
|
</section>
|
||||||
<mat-divider></mat-divider>
|
<mat-divider></mat-divider>
|
||||||
<div *ngIf="(notifications$ | async).length; else emptyNotification" style="overflow: auto">
|
<div *ngIf="(notifications$ | async).length; else emptyNotification" style="overflow: auto">
|
||||||
<section style="min-height: 100px; overflow: auto; padding: 10px 0;">
|
<section style="min-height: 100px; overflow: auto; padding: 6px 0;">
|
||||||
<div *ngFor="let notification of (notifications$ | async); let last = last; trackBy: trackById">
|
<div *ngFor="let notification of (notifications$ | async); let last = last; trackBy: trackById">
|
||||||
<tb-notification [notification]="notification"
|
<tb-notification [notification]="notification"
|
||||||
[onClose]="onClose"
|
[onClose]="onClose"
|
||||||
(markAsRead)="markAsRead($event)">
|
(markAsRead)="markAsRead($event)">
|
||||||
</tb-notification>
|
</tb-notification>
|
||||||
<mat-divider *ngIf="!last" style="margin-bottom: 4px"></mat-divider>
|
<mat-divider *ngIf="!last" style="margin: 4px"></mat-divider>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -20,6 +20,7 @@
|
|||||||
display: block;
|
display: block;
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
margin: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
@ -61,6 +62,7 @@
|
|||||||
.alarm-severity {
|
.alarm-severity {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
margin-right: 7px;
|
||||||
|
|
||||||
.severity {
|
.severity {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user