Skip to content

Commit

Permalink
nopSolutions#3385 Added missing styles
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiMaz committed Apr 29, 2019
1 parent 561baaa commit 40ab9c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
@if (!string.IsNullOrEmpty(url))
{
<li @(isActive ? Html.Raw("class=\"active current-active-item\"") : null)>
<a href="@url"@(Model.OpenUrlInNewTab ? Html.Raw(" target=\"_blank\"") : null)>
<a href="@url" class="menu-item-link" @(Model.OpenUrlInNewTab ? Html.Raw(" target=\"_blank\"") : null)>
@if (!string.IsNullOrEmpty(Model.IconClass))
{
<text>
<i class="fa @Url.Content(Model.IconClass)"></i>
</text>
}
<span>@Model.Title</span>
<span class="menu-item-title">@Model.Title</span>
</a>
</li>
}
Expand Down

0 comments on commit 40ab9c7

Please sign in to comment.