Skip to content

Commit 20a7915

Browse files
committed
Packages: make the package detail panel opaque
1 parent 137d356 commit 20a7915

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

src/BasisPM.App/Views/PackagesView.axaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,11 @@
236236
</ScrollViewer>
237237

238238
<!-- Package detail overlay — opened by clicking a package row, closed by ✕ or the backdrop. -->
239-
<Border IsVisible="{Binding ShowDetail}" Background="#B4000000" Tapped="OnBackdropTapped">
240-
<Border Classes="card" MaxWidth="620" MaxHeight="740" Margin="40"
239+
<Border IsVisible="{Binding ShowDetail}" Background="#E6000000" Tapped="OnBackdropTapped">
240+
<!-- Opaque surface (overriding the translucent card glass) so the detail text stays readable
241+
over the animated background; the card glass is fine on the static list but not here. -->
242+
<Border Classes="card" Background="{StaticResource BasisSurfaceBrush}"
243+
MaxWidth="620" MaxHeight="740" Margin="40"
241244
HorizontalAlignment="Center" VerticalAlignment="Center">
242245
<ScrollViewer DataContext="{Binding SelectedPackage}">
243246
<StackPanel Spacing="16" x:DataType="vm:PackageRow">

0 commit comments

Comments
 (0)