Skip to content
This repository has been archived by the owner on Dec 9, 2020. It is now read-only.

Commit

Permalink
Merge pull request #3 from litl/develop
Browse files Browse the repository at this point in the history
Fix notification display with light theme
  • Loading branch information
ashtom committed Oct 1, 2012
2 parents 1c603dc + 107d8a1 commit 2b3e5af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions HockeySDK/Themes/Generic.xaml
Expand Up @@ -84,8 +84,8 @@
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:NotificationBox">
<Border Background="#99000000" d:DesignWidth="312" d:DesignHeight="464">
<Border x:Name="border" Background="#FF1F1F1F" VerticalAlignment="Top">
<Border Background="{StaticResource PhoneBackgroundBrush}" d:DesignWidth="312" d:DesignHeight="464">
<Border x:Name="border" Background="{StaticResource PhoneChromeBrush}" VerticalAlignment="Top">
<Grid Margin="24,40,24,0">
<Grid.RowDefinitions>
<RowDefinition Height="60"/>
Expand All @@ -95,7 +95,7 @@
</Grid.RowDefinitions>

<TextBlock Text="{TemplateBinding Title}" VerticalAlignment="Center" Margin="0,0,0,2" FontSize="32" />
<TextBlock Text="{TemplateBinding Message}" TextWrapping="Wrap" Grid.Row="1" Margin="0,2,0,2" FontSize="22" Foreground="#FFDDDDDD" />
<TextBlock Text="{TemplateBinding Message}" TextWrapping="Wrap" Grid.Row="1" Margin="0,2,0,2" FontSize="22" Foreground="{StaticResource PhoneForegroundBrush}" />

<ItemsPresenter Grid.Row="2" Margin="0,2,0,8" />

Expand Down

0 comments on commit 2b3e5af

Please sign in to comment.