marinofaggiana 5 years ago
parent
commit
bac8f7335e
1 changed files with 3 additions and 2 deletions
  1. 3 2
      iOSClient/Main/Create cloud/NCCreateFormUploadRichdocuments.swift

+ 3 - 2
iOSClient/Main/Create cloud/NCCreateFormUploadRichdocuments.swift

@@ -180,15 +180,16 @@ class NCCreateFormUploadRichdocuments: XLFormViewController, NCSelectDelegate, U
         // name
         let name = cell.viewWithTag(200) as! UILabel
         name.text = template.name
-        name.textColor = NCBrandColor.sharedInstance.textView
+        name.textColor = NCBrandColor.sharedInstance.backgroundView
         
         // select
         let imageSelect = cell.viewWithTag(300) as! UIImageView
         if selectTemplate != nil && selectTemplate?.name == template.name {
+            cell.backgroundColor = NCBrandColor.sharedInstance.textView
             imageSelect.image = UIImage(named: "plus100")
             imageSelect.isHidden = false
         } else {
-            cell.backgroundColor = UIColor.black
+            cell.backgroundColor = NCBrandColor.sharedInstance.backgroundView
             imageSelect.isHidden = true
         }