feat(ui): mission control pane header actions + status tinting
This commit is contained in:
@@ -1166,4 +1166,30 @@
|
||||
<Setter Property="Background" Value="{DynamicResource AccentBrush}"/>
|
||||
</Style>
|
||||
|
||||
<!-- ============================================================ -->
|
||||
<!-- MISSION CONTROL PANE STATUS TINTING -->
|
||||
<!-- Base neutral grey; tints layer on by status. -->
|
||||
<!-- Running / idle / queued: no class → fall through to base. -->
|
||||
<!-- ============================================================ -->
|
||||
<Style Selector="Border.monitor-pane">
|
||||
<Setter Property="Background" Value="{DynamicResource SurfaceBrush}" />
|
||||
<Setter Property="BorderBrush" Value="{DynamicResource LineBrush}" />
|
||||
</Style>
|
||||
<Style Selector="Border.monitor-pane.mon-done">
|
||||
<Setter Property="Background" Value="{DynamicResource DoneTintBrush}" />
|
||||
<Setter Property="BorderBrush" Value="{DynamicResource DoneTintBorderBrush}" />
|
||||
</Style>
|
||||
<Style Selector="Border.monitor-pane.mon-review">
|
||||
<Setter Property="Background" Value="{DynamicResource DoneTintBrush}" />
|
||||
<Setter Property="BorderBrush" Value="{DynamicResource DoneTintBorderBrush}" />
|
||||
</Style>
|
||||
<Style Selector="Border.monitor-pane.mon-roadblock">
|
||||
<Setter Property="Background" Value="{DynamicResource RoadblockTintBrush}" />
|
||||
<Setter Property="BorderBrush" Value="{DynamicResource RoadblockTintBorderBrush}" />
|
||||
</Style>
|
||||
<Style Selector="Border.monitor-pane.mon-failed">
|
||||
<Setter Property="Background" Value="{DynamicResource ErrorTintBrush}" />
|
||||
<Setter Property="BorderBrush" Value="{DynamicResource ErrorTintBorderBrush}" />
|
||||
</Style>
|
||||
|
||||
</Styles>
|
||||
|
||||
@@ -99,6 +99,8 @@
|
||||
<SolidColorBrush x:Key="QueuedTintBorderBrush" Color="#4C8B9D7A" />
|
||||
<SolidColorBrush x:Key="DoneTintBrush" Color="#1F6FA86B" />
|
||||
<SolidColorBrush x:Key="DoneTintBorderBrush" Color="#4C6FA86B" />
|
||||
<SolidColorBrush x:Key="RoadblockTintBrush" Color="#1FD4A574" />
|
||||
<SolidColorBrush x:Key="RoadblockTintBorderBrush" Color="#4CD4A574" />
|
||||
|
||||
<!-- Merge editor (3-pane conflict resolver) block tints -->
|
||||
<SolidColorBrush x:Key="MergeOursTintBrush" Color="#1F7C9166" /> <!-- ours side (moss) -->
|
||||
|
||||
Reference in New Issue
Block a user