Saradomin-Launcher/Saradomin/Resources/Styles/OutsideNavigatorButton.axaml
2022-05-26 22:09:42 +02:00

26 lines
No EOL
1.3 KiB
XML

<Styles xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style Selector="Button.OutsideNavigator">
<Setter Property="BorderThickness" Value="0" />
<Setter Property="FontSize" Value="14" />
<Setter Property="FontWeight" Value="Light" />
<Setter Property="Height" Value="20" />
<Setter Property="Padding" Value="6 0" />
<Setter Property="Width" Value="95" />
<Setter Property="Margin" Value="1,0,0,0" />
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="VerticalContentAlignment" Value="Center" />
<Setter Property="Background" Value="#7D694E" />
<Setter Property="Foreground" Value="#F0F0F0" />
</Style>
<Style Selector="Button.OutsideNavigator:pointerover /template/ ContentPresenter#PART_ContentPresenter">
<Setter Property="Background" Value="White" />
<Setter Property="TextBlock.Foreground" Value="#3E3529" />
</Style>
<Style Selector="Button.OutsideNavigator:pressed /template/ ContentPresenter#PART_ContentPresenter">
<Setter Property="Background" Value="#F2C954" />
<Setter Property="TextBlock.Foreground" Value="#3E3529" />
</Style>
</Styles>