mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
21 lines
1 KiB
Text
21 lines
1 KiB
Text
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
<Style TargetType="{x:Type ToolTip}">
|
||
|
<Setter Property="OverridesDefaultStyle" Value="True"/>
|
||
|
<Setter Property="HasDropShadow" Value="False"/>
|
||
|
<Setter Property="Template">
|
||
|
<Setter.Value>
|
||
|
<ControlTemplate TargetType="{x:Type ToolTip}">
|
||
|
<Border
|
||
|
BorderThickness="1"
|
||
|
BorderBrush="{DynamicResource Brush.Border1}"
|
||
|
Background="{DynamicResource Brush.BG1}"
|
||
|
Width="Auto"
|
||
|
Height="Auto">
|
||
|
<ContentPresenter Margin="6,4" TextElement.Foreground="{DynamicResource Brush.FG}" HorizontalAlignment="Left" VerticalAlignment="Top" />
|
||
|
</Border>
|
||
|
</ControlTemplate>
|
||
|
</Setter.Value>
|
||
|
</Setter>
|
||
|
</Style>
|
||
|
</ResourceDictionary>
|