feat: expand cockpit integrations and support workflows
Add Phoenix remote desktop, action connector, documentation engine, and gamification support. Refactor support-case processing and search/action UI, and update installer assets and dependencies.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<ToolTip x:Class="FasdDesktopUi.Basics.UserControls.CustomMenuItemToolTipTemplate"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:FasdDesktopUi.Basics.UserControls"
|
||||
mc:Ignorable="d"
|
||||
>
|
||||
<ToolTip.Template>
|
||||
<ControlTemplate>
|
||||
<Border BorderBrush="{DynamicResource FontColor.Menu.Categories}" BorderThickness="1" CornerRadius="5"
|
||||
Background="{DynamicResource BackgroundColor.Menu.Categories}"
|
||||
>
|
||||
<TextBlock Text="{Binding Text, RelativeSource={RelativeSource AncestorType=ToolTip}}"
|
||||
Foreground="{DynamicResource FontColor.Menu.Categories}"
|
||||
TextWrapping="Wrap"
|
||||
MaxWidth="300"
|
||||
Margin="8,3,8,5"
|
||||
/>
|
||||
</Border>
|
||||
</ControlTemplate>
|
||||
</ToolTip.Template>
|
||||
</ToolTip>
|
||||
Reference in New Issue
Block a user