style(daily-prep): brighten and enlarge the Plan-My-Day icon

Rest stroke -> TextBrush (was too dim vs the filled neighbours),
hover -> AccentBrush, icon Viewbox 15 -> 18.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
mika kuns
2026-06-04 10:23:19 +02:00
parent 52e3980cd1
commit 15ed624d4a
2 changed files with 3 additions and 3 deletions

View File

@@ -249,13 +249,13 @@
<!-- Stroke-rendered icon (for line-art geometries that PathIcon would fill away) -->
<Style Selector="Button.icon-btn Path.plan-icon">
<Setter Property="Stroke" Value="{StaticResource TextMuteBrush}" />
<Setter Property="Stroke" Value="{StaticResource TextBrush}" />
<Setter Property="StrokeThickness" Value="1.7" />
<Setter Property="StrokeLineCap" Value="Round" />
<Setter Property="StrokeJoin" Value="Round" />
</Style>
<Style Selector="Button.icon-btn:pointerover Path.plan-icon">
<Setter Property="Stroke" Value="{StaticResource TextBrush}" />
<Setter Property="Stroke" Value="{StaticResource AccentBrush}" />
</Style>
<!-- ============================================================ -->

View File

@@ -39,7 +39,7 @@
</Button>
<Button Classes="icon-btn" IsVisible="{Binding IsMyDayList}"
Command="{Binding ShowPrepLogCommand}" ToolTip.Tip="{loc:Tr tasks.planMyDayTip}">
<Viewbox Width="15" Height="15">
<Viewbox Width="18" Height="18">
<Path Classes="plan-icon" Data="{StaticResource Icon.PlanDay}"/>
</Viewbox>
</Button>