diff --git a/WordPress/Classes/ViewRelated/System/Action Sheet/BloggingPromptsHeaderView.swift b/WordPress/Classes/ViewRelated/System/Action Sheet/BloggingPromptsHeaderView.swift index 118df2207f2c..bde9f3cc502e 100644 --- a/WordPress/Classes/ViewRelated/System/Action Sheet/BloggingPromptsHeaderView.swift +++ b/WordPress/Classes/ViewRelated/System/Action Sheet/BloggingPromptsHeaderView.swift @@ -84,6 +84,7 @@ private extension BloggingPromptsHeaderView { shareButton.titleLabel?.adjustsFontSizeToFitWidth = true shareButton.setTitleColor(WPStyleGuide.BloggingPrompts.buttonTitleColor, for: .normal) attributionLabel.adjustsFontForContentSizeCategory = true + backgroundColor = .clear } func configureConstraints() { diff --git a/WordPress/Classes/ViewRelated/System/Floating Create Button/CreateButtonCoordinator.swift b/WordPress/Classes/ViewRelated/System/Floating Create Button/CreateButtonCoordinator.swift index 6f721662d95b..7283348e2c9b 100644 --- a/WordPress/Classes/ViewRelated/System/Floating Create Button/CreateButtonCoordinator.swift +++ b/WordPress/Classes/ViewRelated/System/Floating Create Button/CreateButtonCoordinator.swift @@ -17,16 +17,14 @@ final class CreateButtonCoordinator: NSObject { var button: UIButton = { let button: UIButton if #available(iOS 26, *) { - var configuration = UIButton.Configuration.prominentClearGlass() + var configuration = UIButton.Configuration.prominentGlass() configuration.image = UIImage(systemName: "plus") configuration.contentInsets = .init(top: 12, leading: 12, bottom: 12, trailing: 12) configuration.preferredSymbolConfigurationForImage = UIImage.SymbolConfiguration( font: .systemFont(ofSize: 20, weight: .semibold) ) - configuration.baseForegroundColor = .systemBackground - configuration.baseBackgroundColor = .label.withAlphaComponent(0.8) - button = UIButton(configuration: configuration, primaryAction: nil) + button.tintColor = .label.withAlphaComponent(0.9) } else { button = FloatingActionButton(image: .gridicon(.plus)) }