|
@@ -773,28 +773,28 @@ class NCSelectCommandView: UIView {
|
|
|
|
|
|
overwriteLabel?.text = NSLocalizedString("_overwrite_", comment: "")
|
|
overwriteLabel?.text = NSLocalizedString("_overwrite_", comment: "")
|
|
|
|
|
|
|
|
+ selectButton?.backgroundColor = NCBrandColor.shared.systemGray4
|
|
selectButton?.layer.cornerRadius = 15
|
|
selectButton?.layer.cornerRadius = 15
|
|
selectButton?.layer.masksToBounds = true
|
|
selectButton?.layer.masksToBounds = true
|
|
- selectButton?.layer.backgroundColor = NCBrandColor.shared.systemGray4.cgColor
|
|
|
|
selectButton?.setTitleColor(NCBrandColor.shared.label, for: .normal)
|
|
selectButton?.setTitleColor(NCBrandColor.shared.label, for: .normal)
|
|
selectButton?.setTitle(NSLocalizedString("_select_", comment: ""), for: .normal)
|
|
selectButton?.setTitle(NSLocalizedString("_select_", comment: ""), for: .normal)
|
|
|
|
|
|
|
|
+ createFolderButton?.backgroundColor = NCBrandColor.shared.systemGray4
|
|
createFolderButton?.layer.cornerRadius = 15
|
|
createFolderButton?.layer.cornerRadius = 15
|
|
createFolderButton?.layer.masksToBounds = true
|
|
createFolderButton?.layer.masksToBounds = true
|
|
- createFolderButton?.layer.backgroundColor = NCBrandColor.shared.systemGray4.cgColor
|
|
|
|
- createFolderButton?.setTitleColor(.black, for: .normal)
|
|
|
|
|
|
+ createFolderButton?.setTitleColor(NCBrandColor.shared.label, for: .normal)
|
|
createFolderButton?.setTitle(NSLocalizedString("_create_folder_", comment: ""), for: .normal)
|
|
createFolderButton?.setTitle(NSLocalizedString("_create_folder_", comment: ""), for: .normal)
|
|
|
|
|
|
|
|
+ copyButton?.backgroundColor = NCBrandColor.shared.systemGray4
|
|
copyButton?.layer.cornerRadius = 15
|
|
copyButton?.layer.cornerRadius = 15
|
|
copyButton?.layer.masksToBounds = true
|
|
copyButton?.layer.masksToBounds = true
|
|
- copyButton?.layer.backgroundColor = NCBrandColor.shared.systemGray4.cgColor
|
|
|
|
- copyButton?.setTitleColor(.black, for: .normal)
|
|
|
|
|
|
+ copyButton?.setTitleColor(NCBrandColor.shared.label, for: .normal)
|
|
copyButton?.setTitle(NSLocalizedString("_copy_", comment: ""), for: .normal)
|
|
copyButton?.setTitle(NSLocalizedString("_copy_", comment: ""), for: .normal)
|
|
|
|
|
|
|
|
+ moveButton?.backgroundColor = NCBrandColor.shared.systemGray4
|
|
moveButton?.layer.cornerRadius = 15
|
|
moveButton?.layer.cornerRadius = 15
|
|
moveButton?.layer.masksToBounds = true
|
|
moveButton?.layer.masksToBounds = true
|
|
- moveButton?.layer.backgroundColor = NCBrandColor.shared.systemGray4.cgColor
|
|
|
|
- moveButton?.setTitleColor(.black, for: .normal)
|
|
|
|
|
|
+ moveButton?.setTitleColor(NCBrandColor.shared.label, for: .normal)
|
|
moveButton?.setTitle(NSLocalizedString("_move_", comment: ""), for: .normal)
|
|
moveButton?.setTitle(NSLocalizedString("_move_", comment: ""), for: .normal)
|
|
}
|
|
}
|
|
|
|
|