Browse Source

fix color

marinofaggiana 5 years ago
parent
commit
cc66e94040
2 changed files with 2 additions and 2 deletions
  1. 1 1
      Share/NCSelectDestination.m
  2. 1 1
      Share/ShareViewController.m

+ 1 - 1
Share/NCSelectDestination.m

@@ -106,7 +106,7 @@
     self.navigationController.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText;
     
     self.navigationController.toolbar.barTintColor = NCBrandColor.sharedInstance.tabBar;
-    self.navigationController.toolbar.tintColor = NCBrandColor.sharedInstance.brandElement;
+    self.navigationController.toolbar.tintColor = [UIColor grayColor];
     
     if (self.hideCreateFolder) {
         [self.create setEnabled:NO];

+ 1 - 1
Share/ShareViewController.m

@@ -183,7 +183,7 @@
     self.navigationController.navigationBar.tintColor = NCBrandColor.sharedInstance.brandText;
     
     self.toolBar.barTintColor = NCBrandColor.sharedInstance.tabBar;
-    self.toolBar.tintColor = NCBrandColor.sharedInstance.brandElement;
+    self.toolBar.tintColor = [UIColor grayColor];
     
     // Upload
     rightButtonUpload = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"_save_", nil) style:UIBarButtonItemStylePlain target:self action:@selector(selectPost)];