feat(ui): replace fontawesome with hosted material symbols#2
Merged
thatplatypus merged 2 commits intomainfrom Jul 5, 2025
Merged
feat(ui): replace fontawesome with hosted material symbols#2thatplatypus merged 2 commits intomainfrom
thatplatypus merged 2 commits intomainfrom
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR replaces usage of FontAwesome icons with hosted Material Symbols across the UI.
- Swaps out the external FontAwesome stylesheet for the Material Symbols CSS in the main HTML.
- Refactors
IrisIconshelpers and related icon type mappings to emit Material Symbols names. - Disables legacy active-state icon replacement in
IrisNavLinkand removes an unused test project reference.
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| Iris.Desktop/wwwroot/index.html | Replaced FontAwesome CSS link with hosted Material Symbols CSS |
| Iris.Desktop/azure-pipeline.yml | Deleted Azure pipeline configuration |
| Iris.Components/Theme/IrisIcons.cs | Updated icon helper methods to use Material Symbols naming |
| Iris.Components/Theme/IrisIcons.Types.cs | Updated type-specific icons to Material Symbols |
| Iris.Components/Navigation/IrisNavLink.razor | Commented out active-state icon logic pending Material Symbols fix |
| Iris.Components.Test/Iris.Components.Test.csproj | Removed Iris.Cloud.Client project reference from the test project |
Comments suppressed due to low confidence (2)
Iris.Components.Test/Iris.Components.Test.csproj:27
- Removing the
Iris.Cloud.Clientproject reference may lead to test failures if any tests rely on those types; confirm tests no longer need this reference or update them accordingly.
<ItemGroup>
Comment on lines
+43
to
+44
| //ToDo fix for material symbols | ||
| return Icon; //isActive ? Icon.Replace("rounded", "filled") : Icon; |
There was a problem hiding this comment.
Commented-out logic prevents the active-state icon from being applied. Either implement the Material Symbols replacement logic or remove the TODO and cleanup this method to avoid confusion.
Suggested change
| //ToDo fix for material symbols | |
| return Icon; //isActive ? Icon.Replace("rounded", "filled") : Icon; | |
| return isActive ? Icon.Replace("rounded", "filled") : Icon; |
thatplatypus
added a commit
that referenced
this pull request
Mar 1, 2026
feat(ui): replace fontawesome with hosted material symbols
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.
Not perfect yet but this makes significant progress as is