mirror of
https://github.com/bitwarden/android.git
synced 2024-12-20 00:02:58 +03:00
background color updates
This commit is contained in:
parent
17af08b7d4
commit
acfe0032ef
3 changed files with 6125 additions and 87 deletions
6203
src/Android/Resources/Resource.Designer.cs
generated
6203
src/Android/Resources/Resource.Designer.cs
generated
File diff suppressed because it is too large
Load diff
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
namespace Bit.App.Controls
|
namespace Bit.App.Controls
|
||||||
{
|
{
|
||||||
public class LabeledDetailCell : ViewCell
|
public class LabeledDetailCell : ExtendedViewCell
|
||||||
{
|
{
|
||||||
public LabeledDetailCell()
|
public LabeledDetailCell()
|
||||||
{
|
{
|
||||||
|
|
|
@ -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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue