Skip to content

Commit

Permalink
fix: remove reference to non-existant brush (#1408)
Browse files Browse the repository at this point in the history
(cherry picked from commit 2b9dcbd)
  • Loading branch information
kazo0 authored and mergify[bot] committed May 22, 2024
1 parent c4c0afa commit 9ba5fde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion doc/styles/PipsPager.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ IsDefaultStyle\*: Styles in this column will be set as the default implicit styl
| `MaterialPipsPagerNavigationButtonVisualStateEllipseFillPointerOver` | `SolidColorBrush` | `PrimaryHoverBrush` |
| `MaterialPipsPagerNavigationButtonVisualStateEllipseFillPressed` | `SolidColorBrush` | `PrimaryPressedBrush` |
| `MaterialPipsPagerNavigationButtonVisualStateEllipseFillFocused` | `SolidColorBrush` | `PrimaryFocusedBrush` |
| `MaterialPipsPagerNavigationButtonVisualStateEllipseFillUnfocused` | `Brush` | `PrimaryUnfocusedBrush` |
| `MaterialPipsPagerNavigationButtonVisualStateEllipseFillUnfocused` | `Brush` | `SystemControlTransparentBrush` |
| `PipsPagerHorizontalOrientationButtonWidth` | `Double` | 12 |
| `PipsPagerHorizontalOrientationButtonHeight` | `Double` | 12 |
| `PipsPagerVerticalOrientationButtonWidth` | `Double` | 12 |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Expand Down Expand Up @@ -61,7 +61,7 @@
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillPointerOver" ResourceKey="PrimaryHoverBrush" />
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillPressed" ResourceKey="PrimaryPressedBrush" />
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillFocused" ResourceKey="PrimaryFocusedBrush" />
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillUnfocused" ResourceKey="PrimaryUnfocusedBrush" />
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillUnfocused" ResourceKey="SystemControlTransparentBrush" />

<!-- Material PipsPager Resources -->
<x:Double x:Key="PipsPagerHorizontalOrientationButtonWidth">12</x:Double>
Expand Down Expand Up @@ -143,7 +143,7 @@
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillPointerOver" ResourceKey="PrimaryHoverBrush" />
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillPressed" ResourceKey="PrimaryPressedBrush" />
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillFocused" ResourceKey="PrimaryFocusedBrush" />
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillUnfocused" ResourceKey="PrimaryUnfocusedBrush" />
<StaticResource x:Key="MaterialPipsPagerNavigationButtonVisualStateEllipseFillUnfocused" ResourceKey="SystemControlTransparentBrush" />

<!-- Material PipsPager Resources -->
<x:Double x:Key="PipsPagerHorizontalOrientationButtonWidth">12</x:Double>
Expand Down

0 comments on commit 9ba5fde

Please sign in to comment.