|
@@ -1,13 +1,13 @@
|
|
|
<Styles xmlns="https://github.com/avaloniaui">
|
|
|
<Style Selector="RepeatButton">
|
|
|
<Setter Property="Background"
|
|
|
- Value="{StyleResource ThemeControlMidBrush}" />
|
|
|
+ Value="{DynamicResource ThemeControlMidBrush}" />
|
|
|
<Setter Property="BorderBrush"
|
|
|
- Value="{StyleResource ThemeBorderLightBrush}" />
|
|
|
+ Value="{DynamicResource ThemeBorderLightBrush}" />
|
|
|
<Setter Property="BorderThickness"
|
|
|
- Value="{StyleResource ThemeBorderThickness}" />
|
|
|
+ Value="{DynamicResource ThemeBorderThickness}" />
|
|
|
<Setter Property="Foreground"
|
|
|
- Value="{StyleResource ThemeForegroundBrush}" />
|
|
|
+ Value="{DynamicResource ThemeForegroundBrush}" />
|
|
|
<Setter Property="HorizontalContentAlignment"
|
|
|
Value="Center" />
|
|
|
<Setter Property="VerticalContentAlignment"
|
|
@@ -31,14 +31,14 @@
|
|
|
</Style>
|
|
|
<Style Selector="RepeatButton:pointerover /template/ ContentPresenter">
|
|
|
<Setter Property="BorderBrush"
|
|
|
- Value="{StyleResource ThemeBorderMidBrush}" />
|
|
|
+ Value="{DynamicResource ThemeBorderMidBrush}" />
|
|
|
</Style>
|
|
|
<Style Selector="RepeatButton:pressed /template/ ContentPresenter">
|
|
|
<Setter Property="Background"
|
|
|
- Value="{StyleResource ThemeControlDarkBrush}" />
|
|
|
+ Value="{DynamicResource ThemeControlDarkBrush}" />
|
|
|
</Style>
|
|
|
<Style Selector="RepeatButton:disabled">
|
|
|
<Setter Property="Opacity"
|
|
|
- Value="{StyleResource ThemeDisabledOpacity}" />
|
|
|
+ Value="{DynamicResource ThemeDisabledOpacity}" />
|
|
|
</Style>
|
|
|
</Styles>
|