reskin: Delegate navigation and search bars styling to theme

This commit is contained in:
manuroe
2019-01-10 16:35:34 +01:00
parent c702350171
commit 3bacf204d5
41 changed files with 112 additions and 76 deletions
@@ -17,6 +17,7 @@
#import "LanguagePickerViewController.h"
#import "AppDelegate.h"
#import "Riot-Swift.h"
@interface LanguagePickerViewController ()
{
@@ -68,11 +69,11 @@
- (void)userInterfaceThemeDidChange
{
[RiotDesignValues applyStyleOnNavigationBar:self.navigationController.navigationBar];
[RiotDesignValues.theme applyStyleOnNavigationBar:self.navigationController.navigationBar];
self.activityIndicator.backgroundColor = kRiotOverlayColor;
[RiotDesignValues applyStyleOnSearchBar:self.searchBar];
[RiotDesignValues.theme applyStyleOnSearchBar:self.searchBar];
// Use the primary bg color for the table view in plain style.
self.tableView.backgroundColor = kRiotPrimaryBgColor;