diff --git a/Sources/Brave/Frontend/Browser/Toolbars/UrlBar/CollapsedURLBarView.swift b/Sources/Brave/Frontend/Browser/Toolbars/UrlBar/CollapsedURLBarView.swift index da26110c5434..8042344f1428 100644 --- a/Sources/Brave/Frontend/Browser/Toolbars/UrlBar/CollapsedURLBarView.swift +++ b/Sources/Brave/Frontend/Browser/Toolbars/UrlBar/CollapsedURLBarView.swift @@ -17,7 +17,10 @@ class CollapsedURLBarView: UIView { $0.alignment = .firstBaseline } - private let secureContentStateView = UIButton() + private let secureContentStateView = UIButton().then { + $0.tintAdjustmentMode = .normal + } + private let separatorLine = UILabel().then { $0.isUserInteractionEnabled = false $0.isAccessibilityElement = false diff --git a/Sources/Brave/Frontend/Browser/Toolbars/UrlBar/TabLocationView.swift b/Sources/Brave/Frontend/Browser/Toolbars/UrlBar/TabLocationView.swift index 49a3869737c6..107778c6dfdd 100644 --- a/Sources/Brave/Frontend/Browser/Toolbars/UrlBar/TabLocationView.swift +++ b/Sources/Brave/Frontend/Browser/Toolbars/UrlBar/TabLocationView.swift @@ -119,6 +119,7 @@ class TabLocationView: UIView { button.configurationUpdateHandler = { [unowned self] btn in btn.configuration = secureContentStateButtonConfiguration } + button.tintAdjustmentMode = .normal secureContentStateButton = button leadingView = button }