Improve dark-mode code readability and build reliability#157
Merged
PureWeen merged 2 commits intoPureWeen:mainfrom Feb 20, 2026
Merged
Improve dark-mode code readability and build reliability#157PureWeen merged 2 commits intoPureWeen:mainfrom
PureWeen merged 2 commits intoPureWeen:mainfrom
Conversation
…warnings - Add explicit text color (--text-bright) to inline code and pre blocks so they remain legible against dark backgrounds - Add subtle borders to inline code and code blocks for visual separation - Reset color/border on nested pre>code to avoid double-styling - Add MSBuild targets to exclude the intermediate copilot CLI binary from Mac Catalyst publish metadata, suppressing spurious build warnings Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Set CopilotCliDownloadTimeout to 600000 in Directory.Build.props so the SDK DownloadFile task gets a real 10-minute timeout instead of 600ms. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
What changed
1) Chat markdown code styling (
PolyPilot/Components/ChatMessageList.razor.css)var(--text-bright)for stronger contrast on dark surfaces.pre codeinherits fenced block colors and avoids duplicate styling.2) Mac Catalyst publish metadata cleanup (
PolyPilot/PolyPilot.csproj)3) Reliable CLI download timeout (
Directory.Build.props)CopilotCliDownloadTimeout=600000so the SDKDownloadFiletask gets a real 10-minute timeout.Validation
dotnet test --nologoinPolyPilot.Testspassed: 713 passed, 0 failed.