From e5f3be96697b186e1fe3c942aad66ae831a249fc Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 23 Aug 2016 20:12:27 -0400 Subject: [PATCH] transparent buttons for lock page --- src/App/Pages/Lock/LockFingerprintPage.cs | 3 ++- src/App/Pages/Lock/LockPasswordPage.cs | 3 ++- src/App/Pages/Lock/LockPinPage.cs | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/App/Pages/Lock/LockFingerprintPage.cs b/src/App/Pages/Lock/LockFingerprintPage.cs index 4be663220..51bcb1154 100644 --- a/src/App/Pages/Lock/LockFingerprintPage.cs +++ b/src/App/Pages/Lock/LockFingerprintPage.cs @@ -53,7 +53,8 @@ namespace Bit.App.Pages Text = AppResources.LogOut, Command = new Command(async () => await LogoutAsync()), VerticalOptions = LayoutOptions.End, - Style = (Style)Application.Current.Resources["btn-primaryAccent"] + Style = (Style)Application.Current.Resources["btn-primaryAccent"], + BackgroundColor = Color.Transparent }; var stackLayout = new StackLayout diff --git a/src/App/Pages/Lock/LockPasswordPage.cs b/src/App/Pages/Lock/LockPasswordPage.cs index 19290d4b1..3bcc74bc2 100644 --- a/src/App/Pages/Lock/LockPasswordPage.cs +++ b/src/App/Pages/Lock/LockPasswordPage.cs @@ -66,7 +66,8 @@ namespace Bit.App.Pages Text = AppResources.LogOut, Command = new Command(async () => await LogoutAsync()), VerticalOptions = LayoutOptions.End, - Style = (Style)Application.Current.Resources["btn-primaryAccent"] + Style = (Style)Application.Current.Resources["btn-primaryAccent"], + BackgroundColor = Color.Transparent }; var stackLayout = new StackLayout diff --git a/src/App/Pages/Lock/LockPinPage.cs b/src/App/Pages/Lock/LockPinPage.cs index f9713303d..14e27e540 100644 --- a/src/App/Pages/Lock/LockPinPage.cs +++ b/src/App/Pages/Lock/LockPinPage.cs @@ -51,7 +51,8 @@ namespace Bit.App.Pages Text = AppResources.LogOut, Command = new Command(async () => await LogoutAsync()), VerticalOptions = LayoutOptions.End, - Style = (Style)Application.Current.Resources["btn-primaryAccent"] + Style = (Style)Application.Current.Resources["btn-primaryAccent"], + BackgroundColor = Color.Transparent }; var stackLayout = new StackLayout