1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-27 03:52:57 +02:00

background color updates

This commit is contained in:
Kyle Spearrin 2016-06-30 19:08:09 -04:00
parent 17af08b7d4
commit acfe0032ef
3 changed files with 6125 additions and 87 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@
namespace Bit.App.Controls
{
public class LabeledDetailCell : ViewCell
public class LabeledDetailCell : ExtendedViewCell
{
public LabeledDetailCell()
{

View File

@ -210,6 +210,9 @@ namespace Bit.App.Pages
Button.Image = "more";
Button.Command = new Command(() => ShowMore());
Button.BackgroundColor = Color.Transparent;
BackgroundColor = Color.White;
}
public VaultListPageModel.Site SiteParameter
@ -231,7 +234,7 @@ namespace Bit.App.Pages
}
}
private class VaultListHeaderViewCell : ViewCell
private class VaultListHeaderViewCell : ExtendedViewCell
{
public VaultListHeaderViewCell(VaultListSitesPage page)
{
@ -255,12 +258,12 @@ namespace Bit.App.Pages
Orientation = StackOrientation.Horizontal,
VerticalOptions = LayoutOptions.FillAndExpand,
Children = { image, label },
BackgroundColor = Color.FromHex("efeff4"),
Padding = new Thickness(16, 0, 0, 0)
};
View = stackLayout;
Height = 40;
BackgroundColor = Color.FromHex("efeff4");
}
}
}