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 namespace Bit.App.Controls
{ {
public class LabeledDetailCell : ViewCell public class LabeledDetailCell : ExtendedViewCell
{ {
public LabeledDetailCell() public LabeledDetailCell()
{ {

View file

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