Skip to content

Commit

Permalink
UI polish
Browse files Browse the repository at this point in the history
  • Loading branch information
EdiWang committed Sep 29, 2023
1 parent 3ee0bb0 commit cf4d6b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/Moonglade.Web/Pages/Components/Menu/Default.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<a class="dropdown-item"
href="@Helper.SterilizeLink(subMenu.Url)"
target="@(subMenu.IsOpenInNewTab ? "_blank" : null)">
<span class="bi-link-45deg"></span>
@subMenu.Title
</a>
</li>
Expand Down
2 changes: 2 additions & 0 deletions src/Moonglade.Web/Pages/Post.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,8 @@
<div class="col-3">
<button id="btn-submit-comment" type="submit" class="btn btn-accent float-end">
<span id="loadingIndicator" class="spinner-border spinner-border-sm" role="status" aria-hidden="true" style="display: none;"></span>

<span class="bi-send"></span>
@SharedLocalizer["Submit"]
</button>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/Moonglade.Web/Pages/_PostActions.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<a class="btn btn-sm btn-outline-secondary mb-1"
asp-page="/CategoryList"
asp-route-routeName="@item.RouteName.ToLower()">
<i class="bi-folder-fill" aria-hidden="true"></i>
<i class="bi-folder2" aria-hidden="true"></i>
@item.DisplayName
</a>
</li>
Expand All @@ -32,7 +32,7 @@
<li>
<a asp-page="/TagList"
asp-route-normalizedName="@item.NormalizedName" class="btn btn-sm btn-outline-secondary mb-1">
<i class="bi-tag-fill" aria-hidden="true"></i>
<i class="bi-tag" aria-hidden="true"></i>
@item.DisplayName
</a>
</li>
Expand Down Expand Up @@ -61,7 +61,7 @@
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@SharedLocalizer["Close"]</button>
<button type="button" class="btn btn-outline-accent" data-bs-dismiss="modal">@SharedLocalizer["Close"]</button>
</div>
</div>
</div>
Expand Down

0 comments on commit cf4d6b3

Please sign in to comment.