- fix: transparent popup

This commit is contained in:
2025-01-21 20:44:36 +03:00
parent 86e0536f0f
commit 3af99d40a1
4 changed files with 74 additions and 82 deletions

View File

@@ -4,29 +4,32 @@
</Style>
<Style Selector="Border">
<Setter Property="BorderBrush" Value="#343334" />
<Setter Property="Background" Value="{StaticResource NoneBackground}" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderThickness" Value="0" />
<Setter Property="BoxShadow" Value="0 0 10 0 #222222" />
<Setter Property="BoxShadow" Value="0 0 2 2 #222222" />
</Style>
<Style Selector="Label">
<Setter Property="Foreground" Value="#f7f7ff" />
</Style>
<Style Selector="ItemsControl">
<Setter Property="Background" Value="{StaticResource NoneBackground}" />
<Setter Property="Background" Value="Transparent" />
</Style>
<Style Selector="Button">
<Setter Property="BorderBrush" Value="#343334" />
<Setter Property="BorderThickness" Value="0" />
<Setter Property="Padding" Value="5" />
<Setter Property="CornerRadius" Value="10" />
<Setter Property="Background" Value="{StaticResource NoneBackground}" />
<Setter Property="Background" Value="Transparent" />
</Style>
<Style Selector="Button:pressed">
<Setter Property="Background" Value="{StaticResource NoneBackground}" />
<Setter Property="RenderTransform" Value="{x:Null}" />
<Setter Property="BorderThickness" Value="0,0,0,2" />
<Setter Property="Background" Value="Transparent" />
</Style>
<Style Selector="Button:pointerover">
<Setter Property="RenderTransform" Value="{x:Null}" />
<Setter Property="BorderThickness" Value="0,0,0,2" />
</Style>
@@ -34,7 +37,7 @@
<Setter Property="CornerRadius" Value="0,8,8,0" />
<Setter Property="Margin" Value="0,0,0,5" />
<Setter Property="Padding" Value="8" />
<Setter Property="Background" Value="{StaticResource NoneBackground}" />
<Setter Property="Background" Value="Transparent" />
</Style>
<Style Selector="Button.ViewSelectButton:pressed">
@@ -52,18 +55,18 @@
<Setter Property="CornerRadius" Value="0,8,8,0" />
<Setter Property="Margin" Value="0,0,0,5" />
<Setter Property="Padding" Value="8" />
<Setter Property="Background" Value="{StaticResource NoneBackground}" />
<Setter Property="Background" Value="Transparent" />
</Style>
<Style Selector="ListBox.AccountSelector &gt; ListBoxItem">
<Setter Property="CornerRadius" Value="0" />
<Setter Property="Margin" Value="0,0,0,0" />
<Setter Property="Padding" Value="0" />
<Setter Property="Background" Value="{StaticResource NoneBackground}" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="Focusable" Value="False" />
</Style>
<Style Selector="TextBox">
<Setter Property="Background" Value="{StaticResource NoneBackground}" />
<Setter Property="Background" Value="Transparent" />
</Style>
</Styles>