Make admin cat text color orange

This commit is contained in:
alicia pritchett 2021-09-29 16:27:22 -04:00
parent 9224707de0
commit 2f6ea0ddda
1 changed files with 8 additions and 3 deletions

View File

@ -68,9 +68,14 @@
<mat-panel-title> <mat-panel-title>
{{cat.display_name}} {{cat.display_name}}
</mat-panel-title> </mat-panel-title>
<mat-panel-description> <mat-panel-description>
({{cat.name}}) <div *ngIf="cat.admin" style="color: darkorange">
</mat-panel-description> ({{cat.name}})
</div>
<div *ngIf="!cat.admin">
({{cat.name}})
</div>
</mat-panel-description>
<button mat-mini-fab color="primary" style="box-shadow: none"> <button mat-mini-fab color="primary" style="box-shadow: none">
{{cat.workflow_specs.length}} {{cat.workflow_specs.length}}
</button> </button>