From f1ef1a0ce09d56781262a077d0c9442a3ffd101e Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 30 Jun 2016 21:48:56 -0400 Subject: [PATCH] few style updates to extension --- src/iOS.Extension/ActionViewController.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/iOS.Extension/ActionViewController.cs b/src/iOS.Extension/ActionViewController.cs index 79e746480..6df60942c 100644 --- a/src/iOS.Extension/ActionViewController.cs +++ b/src/iOS.Extension/ActionViewController.cs @@ -43,6 +43,8 @@ namespace Bit.iOS.Extension filteredSiteModels = siteModels.Where(s => s.Domain.BaseDomain == domain.BaseDomain); } + tableView.RowHeight = UITableView.AutomaticDimension; + tableView.EstimatedRowHeight = 44; tableView.Source = new TableSource(filteredSiteModels, this); AutomaticallyAdjustsScrollViewInsets = false; } @@ -94,6 +96,7 @@ namespace Bit.iOS.Extension cell.TextLabel.Text = item.Name; cell.DetailTextLabel.Text = item.Username; + cell.DetailTextLabel.TextColor = cell.DetailTextLabel.TintColor = new UIColor(red: 0.47f, green: 0.47f, blue: 0.47f, alpha: 1.0f); return cell; }