From b9a29212da227b2d433bfb85dc7299bd957dab99 Mon Sep 17 00:00:00 2001 From: Alex Grebenyuk Date: Fri, 19 Sep 2025 09:50:51 -0400 Subject: [PATCH 1/2] Fix backgorund color in chart cutomization --- .../Sources/JetpackStats/Views/Customization/AddCardSheet.swift | 1 - .../Views/Customization/ChartCardCustomizationView.swift | 1 + .../Views/Customization/TopListCardCustomizationView.swift | 2 ++ 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Modules/Sources/JetpackStats/Views/Customization/AddCardSheet.swift b/Modules/Sources/JetpackStats/Views/Customization/AddCardSheet.swift index aaf65167deff..0505eb1525f8 100644 --- a/Modules/Sources/JetpackStats/Views/Customization/AddCardSheet.swift +++ b/Modules/Sources/JetpackStats/Views/Customization/AddCardSheet.swift @@ -69,7 +69,6 @@ struct AddCardSheet: View { } .padding(.horizontal, Constants.step1) .padding(.vertical, Constants.step0_5) - .background(Color(UIColor.secondarySystemGroupedBackground)) .clipShape(RoundedRectangle(cornerRadius: 10)) } } diff --git a/Modules/Sources/JetpackStats/Views/Customization/ChartCardCustomizationView.swift b/Modules/Sources/JetpackStats/Views/Customization/ChartCardCustomizationView.swift index 6314f047ec28..fad788c3ed83 100644 --- a/Modules/Sources/JetpackStats/Views/Customization/ChartCardCustomizationView.swift +++ b/Modules/Sources/JetpackStats/Views/Customization/ChartCardCustomizationView.swift @@ -104,6 +104,7 @@ struct ChartCardCustomizationView: View { .contentShape(Rectangle()) } .buttonStyle(.plain) + .listRowBackground(Color.clear) } private func resetToDefaults() { diff --git a/Modules/Sources/JetpackStats/Views/Customization/TopListCardCustomizationView.swift b/Modules/Sources/JetpackStats/Views/Customization/TopListCardCustomizationView.swift index 576d3b4f212f..e718c30d9aa0 100644 --- a/Modules/Sources/JetpackStats/Views/Customization/TopListCardCustomizationView.swift +++ b/Modules/Sources/JetpackStats/Views/Customization/TopListCardCustomizationView.swift @@ -1,4 +1,5 @@ import SwiftUI +import WordPressUI struct TopListCardCustomizationView: View { let viewModel: TopListViewModel @@ -82,6 +83,7 @@ struct TopListCardCustomizationView: View { .contentShape(Rectangle()) } .buttonStyle(.plain) + .listRowBackground(Color.clear) } private func updateConfiguration(with item: TopListItemType) { From 33f8baa6ea765f79dc1a677ca3eccf19f7d0baf2 Mon Sep 17 00:00:00 2001 From: Alex Grebenyuk Date: Fri, 19 Sep 2025 09:54:34 -0400 Subject: [PATCH 2/2] Update release notes --- RELEASE-NOTES.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index aaec9a1a4cb4..01b1cd72ecaa 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -1,5 +1,6 @@ 26.4 ----- +* [*] Fix a few minor visual issues on iOS 26 [#24863], [#24863], [#24865], [#24866], [#24867] 26.3.1 ------