When I hover my mouse over the button, the background changes to default lightblue background, Why do my triggers not trigger?
<Style TargetType="Button" x:Key="btnBase">
<Setter Property="OverridesDefaultStyle" Value="True"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Button Name="Button"
FontFamily="/Resources/Fonts/Source Sans Pro/#Source Sans Pro"
FontWeight="Bold"
FontSize="15"
BorderThickness="2"
Padding="14,3,14,3"
Foreground="{DynamicResource btnBaseForegroundColor}"
BorderBrush="{DynamicResource btnBaseBorderBrushColor}"
Background="{DynamicResource btnBaseBackgroundColor}">
<ContentPresenter/>
</Button>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="Black"></Setter>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>