Skip to content

Commit

Permalink
Fixed a style error
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Peyronnet committed Jul 6, 2023
1 parent b2d5ab3 commit 61159dd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Gavilya/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -1057,8 +1057,6 @@
</Style>
<SolidColorBrush x:Key="Button.Static.Background6" Color="#FFDDDDDD" />
<SolidColorBrush x:Key="Button.Static.Border6" Color="#FF707070" />
<SolidColorBrush x:Key="Button.MouseOver.Background6" Color="{DynamicResource Background}" />
<SolidColorBrush x:Key="Button.Pressed.Background6" Color="{DynamicResource Background}" />
<SolidColorBrush x:Key="Button.Disabled.Background6" Color="#FFF4F4F4" />
<SolidColorBrush x:Key="Button.Disabled.Border6" Color="#FFADB2B5" />
<SolidColorBrush x:Key="Button.Disabled.Foreground6" Color="#FF838383" />
Expand All @@ -1082,11 +1080,11 @@
<Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource {x:Static SystemColors.HighlightBrushKey}}" />
</Trigger>
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Background" TargetName="border" Value="{StaticResource Button.MouseOver.Background6}" />
<Setter Property="Background" TargetName="border" Value="{DynamicResource Background}" />
<Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource Accent}" />
</Trigger>
<Trigger Property="IsPressed" Value="true">
<Setter Property="Background" TargetName="border" Value="{StaticResource Button.Pressed.Background6}" />
<Setter Property="Background" TargetName="border" Value="{DynamicResource Background}" />
<Setter Property="BorderBrush" TargetName="border" Value="{DynamicResource Accent}" />
</Trigger>
<Trigger Property="IsEnabled" Value="false">
Expand Down

0 comments on commit 61159dd

Please sign in to comment.