mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
ux: improve tooltip recognition
This commit is contained in:
parent
537ac3e2df
commit
869ba7a471
1 changed files with 21 additions and 0 deletions
|
@ -163,6 +163,27 @@
|
||||||
<Style Selector="ToolTip">
|
<Style Selector="ToolTip">
|
||||||
<Setter Property="Foreground" Value="{DynamicResource Brush.FG1}"/>
|
<Setter Property="Foreground" Value="{DynamicResource Brush.FG1}"/>
|
||||||
<Setter Property="Background" Value="{DynamicResource Brush.Popup}"/>
|
<Setter Property="Background" Value="{DynamicResource Brush.Popup}"/>
|
||||||
|
<Setter Property="VerticalOffset" Value="-8"/>
|
||||||
|
<Setter Property="Template">
|
||||||
|
<ControlTemplate>
|
||||||
|
<Grid Effect="drop-shadow(0 0 8 #80000000)">
|
||||||
|
<Border Margin="8"
|
||||||
|
Padding="8,6"
|
||||||
|
CornerRadius="4"
|
||||||
|
Background="{DynamicResource Brush.Popup}"
|
||||||
|
BorderThickness="0"
|
||||||
|
MaxWidth="{TemplateBinding MaxWidth}"
|
||||||
|
MinHeight="{TemplateBinding MinHeight}"
|
||||||
|
HorizontalAlignment="{TemplateBinding HorizontalAlignment}">
|
||||||
|
<ContentPresenter Name="PART_ContentPresenter"
|
||||||
|
MaxWidth="{TemplateBinding MaxWidth}"
|
||||||
|
Content="{TemplateBinding Content}"
|
||||||
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
||||||
|
TextBlock.TextWrapping="Wrap"/>
|
||||||
|
</Border>
|
||||||
|
</Grid>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter>
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
<Style Selector="FlyoutPresenter">
|
<Style Selector="FlyoutPresenter">
|
||||||
|
|
Loading…
Reference in a new issue