Files
C4IT-F4SD-Client/FasdDesktopUi/ResourceDictionaries/SlimPageResources/DataHistoryResources.xaml
2025-11-11 11:03:42 +01:00

44 lines
1.8 KiB
XML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="SlimPage.DataHistory.OverviewTitle"
TargetType="TextBlock">
<Setter Property="FontFamily"
Value="Calibri" />
<Setter Property="FontWeight"
Value="Bold" />
<Setter Property="FontSize"
Value="13" />
<Setter Property="TextBlock.LineHeight"
Value="15" />
<Setter Property="TextBlock.LineStackingStrategy"
Value="BlockLineHeight" />
<Setter Property="Foreground"
Value="{DynamicResource FontColor.SlimPage.DataHistory.OverviewTitle}" />
<Style.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource AncestorType=UserControl}, Path=IsMouseOver}"
Value="True">
<Setter Property="Foreground"
Value="{DynamicResource Color.FunctionMarker}" />
</DataTrigger>
</Style.Triggers>
</Style>
<Style x:Key="SlimPage.DataHistory.ColumnHeader"
TargetType="TextBlock">
<Setter Property="FontFamily"
Value="Calibri" />
<Setter Property="FontWeight"
Value="Regular" />
<Setter Property="FontSize"
Value="12" />
<Setter Property="TextBlock.LineHeight"
Value="14" />
<Setter Property="TextBlock.LineStackingStrategy"
Value="BlockLineHeight" />
<Setter Property="Foreground"
Value="{DynamicResource FontColor.SlimPage.DatHistory.ColumnHeader}" />
</Style>
</ResourceDictionary>