From 765f6feb12c883c551e4a27aed70f920ea443e00 Mon Sep 17 00:00:00 2001 From: Kiryl Kaveryn Date: Tue, 27 Feb 2024 12:51:13 +0400 Subject: [PATCH] [ios] fix: "place does not exist" alert text color Signed-off-by: Kiryl Kaveryn --- .../CreateBookmarkCategory/MWMBCCreateCategoryAlert.xib | 2 +- .../Maps/Classes/CustomAlert/MWMPlaceDoesntExistAlert.xib | 5 ++--- iphone/Maps/Core/Theme/GlobalStyleSheet.swift | 8 +++++++- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/iphone/Maps/Classes/CustomAlert/CreateBookmarkCategory/MWMBCCreateCategoryAlert.xib b/iphone/Maps/Classes/CustomAlert/CreateBookmarkCategory/MWMBCCreateCategoryAlert.xib index 046bc04863..f42bff7129 100644 --- a/iphone/Maps/Classes/CustomAlert/CreateBookmarkCategory/MWMBCCreateCategoryAlert.xib +++ b/iphone/Maps/Classes/CustomAlert/CreateBookmarkCategory/MWMBCCreateCategoryAlert.xib @@ -62,7 +62,7 @@ - + diff --git a/iphone/Maps/Classes/CustomAlert/MWMPlaceDoesntExistAlert.xib b/iphone/Maps/Classes/CustomAlert/MWMPlaceDoesntExistAlert.xib index 386329dee0..5659ac7e51 100644 --- a/iphone/Maps/Classes/CustomAlert/MWMPlaceDoesntExistAlert.xib +++ b/iphone/Maps/Classes/CustomAlert/MWMPlaceDoesntExistAlert.xib @@ -58,9 +58,8 @@ - + - @@ -73,7 +72,7 @@ - + diff --git a/iphone/Maps/Core/Theme/GlobalStyleSheet.swift b/iphone/Maps/Core/Theme/GlobalStyleSheet.swift index 2cba499355..499c617c20 100644 --- a/iphone/Maps/Core/Theme/GlobalStyleSheet.swift +++ b/iphone/Maps/Core/Theme/GlobalStyleSheet.swift @@ -183,12 +183,18 @@ class GlobalStyleSheet: IStyleSheet { s.clip = true } - theme.add(styleName: "AlertViewTextField") { (s) -> (Void) in + theme.add(styleName: "AlertViewTextFieldContainer") { (s) -> (Void) in s.borderColor = colors.blackDividers s.borderWidth = 0.5 s.backgroundColor = colors.white } + theme.add(styleName: "AlertViewTextField") { (s) -> Void in + s.font = fonts.regular14 + s.fontColor = colors.blackPrimaryText + s.tintColor = colors.blackSecondaryText + } + theme.add(styleName: "SearchStatusBarView") { (s) -> (Void) in s.backgroundColor = colors.primary s.shadowRadius = 2