mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-03-25 10:48:47 +00:00
37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<Styles xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Design.PreviewWith>
|
|
<Border Padding="20">
|
|
<!-- Add Controls for Previewer Here -->
|
|
</Border>
|
|
</Design.PreviewWith>
|
|
|
|
<Style Selector=":is(Button).pin-collection-button">
|
|
<!-- <Setter Property="Margin" Value="0 2"/> -->
|
|
</Style>
|
|
|
|
<Style Selector="StackPanel#PinContainer">
|
|
<Setter Property="Height" Value="26" />
|
|
<Setter Property="Cursor" Value="Hand" />
|
|
</Style>
|
|
<Style Selector="StackPanel#PinContainer Border#PinPoint">
|
|
<Setter Property="Width" Value="13" />
|
|
<Setter Property="Height" Value="13" />
|
|
<Setter Property="Background" Value="Transparent" />
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
</Style>
|
|
<Style Selector="StackPanel#PinContainer Border#VisualPinPoint">
|
|
<Setter Property="Width" Value="11" />
|
|
<Setter Property="Height" Value="11" />
|
|
<Setter Property="Margin" Value="2" />
|
|
<Setter Property="CornerRadius" Value="6" />
|
|
<Setter Property="Background" Value="DarkRed" />
|
|
<Setter Property="BorderBrush" Value="Red" />
|
|
<Setter Property="BorderThickness" Value="2" />
|
|
</Style>
|
|
<Style Selector="StackPanel#PinContainer TextBlock#PinName">
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
<Setter Property="FontSize" Value="11" />
|
|
</Style>
|
|
</Styles>
|