Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align error logs text color with theme #1632

Merged
merged 2 commits into from
Oct 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions tools/SetupFlow/DevHome.SetupFlow/Views/SummaryView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,10 @@
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<TextBlock Text="Error logs" Grid.Row="0" Grid.Column="0" Margin="0, 5, 0, 0" Foreground="{StaticResource TextFillColorPrimary}"/>
<TextBlock Text="Error logs" Grid.Row="0" Grid.Column="0" Margin="0, 5, 0, 0"/>
dhoehna marked this conversation as resolved.
Show resolved Hide resolved
<StackPanel Orientation="Horizontal" Spacing="5" Grid.Row="1" Grid.Column="0">
<TextBlock Text="{x:Bind ViewModel.FailedTasks.Count}" Foreground="{StaticResource TextFillColorSecondary}"/>
<TextBlock Text="installation errors" Foreground="{StaticResource TextFillColorSecondary}"/>
<TextBlock Text="{x:Bind ViewModel.FailedTasks.Count}" Foreground="{ThemeResource TextFillColorSecondary}"/>
<TextBlock Text="installation errors" Foreground="{ThemeResource TextFillColorSecondary}"/>
hamnarauf marked this conversation as resolved.
Show resolved Hide resolved
</StackPanel>
</Grid>
<HyperlinkButton Content="View log" Grid.Row="0" Grid.Column="1" HorizontalAlignment="Right" VerticalAlignment="Top" Command="{x:Bind ViewModel.ShowLogFilesCommand, Mode=OneWay}"/>
Expand Down