mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-05-09 16:16:13 -04:00
Enable project-wide nullable on LibationUiBase and LibationAvalonia Explicitly parallelize unit tests
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:HangoverAvalonia"
|
|
x:Class="HangoverAvalonia.App">
|
|
|
|
<Application.Styles>
|
|
<FluentTheme>
|
|
<FluentTheme.Palettes>
|
|
<ColorPaletteResources x:Key="Light" />
|
|
<ColorPaletteResources x:Key="Dark" />
|
|
</FluentTheme.Palettes>
|
|
</FluentTheme>
|
|
|
|
<Style Selector="TextBox[IsReadOnly=true]">
|
|
<Setter Property="Background" Value="{DynamicResource SystemChromeDisabledHighColor}" />
|
|
<Setter Property="CaretBrush" Value="{DynamicResource SystemControlTransparentBrush}" />
|
|
<Style Selector="^ /template/ Border#PART_BorderElement">
|
|
<Setter Property="Background" Value="{DynamicResource SystemChromeDisabledHighColor}" />
|
|
</Style>
|
|
</Style>
|
|
<Style Selector="Button">
|
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
|
<Style Selector="^">
|
|
<Setter Property="Foreground" Value="{DynamicResource SystemChromeAltLowColor}" />
|
|
</Style>
|
|
</Style>
|
|
<Style Selector="ScrollBar">
|
|
<!-- It's called AutoHide, but this is really the mouseover shrink/expand. -->
|
|
<Setter Property="AllowAutoHide" Value="false"/>
|
|
</Style>
|
|
</Application.Styles>
|
|
</Application>
|