bitwarden-android/src/App/Styles/Base.xaml

66 lines
2 KiB
Text
Raw Normal View History

2019-04-22 18:32:17 +03:00
<?xml version="1.0" encoding="utf-8" ?>
<ResourceDictionary xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Bit.App.Styles.Base">
2019-04-23 00:08:37 +03:00
<!-- General -->
<Style TargetType="Label"
ApplyToDerivedTypes="True">
<Setter Property="FontSize"
Value="Medium" />
<Setter Property="TextColor"
Value="{StaticResource TextColor}" />
</Style>
<!-- List -->
2019-04-22 18:32:17 +03:00
<Style TargetType="ListView"
Class="list">
</Style>
<Style TargetType="StackLayout"
Class="list-row-header">
<Setter Property="Padding"
2019-04-23 00:08:37 +03:00
Value="10, 12" />
2019-04-22 18:32:17 +03:00
</Style>
<Style TargetType="Label"
Class="list-header">
</Style>
<Style TargetType="StackLayout"
Class="list-row">
<Setter Property="Padding"
2019-04-23 00:08:37 +03:00
Value="12" />
</Style>
<Style TargetType="Grid"
Class="list-row">
<Setter Property="Padding"
Value="2, 5" />
2019-04-22 18:32:17 +03:00
</Style>
<Style TargetType="Label"
Class="list-title">
2019-04-23 00:08:37 +03:00
</Style>
<Style TargetType="Label"
ApplyToDerivedTypes="True"
Class="list-title-icon">
2019-04-22 18:32:17 +03:00
<Setter Property="FontSize"
2019-04-23 00:08:37 +03:00
Value="Small" />
<Setter Property="TextColor"
Value="{StaticResource MutedColor}" />
2019-04-22 18:32:17 +03:00
</Style>
<Style TargetType="Label"
Class="list-subtitle">
<Setter Property="FontSize"
Value="Small" />
2019-04-23 00:08:37 +03:00
<Setter Property="TextColor"
Value="{StaticResource MutedColor}" />
2019-04-22 18:32:17 +03:00
</Style>
<Style TargetType="Label"
Class="list-icon"
ApplyToDerivedTypes="True">
2019-04-23 00:08:37 +03:00
<Setter Property="Margin"
Value="3, 3, 3, 0" />
2019-04-22 18:32:17 +03:00
<Setter Property="FontSize"
Value="Medium" />
2019-04-23 00:08:37 +03:00
<Setter Property="TextColor"
Value="{StaticResource MutedColor}" />
2019-04-22 18:32:17 +03:00
</Style>
</ResourceDictionary>