[iphonex] [ios] Unified place page buttons corners radius.

This commit is contained in:
Ilya Grechuhin 2018-01-10 16:37:25 +03:00 committed by Roman Kuznetsov
parent c1228ab874
commit e5a851276e
2 changed files with 2 additions and 2 deletions
iphone/Maps/UI/PlacePage/PlacePageLayout/Content

View file

@ -102,7 +102,7 @@
[titleButton setBorderHighlightedColor:[UIColor linkBlueHighlighted]];
btnLayer.borderWidth = 1;
btnLayer.borderColor = [UIColor linkBlue].CGColor;
btnLayer.cornerRadius = 4;
btnLayer.cornerRadius = 8;
self.isSeparatorHidden = YES;
}

View file

@ -11,7 +11,7 @@ final class PlacePageTaxiCell: MWMTableViewCell {
@IBOutlet private weak var orderButton: UIButton! {
didSet {
let l = orderButton.layer
l.cornerRadius = 6
l.cornerRadius = 8
l.borderColor = UIColor.linkBlue().cgColor
l.borderWidth = 1
orderButton.setTitle(L("taxi_order"), for: .normal)