Change colors in FileSystem panel.

This commit is contained in:
2025-12-15 17:08:37 +00:00
parent 507b1717ee
commit 6e4befa98b
5 changed files with 9 additions and 12 deletions

View File

@@ -85,25 +85,22 @@
IsVisible="{Binding FilesVisible, Mode=OneWay}" />
<CheckBox IsEnabled="False"
IsChecked="{Binding BootableChecked, Mode=OneWay}">
<TextBlock Foreground="SlateBlue"
Text="{x:Static localization:Core.Filesystem_contains_boot_code}" />
<controls:SpectreTextBlock Text="{x:Static localization:Core.Filesystem_contains_boot_code}" />
</CheckBox>
<CheckBox IsEnabled="False"
IsChecked="{Binding DirtyChecked, Mode=OneWay}">
<TextBlock Foreground="SlateBlue"
Text="{x:Static localization:Core.Filesystem_has_not_been_unmounted_correctly_or_contains_errors}" />
<controls:SpectreTextBlock Text="{x:Static localization:Core.Filesystem_has_not_been_unmounted_correctly_or_contains_errors}" />
</CheckBox>
</StackPanel>
</ScrollViewer>
<Border Grid.Row="1"
BorderThickness="1"
BorderBrush="LightGray"
BorderBrush="{DynamicResource SystemControlForegroundBaseMediumLowBrush}"
CornerRadius="8"
IsVisible="{Binding !!InformationText, Mode=OneWay}">
<StackPanel Spacing="8"
Margin="12">
<controls:SpectreTextBlock FontWeight="Bold"
Foreground="SlateBlue"
Text="{x:Static localization:UI.Title_Details}" />
<ScrollViewer>
<controls:SpectreTextBlock Text="{Binding InformationText, Mode=OneWay}"