2021-08-01 20:37:44 +02:00
|
|
|
<ResourceDictionary
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
|
|
|
xmlns:muxc="using:Microsoft.UI.Xaml.Controls">
|
|
|
|
|
|
|
|
|
|
<!-- Thickness -->
|
|
|
|
|
<Thickness x:Key="ExpanderContentPadding">0</Thickness>
|
|
|
|
|
<Thickness x:Key="ExpanderSettingMargin">56, 12, 40, 12</Thickness>
|
|
|
|
|
|
|
|
|
|
<!-- Styles -->
|
|
|
|
|
<!-- Setting used in a Expander header -->
|
|
|
|
|
<Style x:Key="ExpanderHeaderSettingStyle" TargetType="controls:Setting">
|
|
|
|
|
<Setter Property="Background" Value="Transparent" />
|
|
|
|
|
<Setter Property="BorderThickness" Value="0" />
|
|
|
|
|
<Setter Property="BorderBrush" Value="Transparent" />
|
|
|
|
|
<Setter Property="Padding" Value="0, 14, 0, 14" />
|
|
|
|
|
<Setter Property="Margin" Value="0"/>
|
2021-08-01 21:17:27 +02:00
|
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
2021-08-01 20:37:44 +02:00
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<Thickness x:Key="ExpanderChevronMargin">0,0,8,0</Thickness>
|
|
|
|
|
|
|
|
|
|
<!-- Setting used in a Expander header -->
|
|
|
|
|
<Style x:Key="ExpanderContentSettingStyle" TargetType="controls:Setting">
|
|
|
|
|
<Setter Property="Background" Value="Transparent" />
|
|
|
|
|
<Setter Property="BorderThickness" Value="0,1,0,0" />
|
|
|
|
|
<Setter Property="BorderBrush" Value="{ThemeResource CardBorderBrush}" />
|
|
|
|
|
<Setter Property="CornerRadius" Value="0" />
|
|
|
|
|
<Setter Property="Padding" Value="{StaticResource ExpanderSettingMargin}" />
|
2021-08-01 21:17:27 +02:00
|
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
2021-08-01 20:37:44 +02:00
|
|
|
</Style>
|
|
|
|
|
|
|
|
|
|
<!-- Setting expander style -->
|
2021-08-09 08:36:06 +02:00
|
|
|
<Style TargetType="muxc:Expander">
|
2021-08-01 20:37:44 +02:00
|
|
|
<Setter Property="Background" Value="{ThemeResource CardBackgroundBrush}" />
|
|
|
|
|
<Setter Property="BorderThickness" Value="{ThemeResource CardBorderThickness}" />
|
|
|
|
|
<Setter Property="BorderBrush" Value="{ThemeResource CardBorderBrush}" />
|
2021-08-01 21:17:27 +02:00
|
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
|
2021-08-01 20:37:44 +02:00
|
|
|
</Style>
|
|
|
|
|
</ResourceDictionary>
|