From 69100d7db5fff42655071b1bff45178c07dd7384 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 2 Jul 2019 19:36:11 -0400 Subject: [PATCH] search bar bg is same as list header --- src/iOS.Autofill/LoginSearchViewController.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/iOS.Autofill/LoginSearchViewController.cs b/src/iOS.Autofill/LoginSearchViewController.cs index 991306706..1a297bd65 100644 --- a/src/iOS.Autofill/LoginSearchViewController.cs +++ b/src/iOS.Autofill/LoginSearchViewController.cs @@ -26,10 +26,7 @@ namespace Bit.iOS.Autofill NavItem.Title = AppResources.SearchVault; CancelBarButton.Title = AppResources.Cancel; SearchBar.Placeholder = AppResources.Search; - if(!ThemeHelpers.LightTheme) - { - SearchBar.BackgroundColor = SearchBar.BarTintColor = ThemeHelpers.BackgroundColor; - } + SearchBar.BackgroundColor = SearchBar.BarTintColor = ThemeHelpers.ListHeaderBackgroundColor; TableView.RowHeight = UITableView.AutomaticDimension; TableView.EstimatedRowHeight = 44;