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

57 lines
1.7 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.Android">
2019-05-01 22:11:54 +03:00
<Style TargetType="Entry"
ApplyToDerivedTypes="True">
<Setter Property="Margin"
Value="-4, 0" />
</Style>
2019-04-26 19:57:52 +03:00
<!-- List -->
2019-04-23 00:08:37 +03:00
<Style TargetType="ListView"
Class="list-platform">
<Setter Property="SeparatorColor"
Value="Transparent" />
</Style>
2019-04-22 18:32:17 +03:00
<Style TargetType="Label"
Class="list-header-platform">
2019-04-22 21:17:33 +03:00
<Setter Property="TextColor"
Value="{StaticResource ListHeaderTextColor}" />
2019-04-23 00:08:37 +03:00
<Setter Property="FontSize"
Value="Small" />
<Setter Property="FontAttributes"
Value="Bold" />
</Style>
<Style TargetType="StackLayout"
Class="list-row-platform">
</Style>
<Style TargetType="Grid"
Class="list-row-platform">
2019-04-22 18:32:17 +03:00
</Style>
2019-04-30 18:27:53 +03:00
<Style TargetType="ImageButton"
Class="list-button-platform">
</Style>
2019-04-26 07:26:09 +03:00
<!-- Box -->
2019-04-26 19:57:52 +03:00
<Style TargetType="Label"
Class="box-header-platform">
<Setter Property="TextColor"
Value="{StaticResource BoxHeaderTextColor}" />
<Setter Property="FontSize"
Value="Small" />
<Setter Property="FontAttributes"
Value="Bold" />
</Style>
2019-04-26 07:26:09 +03:00
<Style TargetType="Button"
ApplyToDerivedTypes="True"
Class="box-row-button-platform">
<Setter Property="WidthRequest"
2019-04-26 23:58:20 +03:00
Value="37" />
2019-04-26 07:26:09 +03:00
<Setter Property="FontSize"
2019-04-26 23:58:20 +03:00
Value="25" />
2019-04-26 07:26:09 +03:00
</Style>
2019-04-22 18:32:17 +03:00
</ResourceDictionary>