-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove missed icons from the new Admin Menu (#17425)
- Loading branch information
1 parent
a414aa3
commit 2bcea0b
Showing
3 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
15 changes: 13 additions & 2 deletions
15
...hardCore.Modules/OrchardCore.Localization/Views/NavigationItemText-localization.Id.cshtml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
<span class="icon"> | ||
<i class="fa-solid fa-globe" aria-hidden="true"></i> | ||
@using OrchardCore.Navigation | ||
|
||
@if (NavigationHelper.UseLegacyFormat()) | ||
{ | ||
<span class="icon"> | ||
<i class="fa-solid fa-globe" aria-hidden="true"></i> | ||
</span> | ||
<span class="title">@Model.Text</span> | ||
|
||
return; | ||
} | ||
|
||
<span class="icon icon-none"> | ||
</span> | ||
<span class="title">@Model.Text</span> |
1 change: 1 addition & 0 deletions
1
...hardCore.Modules/OrchardCore.ReverseProxy/Views/NavigationItemText-reverseproxy.Id.cshtml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
@using OrchardCore.Navigation | ||
|
||
@if (NavigationHelper.UseLegacyFormat()) | ||
{ | ||
<span class="icon"> | ||
|
13 changes: 11 additions & 2 deletions
13
...dCore.Modules/OrchardCore.Search.AzureAI/Views/NavigationItemText-azureaisearch.Id.cshtml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,13 @@ | ||
<span class="icon"> | ||
<i class="fa-brands fa-microsoft" aria-hidden="true"></i> | ||
@using OrchardCore.Navigation | ||
|
||
@if (NavigationHelper.UseLegacyFormat()) | ||
{ | ||
<span class="icon"> | ||
<i class="fa-brands fa-microsoft" aria-hidden="true"></i> | ||
</span> | ||
<span class="title">@Model.Text</span> | ||
} | ||
|
||
<span class="icon icon-none"> | ||
</span> | ||
<span class="title">@Model.Text</span> |