restyle indicators

This commit is contained in:
Joel Wetzell
2026-03-12 17:05:25 -05:00
parent b13760deed
commit 9570428df9
2 changed files with 7 additions and 5 deletions
@@ -4,10 +4,10 @@
isInError() ? 'border-red-500' : 'border-gray-600'
}} border-solid w-full h-full"
>
<div class="flex items-center justify-center mx-2">
<div class="flex items-center justify-center">
<div class="flex items-center">
<mat-icon [style.color]="inputIndicatorColor()" matTooltip="Input Indicator">south</mat-icon>
<mat-icon [style.color]="outputIndicatorColor()" matTooltip="Output Indicator">north</mat-icon>
<mat-icon [style.color]="inputIndicatorColor()" matTooltip="Input Indicator">keyboard_arrow_down</mat-icon>
<mat-icon [style.color]="outputIndicatorColor()" matTooltip="Output Indicator">keyboard_arrow_up</mat-icon>
</div>
<div class="text-white">
{{ schema().title || module()?.type }}
@@ -5,8 +5,10 @@
isInError() ? 'border-red-500' : 'border-gray-600'
}} border-solid w-full h-full"
>
<div class="flex items-center justify-end mx-2">
<div [style.backgroundColor]="indicatorColor()" class="h-2 w-2 rounded-full"></div>
<div class="flex items-center justify-end">
<div class="flex items-center">
<mat-icon [style.color]="indicatorColor()" matTooltip="Route Indicator">chevron_right</mat-icon>
</div>
<div class="flex-grow text-left ml-2 text-white">Route {{ index() }}</div>
<div class="flex items-center justify-center hover:bg-gray-700" (click)="delete.emit()">
<mat-icon class="!text-red-500">close</mat-icon>