26aa8345b7
- Fixed small header appearing on channel page - Fixed home page loading after in long active sessions
47 lines
1.7 KiB
XML
47 lines
1.7 KiB
XML
<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.3</Duration>
|
|
|
|
</ResourceDictionary>
|