From 42dbc827886c1e8ba6c9677200c5229f3180e0d3 Mon Sep 17 00:00:00 2001 From: David Sinclair Date: Wed, 2 Mar 2016 14:44:00 -0800 Subject: [PATCH] iOS: fixed share view theming --- clients/ios/Classes/ShareViewController.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clients/ios/Classes/ShareViewController.m b/clients/ios/Classes/ShareViewController.m index 3435afabb..b1df300f2 100644 --- a/clients/ios/Classes/ShareViewController.m +++ b/clients/ios/Classes/ShareViewController.m @@ -137,6 +137,9 @@ self.view.backgroundColor = UIColorFromRGB(NEWSBLUR_WHITE_COLOR); self.commentField.layer.borderColor = [UIColorFromRGB(0x808080) CGColor]; + self.commentField.backgroundColor = UIColorFromRGB(0xDCDFD6); + self.commentField.textColor = UIColorFromRGB(NEWSBLUR_BLACK_COLOR); + self.commentField.tintColor = UIColorFromRGB(NEWSBLUR_BLACK_COLOR); self.storyTitle.textColor = UIColorFromRGB(0x404040); self.storyTitle.shadowColor = UIColorFromRGB(0xF0F0F0);