Archived
1
0

Updated target version to 17134

Fixed headers
Added ads to VideoGrid

Related Work Items: #162, #188
This commit is contained in:
Michael Gordeev
2019-04-10 14:02:42 +03:00
parent 9f87dd994c
commit 7cbbc59e16
22 changed files with 311 additions and 170 deletions
+46
View File
@@ -0,0 +1,46 @@
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ui="using:Microsoft.UI.Xaml.Controls">
<Color x:Key="SystemAccentColor">Red</Color>
<Style TargetType="Button" BasedOn="{StaticResource ButtonRevealStyle}">
<Setter Property="FontSize" Value="14"/>
</Style>
<Style TargetType="ListViewItem" BasedOn="{StaticResource ListViewItemRevealStyle}"/>
<Style TargetType="TextBlock">
<Setter Property="SelectionHighlightColor" Value="Red"/>
<Setter Property="FontSize" Value="14"/>
</Style>
<Style TargetType="TextBox">
<Setter Property="SelectionHighlightColor" Value="Red"/>
<Setter Property="FontSize" Value="14"/>
</Style>
<Style TargetType="ComboBox">
<Setter Property="Margin" Value="0,5,0,0"/>
<Setter Property="FontSize" Value="14"/>
</Style>
<Style TargetType="ToggleSwitch">
<Setter Property="FontSize" Value="14"/>
</Style>
<Style TargetType="RadioButton">
<Setter Property="FontSize" Value="14"/>
</Style>
<Style TargetType="Run">
<Setter Property="FontSize" Value="{StaticResource Size}"/>
</Style>
<Style TargetType="HyperlinkButton">
<Setter Property="FontSize" Value="14"/>
</Style>
<Style TargetType="AutoSuggestBox">
<Setter Property="FontSize" Value="14"/>
</Style>
<Style TargetType="ui:NavigationViewItem">
<Setter Property="FontSize" Value="14"/>
</Style>
<Style TargetType="ui:NavigationViewItemHeader">
<Setter Property="FontSize" Value="14"/>
</Style>
<Duration x:Key="CardOpacityDuration">0:0:0.5</Duration>
</ResourceDictionary>