sourcegit/src/Resources/Styles/HyperLink.xaml

12 lines
598 B
Text
Raw Normal View History

2020-07-03 00:24:31 -07:00
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="{x:Type Hyperlink}">
<Setter Property="TextDecorations" Value="{x:Null}"/>
2021-08-04 22:44:25 -07:00
<Setter Property="RenderOptions.ClearTypeHint" Value="Enabled"/>
2020-07-03 00:24:31 -07:00
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Foreground" Value="{DynamicResource Brush.Accent1}"/>
</Trigger>
</Style.Triggers>
</Style>
</ResourceDictionary>