Archived
1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FoxTube/FoxTube/Themes/Resources.xaml
T
Michael Gordeev 26aa8345b7 - In-video advert now doesn't appear on minimized playback
- Fixed small header appearing on channel page
- Fixed home page loading after in long active sessions
2019-05-21 21:04:14 +03:00

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>