Bitwarden-app-android-iphon.../src/App/Styles/Android.xaml

95 lines
2.8 KiB
Plaintext
Raw Normal View History

2019-04-22 17:32:17 +02: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 21:11:54 +02:00
<Style TargetType="Entry"
ApplyToDerivedTypes="True">
<Setter Property="Margin"
2019-05-08 05:22:25 +02:00
Value="-4, 0, -4, -4" />
</Style>
<Style TargetType="Picker"
ApplyToDerivedTypes="True">
<Setter Property="Margin"
Value="-4, 0, -4, -4" />
2019-05-01 21:11:54 +02:00
</Style>
2019-05-08 21:00:45 +02:00
<Style TargetType="Editor"
ApplyToDerivedTypes="True">
<Setter Property="Margin"
Value="-4, 0, -4, -4" />
</Style>
2019-05-02 18:20:56 +02:00
<!-- Buttons -->
<Style TargetType="Button"
ApplyToDerivedTypes="True"
Class="btn-icon-platform">
<Setter Property="WidthRequest"
Value="37" />
<Setter Property="FontSize"
Value="25" />
</Style>
2019-05-07 05:18:13 +02:00
<!-- Title -->
<Style TargetType="Button"
Class="btn-title-platform"
ApplyToDerivedTypes="True">
<Setter Property="WidthRequest"
Value="28" />
<Setter Property="FontSize"
Value="24" />
</Style>
2019-04-26 18:57:52 +02:00
<!-- List -->
2019-05-08 16:42:55 +02:00
2019-04-22 23:08:37 +02:00
<Style TargetType="ListView"
2019-05-08 16:42:55 +02:00
Class="list-platform"
ApplyToDerivedTypes="True">
2019-04-22 23:08:37 +02:00
<Setter Property="SeparatorColor"
Value="Transparent" />
</Style>
2019-04-22 17:32:17 +02:00
<Style TargetType="Label"
Class="list-header-platform">
2019-04-22 20:17:33 +02:00
<Setter Property="TextColor"
Value="{StaticResource ListHeaderTextColor}" />
2019-04-22 23:08:37 +02: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 17:32:17 +02:00
</Style>
2019-05-02 20:53:45 +02:00
<Style TargetType="Button"
ApplyToDerivedTypes="True"
Class="list-row-button-platform">
<Setter Property="WidthRequest"
Value="37" />
<Setter Property="FontSize"
Value="25" />
</Style>
2019-04-26 06:26:09 +02:00
<!-- Box -->
2019-04-26 18:57:52 +02: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 06:26:09 +02:00
<Style TargetType="Button"
ApplyToDerivedTypes="True"
Class="box-row-button-platform">
<Setter Property="WidthRequest"
2019-04-26 22:58:20 +02:00
Value="37" />
2019-04-26 06:26:09 +02:00
<Setter Property="FontSize"
2019-04-26 22:58:20 +02:00
Value="25" />
2019-04-26 06:26:09 +02:00
</Style>
2019-04-22 17:32:17 +02:00
</ResourceDictionary>