27 lines
1.3 KiB
XML
27 lines
1.3 KiB
XML
<Application
|
|
x:Class="Bitvault.Avalonia.App"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ui="using:FluentAvalonia.UI.Controls"
|
|
RequestedThemeVariant="Default">
|
|
<Application.Styles>
|
|
<ThemeResources PreferSystemTheme="True" PreferUserAccentColor="True" />
|
|
<Style Selector="ui|SettingsExpanderItem">
|
|
<Style Selector="^ /template/ Expander#Expander">
|
|
<Setter Property="IsVisible" Value="False" />
|
|
</Style>
|
|
<Style Selector="^:footerBottom /template/ ContentPresenter#FooterPresenter">
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
|
</Style>
|
|
</Style>
|
|
<Style Selector="ui|SettingsExpander /template/ Expander#Expander ToggleButton">
|
|
<Setter Property="CornerRadius" Value="{DynamicResource OverlayCornerRadius}" />
|
|
</Style>
|
|
</Application.Styles>
|
|
<Application.Resources>
|
|
<FontFamily x:Key="SymbolFontFamily">avares://HyperX.Launcher.Avalonia/Assets/SegoeIcons.ttf#Segoe Fluent Icons</FontFamily>
|
|
<x:Double x:Key="SettingsExpanderItemAdaptiveWidthTrigger">0</x:Double>
|
|
<Thickness x:Key="SettingsExpanderItemBottomFooterMargin">0,8,0,0</Thickness>
|
|
</Application.Resources>
|
|
</Application>
|