mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
49 lines
2.2 KiB
XML
49 lines
2.2 KiB
XML
<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, 8, 40, 8</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"/>
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
|
</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}" />
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
|
</Style>
|
|
|
|
<!-- Setting expander style -->
|
|
|
|
<Style x:Key="SettingExpanderStyle" TargetType="muxc:Expander">
|
|
<Setter Property="Background" Value="{ThemeResource CardBackgroundBrush}" />
|
|
<Setter Property="BorderThickness" Value="{ThemeResource CardBorderThickness}" />
|
|
<Setter Property="BorderBrush" Value="{ThemeResource CardBorderBrush}" />
|
|
<Setter Property="HorizontalAlignment" Value="Stretch" />
|
|
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
|
|
</Style>
|
|
|
|
<Style x:Key="ExpanderSeparatorStyle" TargetType="Rectangle">
|
|
<Setter Property="Height" Value="1"/>
|
|
<Setter Property="Stroke" Value="{ThemeResource CardBorderBrush}" />
|
|
</Style>
|
|
</ResourceDictionary>
|