⚠ This page is served via a proxy. Original site: https://github.com
This service does not collect credentials or authentication data.
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">

<!-- updated specification 2018 -->
<Style x:Key="MaterialDesignBody1Hyperlink" TargetType="{x:Type Hyperlink}">
<Setter Property="FontSize" Value="16" />
<Setter Property="FontWeight" Value="Regular" />
<Style x:Key="MaterialDesignHyperlink" TargetType="{x:Type Hyperlink}">
<Setter Property="Foreground" Value="{DynamicResource MaterialDesign.Brush.Foreground}" />
<Setter Property="TextDecorations" Value="None" />
<Style.Triggers>
Expand All @@ -24,6 +22,13 @@
</Style.Triggers>
</Style>

<Style x:Key="MaterialDesignBody1Hyperlink"
TargetType="{x:Type Hyperlink}"
BasedOn="{StaticResource MaterialDesignHyperlink}">
<Setter Property="FontSize" Value="16" />
<Setter Property="FontWeight" Value="Regular" />
</Style>

<Style x:Key="MaterialDesignBody2Hyperlink"
TargetType="{x:Type Hyperlink}"
BasedOn="{StaticResource MaterialDesignBody1Hyperlink}">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
</ResourceDictionary.MergedDictionaries>

<Style x:Key="MaterialDesignTextBlock" TargetType="{x:Type TextBlock}">
<Style.Resources>
<Style TargetType="Hyperlink" BasedOn="{StaticResource MaterialDesignHyperlink}" />
</Style.Resources>
<Setter Property="FontSize" Value="13" />
<Setter Property="FontWeight" Value="Regular" />
<Setter Property="Padding" Value="0,4" />
Expand Down