Skip to content

Commit

Permalink
Merge pull request #526 from unoplatform/dev/doti/fix-link-button
Browse files Browse the repository at this point in the history
fix: Link not visible in Light Theme
  • Loading branch information
jeromelaban authored Jul 19, 2024
2 parents 18bae83 + aa0d964 commit 1e6f258
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/Uno.Playground.Shared/Samples/Playground.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,20 @@
Margin="0,0,0,25"
VerticalAlignment="Center" />

<HyperlinkButton Content="http://platform.uno"
NavigateUri="http://platform.uno"
<HyperlinkButton Content="https://platform.uno"
NavigateUri="https://platform.uno"
Foreground="White"
FontSize="16"
Margin="1,30,0,0"
VerticalAlignment="Center" />
HorizontalContentAlignment="Left"
VerticalAlignment="Center">
<HyperlinkButton.Resources>
<SolidColorBrush x:Key="HyperlinkButtonForegroundPointerOver"
Color="{StaticResource Color08Brush}" />
<SolidColorBrush x:Key="HyperlinkButtonForegroundPressed"
Color="{StaticResource Color08Brush}" />
</HyperlinkButton.Resources>
</HyperlinkButton>
</wasm:Grid>
</StackPanel>

Expand Down Expand Up @@ -456,7 +464,7 @@
Foreground="White" />
</StackPanel>



<VisualStateManager.VisualStateGroups>
<VisualStateGroup>
Expand Down

0 comments on commit 1e6f258

Please sign in to comment.