Make admin cat text color orange
This commit is contained in:
parent
9224707de0
commit
2f6ea0ddda
|
@ -68,9 +68,14 @@
|
|||
<mat-panel-title>
|
||||
{{cat.display_name}}
|
||||
</mat-panel-title>
|
||||
<mat-panel-description>
|
||||
({{cat.name}})
|
||||
</mat-panel-description>
|
||||
<mat-panel-description>
|
||||
<div *ngIf="cat.admin" style="color: darkorange">
|
||||
({{cat.name}})
|
||||
</div>
|
||||
<div *ngIf="!cat.admin">
|
||||
({{cat.name}})
|
||||
</div>
|
||||
</mat-panel-description>
|
||||
<button mat-mini-fab color="primary" style="box-shadow: none">
|
||||
{{cat.workflow_specs.length}}
|
||||
</button>
|
||||
|
|
Loading…
Reference in New Issue