mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
15 lines
No EOL
769 B
XML
15 lines
No EOL
769 B
XML
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Style x:Key="Style.Label" TargetType="{x:Type Label}">
|
|
<Setter Property="Foreground" Value="{DynamicResource Brush.FG}"/>
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
<Setter Property="SnapsToDevicePixels" Value="True"/>
|
|
</Style>
|
|
|
|
<Style TargetType="{x:Type Label}" BasedOn="{StaticResource Style.Label}"/>
|
|
|
|
<Style x:Key="Style.Label.GroupHeader" BasedOn="{StaticResource Style.Label}" TargetType="{x:Type Label}">
|
|
<Setter Property="FontWeight" Value="DemiBold"/>
|
|
<Setter Property="Opacity" Value=".5"/>
|
|
</Style>
|
|
</ResourceDictionary> |